TrigonometrySolversModule Module

A Module For Computing Trigonometric functions of a Matrix.



Contents


Subroutines

public subroutine Sine(InputMat, OutputMat, solver_parameters_in)

Compute the sine of a matrix.

Arguments

Type IntentOptional AttributesName
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.

public subroutine Cosine(InputMat, OutputMat, solver_parameters_in)

Compute the cosine of a matrix.

Arguments

Type IntentOptional AttributesName
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.

public subroutine ScaleSquareTrigonometryTaylor(InputMat, OutputMat, solver_parameters_in)

Compute trigonometric functions of a matrix using a taylor series.

Arguments

Type IntentOptional AttributesName
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.