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

GESV: computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N matrix and X and B are N-by-NRHS matrices. The LU decomposition with partial pivoting and row interchanges is used to factor A as A = P * L * U, where P is a permutation matrix, L is unit lower triangular, and U is upper triangular. The factored form of A is then used to solve the system of equations A * X = B. More...

Public Member Functions

pure subroutine cgesv (n, nrhs, a, lda, ipiv, b, ldb, info)
 
 la_cgesv
 
pure subroutine dgesv (n, nrhs, a, lda, ipiv, b, ldb, info)
 
 la_dgesv
 
 la_qgesv
 
pure subroutine sgesv (n, nrhs, a, lda, ipiv, b, ldb, info)
 
 la_sgesv
 
 la_wgesv
 
pure subroutine zgesv (n, nrhs, a, lda, ipiv, b, ldb, info)
 
 la_zgesv
 

Detailed Description

GESV: computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N matrix and X and B are N-by-NRHS matrices. The LU decomposition with partial pivoting and row interchanges is used to factor A as A = P * L * U, where P is a permutation matrix, L is unit lower triangular, and U is upper triangular. The factored form of A is then used to solve the system of equations A * X = B.

Member Function/Subroutine Documentation

◆ cgesv()

pure subroutine la_lapack::gesv::cgesv ( integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
complex(sp), dimension(lda,*), intent(inout)  a,
integer(ilp), intent(in)  lda,
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:

◆ dgesv()

pure subroutine la_lapack::gesv::dgesv ( integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
real(dp), dimension(lda,*), intent(inout)  a,
integer(ilp), intent(in)  lda,
integer(ilp), dimension(*), intent(out)  ipiv,
real(dp), dimension(ldb,*), intent(inout)  b,
integer(ilp), intent(in)  ldb,
integer(ilp), intent(out)  info 
)
Here is the call graph for this function:

◆ la_cgesv()

la_lapack::gesv::la_cgesv

◆ la_dgesv()

la_lapack::gesv::la_dgesv

◆ la_qgesv()

la_lapack::gesv::la_qgesv

◆ la_sgesv()

la_lapack::gesv::la_sgesv

◆ la_wgesv()

la_lapack::gesv::la_wgesv

◆ la_zgesv()

la_lapack::gesv::la_zgesv

◆ sgesv()

pure subroutine la_lapack::gesv::sgesv ( integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
real(sp), dimension(lda,*), intent(inout)  a,
integer(ilp), intent(in)  lda,
integer(ilp), dimension(*), intent(out)  ipiv,
real(sp), dimension(ldb,*), intent(inout)  b,
integer(ilp), intent(in)  ldb,
integer(ilp), intent(out)  info 
)
Here is the call graph for this function:

◆ zgesv()

pure subroutine la_lapack::gesv::zgesv ( integer(ilp), intent(in)  n,
integer(ilp), intent(in)  nrhs,
complex(dp), dimension(lda,*), intent(inout)  a,
integer(ilp), intent(in)  lda,
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: