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

HPSV: computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N Hermitian 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**H, if UPLO = 'U', or A = L * D * L**H, if UPLO = 'L', where U (or L) is a product of permutation and unit upper (lower) triangular matrices, D is Hermitian 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 chpsv (uplo, n, nrhs, ap, ipiv, b, ldb, info)
 
 la_chpsv
 
 la_whpsv
 
pure subroutine zhpsv (uplo, n, nrhs, ap, ipiv, b, ldb, info)
 
 la_zhpsv
 

Detailed Description

HPSV: computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N Hermitian 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**H, if UPLO = 'U', or A = L * D * L**H, if UPLO = 'L', where U (or L) is a product of permutation and unit upper (lower) triangular matrices, D is Hermitian 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

◆ chpsv()

pure subroutine la_lapack::hpsv::chpsv ( 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 
)
Here is the call graph for this function:

◆ la_chpsv()

la_lapack::hpsv::la_chpsv

◆ la_whpsv()

la_lapack::hpsv::la_whpsv

◆ la_zhpsv()

la_lapack::hpsv::la_zhpsv

◆ zhpsv()

pure subroutine la_lapack::hpsv::zhpsv ( 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 
)
Here is the call graph for this function:

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