zeigvals Function

function zeigvals(A) result(lam)

Arguments

Type IntentOptional Attributes Name
complex(kind=8), intent(in) :: A(:,:)

Return Value complex(kind=8), (size(A,1))


Calls

proc~~zeigvals~2~~CallsGraph proc~zeigvals~2 zeigvals assert_shape assert_shape proc~zeigvals~2->assert_shape zgeev zgeev proc~zeigvals~2->zgeev

Source Code

function zeigvals(A) result(lam)
  complex(8), intent(in)  :: A(:, :)  ! matrix to solve eigenproblem for
  complex(8)              :: lam(size(A,1))  ! eigenvalues: A c = lam c
  integer                 :: info, lda, ldvl, ldvr, lwork, n, lrwork
  real(8), allocatable    :: rwork(:)
  complex(8), allocatable :: At(:,:), vl(:,:), vr(:,:), work(:)
  complex(8)              :: lwork_guess(1)
  lda   = size(A(:,1))
  n     = size(A(1,:))
  call assert_shape(A,[n,n],"solve","A")
  ldvl  = n
  ldvr  = n
  lrwork= 2*n
  allocate(At(n,n),vl(ldvl,n),vr(ldvr,n),rwork(lrwork))
  !Copy the input Matrix
  At  = A
  !1st Call: Query the right size for the working array.
  call zgeev('N', 'N', n, At, lda, lam, vl, ldvl, vr, ldvr, lwork_guess, -1, rwork, info)
  if(info /= 0) then
     print*, "zgeev returned info = ",info
     if (info < 0) then
        print*, "the",-info,"-th argument had an illegal value"
     else
        print*, "the QR algorithm failed to compute all the"
        print*, "eigenvalues, and no eigenvectors have been computed;"
        print*, "elements ", info+1, ":", n, "of WR and WI contain eigenvalues which"
        print*, "have converged."
     end if
     stop 'deig error: 1st call zgeev'
  endif
  lwork = int(lwork_guess(1)) ;allocate(work(lwork))
  !2nd Call: Actual solution of the eigenproblem
  call zgeev('N', 'N', n, At, lda, lam, vl, ldvl, vr, ldvr, work, lwork, rwork, info)
  if(info /= 0) then
     print *, "zgeev returned info = ",info
     if (info < 0) then
        print*, "the",-info,"-th argument had an illegal value"
     else
        print*, "the QR algorithm failed to compute all the"
        print*, "eigenvalues, and no eigenvectors have been computed;"
        print*, "elements ", info+1, ":", n, "of WR and WI contain eigenvalues which"
        print*, "have converged."
     end if
     stop 'deig error: 2nd call zgeev'
  end if
  deallocate(At,vl,vr,rwork)
end function zeigvals