matrix_inverse_re Function

public pure function matrix_inverse_re(A) result(R)

Wrapper for matrix_inverse_cx that operates on real matrices.

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in), dimension(:, :) :: A

Matrix A [n×n]

Return Value real(kind=wp), dimension(size(A, 1), size(A, 1))

Matrix R=A¯¹