public subroutine eigen(A, eigenvalues, eigenvectors)
eigen
Description
Calculate the eigenvalues and eigenvectors of a real symmetric matrix
A using LAPACK’s dsyev. The eigenvectors are stored in the columns
of eigenvectors. The eigenvalues are stored in eigenvalues.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Variables
Type
Visibility
Attributes
Name
Initial
real(kind=pr),
public
::
Ain(size(A,1),size(A,1))
integer,
public
::
istat
integer,
public
::
n
real(kind=pr),
public
::
work(size(A,1)*10)
Interfaces
interface
subroutine dsyev(JOBZ, UPLO, N, A, lda, W, WORK, LWORK, INFO)