Processing math: 100%

solve_linear_system_complex_banded Function

public function solve_linear_system_complex_banded(bandmatrix, vector) result(xvector)

Calculates the solution X to a system of linear equations AX=B where A is a complex banded matrix and B is a complex vector.

Arguments

TypeIntentOptionalAttributesName
type(banded_matrix_t), intent(in) :: bandmatrix

the banded A-matrix on the left-hand side

complex(kind=dp), intent(in) :: vector(:)

the B-vector on the right-hand side

Return Value complex(kind=dp)(size(vector))

the solution vector X


Contents

None