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