]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/mathlib/gen/f/eisch2.F
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / mathlib / gen / f / eisch2.F
CommitLineData
fe4da5cc 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)
11C ALL EIGENVALUES OF A COMPLEX HERMITIAN MATRIX
12C
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