summaryrefslogtreecommitdiff
path: root/SRC/spotrs.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/spotrs.f')
-rw-r--r--SRC/spotrs.f24
1 files changed, 11 insertions, 13 deletions
diff --git a/SRC/spotrs.f b/SRC/spotrs.f
index d8ab7893..0f7f3abe 100644
--- a/SRC/spotrs.f
+++ b/SRC/spotrs.f
@@ -15,8 +15,8 @@
*> [TXT]</a>
*> \endhtmlonly
*
-* Definition
-* ==========
+* Definition:
+* ===========
*
* SUBROUTINE SPOTRS( UPLO, N, NRHS, A, LDA, B, LDB, INFO )
*
@@ -28,20 +28,19 @@
* REAL A( LDA, * ), B( LDB, * )
* ..
*
-* Purpose
-* =======
*
-*>\details \b Purpose:
-*>\verbatim
+*> \par Purpose:
+* =============
+*>
+*> \verbatim
*>
*> SPOTRS solves a system of linear equations A*X = B with a symmetric
*> positive definite matrix A using the Cholesky factorization
*> A = U**T*U or A = L*L**T computed by SPOTRF.
-*>
-*>\endverbatim
+*> \endverbatim
*
-* Arguments
-* =========
+* Arguments:
+* ==========
*
*> \param[in] UPLO
*> \verbatim
@@ -95,10 +94,9 @@
*> = 0: successful exit
*> < 0: if INFO = -i, the i-th argument had an illegal value
*> \endverbatim
-*>
*
-* Authors
-* =======
+* Authors:
+* ========
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley