mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 06:23:39 +01:00
c977aa998f
Replace amos with slatec
81 lines
2.4 KiB
Fortran
81 lines
2.4 KiB
Fortran
*DECK SPPSL
|
|
SUBROUTINE SPPSL (AP, N, B)
|
|
C***BEGIN PROLOGUE SPPSL
|
|
C***PURPOSE Solve the real symmetric positive definite system using
|
|
C the factors computed by SPPCO or SPPFA.
|
|
C***LIBRARY SLATEC (LINPACK)
|
|
C***CATEGORY D2B1B
|
|
C***TYPE SINGLE PRECISION (SPPSL-S, DPPSL-D, CPPSL-C)
|
|
C***KEYWORDS LINEAR ALGEBRA, LINPACK, MATRIX, PACKED,
|
|
C POSITIVE DEFINITE, SOLVE
|
|
C***AUTHOR Moler, C. B., (U. of New Mexico)
|
|
C***DESCRIPTION
|
|
C
|
|
C SPPSL solves the real symmetric positive definite system
|
|
C A * X = B
|
|
C using the factors computed by SPPCO or SPPFA.
|
|
C
|
|
C On Entry
|
|
C
|
|
C AP REAL (N*(N+1)/2)
|
|
C the output from SPPCO or SPPFA.
|
|
C
|
|
C N INTEGER
|
|
C the order of the matrix A .
|
|
C
|
|
C B REAL(N)
|
|
C the right hand side vector.
|
|
C
|
|
C On Return
|
|
C
|
|
C B the solution vector X .
|
|
C
|
|
C Error Condition
|
|
C
|
|
C A division by zero will occur if the input factor contains
|
|
C a zero on the diagonal. Technically, this indicates
|
|
C singularity, but it is usually caused by improper subroutine
|
|
C arguments. It will not occur if the subroutines are called
|
|
C correctly and INFO .EQ. 0 .
|
|
C
|
|
C To compute INVERSE(A) * C where C is a matrix
|
|
C with P columns
|
|
C CALL SPPCO(AP,N,RCOND,Z,INFO)
|
|
C IF (RCOND is too small .OR. INFO .NE. 0) GO TO ...
|
|
C DO 10 J = 1, P
|
|
C CALL SPPSL(AP,N,C(1,J))
|
|
C 10 CONTINUE
|
|
C
|
|
C***REFERENCES J. J. Dongarra, J. R. Bunch, C. B. Moler, and G. W.
|
|
C Stewart, LINPACK Users' Guide, SIAM, 1979.
|
|
C***ROUTINES CALLED SAXPY, SDOT
|
|
C***REVISION HISTORY (YYMMDD)
|
|
C 780814 DATE WRITTEN
|
|
C 890831 Modified array declarations. (WRB)
|
|
C 890831 REVISION DATE from Version 3.2
|
|
C 891214 Prologue converted to Version 4.0 format. (BAB)
|
|
C 900326 Removed duplicate information from DESCRIPTION section.
|
|
C (WRB)
|
|
C 920501 Reformatted the REFERENCES section. (WRB)
|
|
C***END PROLOGUE SPPSL
|
|
INTEGER N
|
|
REAL AP(*),B(*)
|
|
C
|
|
REAL SDOT,T
|
|
INTEGER K,KB,KK
|
|
C***FIRST EXECUTABLE STATEMENT SPPSL
|
|
KK = 0
|
|
DO 10 K = 1, N
|
|
T = SDOT(K-1,AP(KK+1),1,B(1),1)
|
|
KK = KK + K
|
|
B(K) = (B(K) - T)/AP(KK)
|
|
10 CONTINUE
|
|
DO 20 KB = 1, N
|
|
K = N + 1 - KB
|
|
B(K) = B(K)/AP(KK)
|
|
KK = KK - K
|
|
T = -B(K)
|
|
CALL SAXPY(K-1,T,AP(KK+1),1,B(1),1)
|
|
20 CONTINUE
|
|
RETURN
|
|
END
|