Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

getting Eigenvalue using IMSL

glory
Beginner
282 Views
I am trying to get Eigenvalues using IMSL libraries. Actually it is new to me, so I try to follow the instructions on "IMSL library user's guide". They gives simple ways which use only two lines as below use lin_geig_gen_int ! Compute the generalized eigenvalues. call lin_geig_gen(A, B, alpha, beta) I also used exactly same lines, but there was an error message. "There is no matching specific subroutine for this generic subroutine call. [LIN_GEIG_GEN]" What am I wrong with? then... What am I supposed to do? Please Help me!! Thx.
0 Kudos
1 Reply
Steven_L_Intel1
Employee
282 Views

This means that the data types of the arguments you specified do not match what the routine is expecting.

0 Kudos
Reply