bug-gsl
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-gsl] error in looking up gsl_eigen_nonsymmv_alloc


From: dbanerjee
Subject: [Bug-gsl] error in looking up gsl_eigen_nonsymmv_alloc
Date: Sun, 13 Nov 2011 21:28:18 +0100 (CET)
User-agent: SquirrelMail/1.4.4

Hi,

I write this program:


#include<stdio.h>
#include<gsl/gsl_math.h>
#include<gsl/gsl_eigen.h>

int main()
{
  double data[]= {-0.500000,0.866025,
                -0.866025,-0.500000};
  int i;
  gsl_matrix_view m = gsl_matrix_view_array(data,2,2);
  gsl_vector_complex *eval=gsl_vector_complex_alloc(2);
  gsl_matrix_complex *evec=gsl_matrix_complex_alloc(2,2);

  gsl_eigen_nonsymmv_workspace * w = gsl_eigen_nonsymmv_alloc (2);
  gsl_eigen_nonsymmv(&m.matrix, eval, evec, w);

  gsl_eigen_nonsymmv_free(w);

  for(i=0;i<2;i++){
   gsl_complex eval_i = gsl_vector_complex_get(eval,i);
   printf("eigenvalue = % 5f + I % 5f \n",GSL_REAL(eval_i),GSL_IMAG(eval_i));

  }

  gsl_vector_complex_free(eval);
  gsl_matrix_complex_free(evec);

  return 0;
}

It complies okay. When I run it I get the error:
./cplxdiag: symbol lookup error: ./cplxdiag: undefined symbol:
gsl_eigen_nonsymmv_alloc

I am using the version 1.15. This error is not there in an earlier version
which I use in my laptop. There it gives me the correct result:

eigenvalue = -0.500000 + I  0.866025
eigenvalue = -0.500000 + I -0.866025

It would be very nice if this can be fixed as soon as possible.

with best regards,
Debasish Banerjee

Post-Doctoral Fellow
Albert Einstein Centre for Fundamental Physcics,
Institute of Theoretical Physics,
University of Bern.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]