fortran-lapack
Loading...
Searching...
No Matches
la_lapack::spsv Interface Reference

SPSV: computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N symmetric matrix stored in packed format and X and B are N-by-NRHS matrices. The diagonal pivoting method is used to factor A as A = U * D * U**T, if UPLO = 'U', or A = L * D * L**T, if UPLO = 'L', where U (or L) is a product of permutation and unit upper (lower) triangular matrices, D is symmetric and block diagonal with 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then used to solve the system of equations A * X = B. More...

Public Member Functions

pure subroutine cspsv (uplo, n, nrhs, ap, ipiv, b, ldb, info)
 
 la_cspsv
 
pure subroutine dspsv (uplo, n, nrhs, ap, ipiv, b, ldb, info)
 
 la_dspsv
 
 la_qspsv
 
pure subroutine sspsv (uplo, n, nrhs, ap, ipiv, b, ldb, info)
 
 la_sspsv
 
 la_wspsv
 
pure subroutine zspsv (uplo, n, nrhs, ap, ipiv, b, ldb, info)
 
 la_zspsv
 

Detailed Description

SPSV: computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N symmetric matrix stored in packed format and X and B are N-by-NRHS matrices. The diagonal pivoting method is used to factor A as A = U * D * U**T, if UPLO = 'U', or A = L * D * L**T, if UPLO = 'L', where U (or L) is a product of permutation and unit upper (lower) triangular matrices, D is symmetric and block diagonal with 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then used to solve the system of equations A * X = B.

Member Function/Subroutine Documentation

◆ cspsv()

pure subroutine la_lapack::spsv::cspsv ( character, intent(in)  uplo,
integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
complex(sp), dimension(*), intent(inout)  ap,
integer(ilp), dimension(*), intent(out)  ipiv,
complex(sp), dimension(ldb,*), intent(inout)  b,
integer(ilp), intent(in)  ldb,
integer(ilp), intent(out)  info 
)

◆ dspsv()

pure subroutine la_lapack::spsv::dspsv ( character, intent(in)  uplo,
integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
real(dp), dimension(*), intent(inout)  ap,
integer(ilp), dimension(*), intent(out)  ipiv,
real(dp), dimension(ldb,*), intent(inout)  b,
integer(ilp), intent(in)  ldb,
integer(ilp), intent(out)  info 
)

◆ la_cspsv()

la_lapack::spsv::la_cspsv

◆ la_dspsv()

la_lapack::spsv::la_dspsv

◆ la_qspsv()

la_lapack::spsv::la_qspsv

◆ la_sspsv()

la_lapack::spsv::la_sspsv

◆ la_wspsv()

la_lapack::spsv::la_wspsv

◆ la_zspsv()

la_lapack::spsv::la_zspsv

◆ sspsv()

pure subroutine la_lapack::spsv::sspsv ( character, intent(in)  uplo,
integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
real(sp), dimension(*), intent(inout)  ap,
integer(ilp), dimension(*), intent(out)  ipiv,
real(sp), dimension(ldb,*), intent(inout)  b,
integer(ilp), intent(in)  ldb,
integer(ilp), intent(out)  info 
)

◆ zspsv()

pure subroutine la_lapack::spsv::zspsv ( character, intent(in)  uplo,
integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
complex(dp), dimension(*), intent(inout)  ap,
integer(ilp), dimension(*), intent(out)  ipiv,
complex(dp), dimension(ldb,*), intent(inout)  b,
integer(ilp), intent(in)  ldb,
integer(ilp), intent(out)  info 
)

The documentation for this interface was generated from the following file: