I looked at an example for solving a system of linear equations using GSL and it contained this line:
gsl_matrix_view m = gsl_matrix_view_array (a_data, 4, 4);
I looked in the GSL source code and found the declaration for gsl_matrix_view_array
inside the file gsl_matrix_double.h
. However I couldn't find the definition anywhere.
Where could the definition of gsl_matrix_view_array
be?
I found out from elsewhere that gsl_matrix_view_array
is defined in gsl/matrix/view_source.c
using macros.