mfi_sytrf Interface

public interface mfi_sytrf

Generic modern interface for SYTRF. Supports s, d. See also: ssytrf, dsytrf.


Module Procedures

public pure subroutine mfi_ssytrf(a, uplo, ipiv, info)

Modern interface for ssytrf. See also: mfi_sytrf, f77_sytrf. Computes the factorization of a symmetric matrix using the Bunch-Kaufman diagonal pivoting method

Read more…

Arguments

Type IntentOptional Attributes Name
real(kind=REAL32), intent(inout) :: a(:,:)
character(len=1), intent(in), optional :: uplo
integer, intent(out), optional, target :: ipiv(:)
integer, intent(out), optional :: info

public pure subroutine mfi_dsytrf(a, uplo, ipiv, info)

Modern interface for dsytrf. See also: mfi_sytrf, f77_sytrf. Computes the factorization of a symmetric matrix using the Bunch-Kaufman diagonal pivoting method

Read more…

Arguments

Type IntentOptional Attributes Name
real(kind=REAL64), intent(inout) :: a(:,:)
character(len=1), intent(in), optional :: uplo
integer, intent(out), optional, target :: ipiv(:)
integer, intent(out), optional :: info