]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/mathlib/gen/f/eisst2.F
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / MINICERN / mathlib / gen / f / eisst2.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1996/04/01 15:02:40 mclareni
6* Mathlib gen
7*
8*
9#include "gen/pilot.h"
10 SUBROUTINE EISST2(NM,N,AR,WR,IERR,WORK)
11C ALL EIGENVALUES OF A REAL SYMMETRIC TRIDIAGONAL MATRIX
12C
13 DIMENSION AR(NM,2),WR(N),WORK(N)
14 DO 100 I=1,N
15 WR(I)=AR(I,2)
16 100 WORK(I)=AR(I,1)
17 CALL IMTQL1(N,WR,WORK,IERR)
18 RETURN
19 END