A Module For Computing Trigonometric functions of a Matrix.
Compute the sine 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. |
Compute the sine of a matrix. (dense version).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(Matrix_ps), | intent(in) | :: | Mat |
The matrix to compute. |
||
type(Matrix_ps), | intent(inout) | :: | OutputMat |
The sine of the input matrix. |
||
type(SolverParameters_t), | intent(in), | optional | :: | solver_parameters_in |
Parameters for the solver |
Compute the cosine 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. |
Compute the cosine of a matrix. (dense version).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(Matrix_ps), | intent(in) | :: | Mat |
The matrix to compute. |
||
type(Matrix_ps), | intent(inout) | :: | OutputMat |
The cosine of the input matrix. |
||
type(SolverParameters_t), | intent(in), | optional | :: | solver_parameters_in |
Parameters for the solver |
Compute trigonometric functions of a matrix using a taylor series.
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) | :: | params |
Parameters for the solver. |