Invert Subroutine

public subroutine Invert(InputMat, OutputMat, solver_parameters_in)

Compute the inverse of a matrix. An implementation of the method of Hotelling \cite palser1998canonical.

Arguments

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

The matrix to invert.

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

The inverse of that matrix.

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

Parameters for the solver


Contents