DenseInvert Subroutine

public subroutine DenseInvert(InputMat, OutputMat, solver_parameters_in)

Compute the inverse of a matrix using the eigendecomposition.

Arguments

Type IntentOptional Attributes Name
type(Matrix_ps), intent(in) :: InputMat

The matrix to compute the pseudo inverse of.

type(Matrix_ps), intent(inout) :: OutputMat

The pseudoinverse of the input matrix.

type(SolverParameters_t), intent(in), optional :: solver_parameters_in

Parameters for the solver


Contents