HP MLIB User's Guide Vol. 2 7th Ed.
944 HP MLIB User’s Guide
DSLESL Solve
Name DSLESL
Solve
Purpose This subprogram computes the solution for a set of right hand side vectors
given a numeric factorization performed by DSLECO or DSLEFA.
NOTE Matrix structure input by matrix supports five data types. Matrix structure
input by elements, columns, and finite elements supports only REAL*8
precision.
Usage VECLIB:
INTEGER*4 nrhs, ldrhs, ier
REAL*4 rhs(ldrhs, nrhs)
REAL*8 global(150)
CALL SSLESL(nrhs, rhs, ldrhs, global, ier)
INTEGER*4 nrhs, ldrhs, ier
REAL*8 rhs(ldrhs, nrhs)
REAL*8 global(150)
CALL DSLESL(nrhs, rhs, ldrhs, global, ier)
INTEGER*4 nrhs, ldrhs, ier
REAL*16 rhs(ldrhs, nrhs)
REAL*8 global(150)
CALL QSLESL(nrhs, rhs, ldrhs, global, ier)
INTEGER*4 nrhs, ldrhs, ier
COMPLEX*8 rhs(ldrhs, nrhs)
REAL*8 global(150)
CALL CSLESL(nrhs, rhs, ldrhs, global, ier)
INTEGER*4 nrhs, ldrhs, ier
COMPLEX*16 rhs(ldrhs, nrhs)
REAL*8 global(150)
CALL ZSLESL(nrhs, rhs, ldrhs, global, ier)
VECLIB8:
INTEGER*8 nrhs, ldrhs, ier
REAL*4 rhs(ldrhs, nrhs)
REAL*8 global(150)
CALL SSLESL(nrhs, rhs, ldrhs, global, ier)
INTEGER*8 nrhs, ldrhs, ier
REAL*8 rhs(ldrhs, nrhs)
REAL*8 global(150)
CALL DSLESL(nrhs, rhs, ldrhs, global, ier)