123 SUBROUTINE sgesv( N, NRHS, A, LDA, IPIV, B, LDB, INFO )
130 INTEGER INFO, LDA, LDB, N, NRHS
134 REAL A( LDA, * ), B( LDB, * )
152 ELSE IF( nrhs.LT.0 )
THEN
154 ELSE IF( lda.LT.max( 1, n ) )
THEN
156 ELSE IF( ldb.LT.max( 1, n ) )
THEN
160 CALL xerbla(
'SGESV ', -info )
166 CALL sgetrf( n, n, a, lda, ipiv, info )
171 CALL sgetrs(
'No transpose', n, nrhs, a, lda, ipiv, b, ldb,
subroutine xerbla(srname, info)
subroutine sgesv(n, nrhs, a, lda, ipiv, b, ldb, info)
Download SGESV + dependencies <a href="http://www.netlib.org/cgi-bin/netlibfiles....
subroutine sgetrf(m, n, a, lda, ipiv, info)
SGETRF
subroutine sgetrs(trans, n, nrhs, a, lda, ipiv, b, ldb, info)
SGETRS