9 integer,
intent(in) :: n
10 complex(8),
intent(inout) :: au(n,n),bv(n,n)
11 real(8),
intent(out) :: w(n)
15 real(8),
allocatable :: w2(:)
16 complex(8),
allocatable :: h(:,:)
19 allocate(w2(n2),h(n2,n2))
38 call zcopy(n,h(1,j),1,au(1,i),1)
39 call zcopy(n,h(n+1,j),1,bv(1,i),1)
subroutine eveqnzh(n, ld, a, w)
subroutine eveqnuv(n, au, bv, w)