]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MINICERN/mathlib/gen/f/eisch2.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / mathlib / gen / f / eisch2.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 EISCH2(NM,N,AR,AI,WR,IERR,WORK)
11 C     ALL EIGENVALUES OF A COMPLEX HERMITIAN MATRIX
12 C
13       DIMENSION AR(NM,NM),AI(NM,NM),WR(N),WORK(1)
14       CALL HTRIDI(NM,N,AR,AI,WR,WORK,WORK,WORK(N+1))
15       CALL TQL1(N,WR,WORK,IERR)
16       RETURN
17       END