#include "header.h" gsl_vector_float CreateVector(int VectorLength) { gsl_vector_float x; x=*gsl_vector_float_alloc(VectorLength); // x is a m by 1 vector gsl_vector_float_set_zero(&x); // initialize x as a zero vector return x; }