is_square Interface

public interface is_square

Contents


Module Procedures

private function is_square_rsp(A) result(is_square)

real(sp) matrix is square or not.

Arguments

Type IntentOptional AttributesName
real(kind=sp), intent(in) :: A(:,:)

Return Value logical

private function is_square_rdp(A) result(is_square)

real(dp) matrix is square or not.

Arguments

Type IntentOptional AttributesName
real(kind=dp), intent(in) :: A(:,:)

Return Value logical

private function is_square_csp(A) result(is_square)

complex(sp) matrix is square or not.

Arguments

Type IntentOptional AttributesName
complex(kind=sp), intent(in) :: A(:,:)

Return Value logical

private function is_square_cdp(A) result(is_square)

complex(dp) matrix is square or not.

Arguments

Type IntentOptional AttributesName
complex(kind=dp), intent(in) :: A(:,:)

Return Value logical