qr_cholesky Module Procedure

module procedure qr_cholesky module subroutine qr_cholesky(matrix_A, matrix_B, settings, omega, vr)

Solves the eigenvalue problem by rewriting it to a standard form through splitting of the B-matrix.

Warning

Throws an error if matrix_A or matrix_B is not a square matrix.

Arguments

Type IntentOptional Attributes Name
type(matrix_t), intent(in) :: matrix_A

matrix A

type(matrix_t), intent(in) :: matrix_B

matrix B

type(settings_t), intent(in) :: settings

settings object

complex(kind=dp), intent(out) :: omega(:)

array with eigenvalues

complex(kind=dp), intent(out) :: vr(:,:)

array with right eigenvectors