norml Interface

public interface norml

This interface provides methods to compute the infinity norm of a matrix. Note that it'll eventually be superseeded by the stdlib implementation.


Module Procedures

private pure function norml_rsp(A) result(norm)

Arguments

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

Return Value real(kind=sp)

private pure function norml_rdp(A) result(norm)

Arguments

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

Return Value real(kind=dp)

private pure function norml_csp(A) result(norm)

Arguments

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

Return Value real(kind=sp)

private pure function norml_cdp(A) result(norm)

Arguments

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

Return Value real(kind=dp)