101 SUBROUTINE sptts2( N, NRHS, D, E, B, LDB )
111 REAL B( LDB, * ), D( * ), E( * )
128 $
CALL sscal( nrhs, 1. / d( 1 ), b, ldb )
140 b( i, j ) = b( i, j ) - b( i-1, j )*e( i-1 )
145 b( n, j ) = b( n, j ) / d( n )
146 DO 20 i = n - 1, 1, -1
147 b( i, j ) = b( i, j ) / d( i ) - b( i+1, j )*e( i )
subroutine sptts2(n, nrhs, d, e, b, ldb)
SPTTS2 solves a tridiagonal system of the form AX=B using the L D LH factorization computed by spttrf...
subroutine sscal(n, sa, sx, incx)
SSCAL