Hi to everybody.
I'm fighting with the second fortran program of my life... so i think my problem should be really elementary...
I'm using the subrutine ssterf tring to evalutate the eigenvalue of a real tridiagonal matrix.
I would use it in my code like:
EXTERNAL :: sscanf
(...)
CALL sscanf(N, D, E, Info)
but how could I compile linking the lapack library?
Well I know, my ways is wrong:
g95 -o eigenX Evalutate_EigenX.F90
I could use ifort on a cluster machine too, but the result'll be the same.
"/sw/lib/odcctools590/bin/ld: Undefined symbols:
_ssterf_"
Thanx a lot for all of you...

