#include "header.h" gsl_vector_float CreateVector(int VectorLength) { gsl_vector_float x; //declares the temporary matrix x x=*gsl_vector_float_alloc(VectorLength); // allocates memory for the vector gsl_vector_float_set_zero(&x); // initialize the vector to all 0's return x; }