On 04/20/2012 12:03 PM, Guardincerri, Elena wrote:
my m matrix is defined as:
double  ma[]= {1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0};
gsl_matrix_complex_view m = gsl_matrix_complex_view_array(ma, 3, 3);
Looks like a buffer overflow problem. Complex matrices have the form:

[ r, i, r, i, r, i ...]

so your matrix array is a factor 2 too small

Reply via email to