A Module For Computing The Square Root of a Matrix.
Compute the square root of a matrix.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(Matrix_ps), | intent(in) | :: | InputMat | The matrix to compute. |
||
type(Matrix_ps), | intent(inout) | :: | OutputMat | The resulting matrix. |
||
type(SolverParameters_t), | intent(in), | optional | :: | solver_parameters_in | Parameters for the solver. |
|
integer, | intent(in), | optional | :: | order_in | Order of polynomial for calculation (default 5). |
Compute the inverse square root of a matrix.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(Matrix_ps), | intent(in) | :: | InputMat | The matrix to compute. |
||
type(Matrix_ps), | intent(inout) | :: | OutputMat | The resulting matrix. |
||
type(SolverParameters_t), | intent(in), | optional | :: | solver_parameters_in | Parameters for the solver. |
|
integer, | intent(in), | optional | :: | order_in | Order of polynomial for calculation (default 5). |