summaryrefslogtreecommitdiff
path: root/SRC/dspsv.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/dspsv.f')
-rw-r--r--SRC/dspsv.f32
1 files changed, 14 insertions, 18 deletions
diff --git a/SRC/dspsv.f b/SRC/dspsv.f
index e55c4b50..f5603534 100644
--- a/SRC/dspsv.f
+++ b/SRC/dspsv.f
@@ -15,8 +15,8 @@
*> [TXT]</a>
*> \endhtmlonly
*
-* Definition
-* ==========
+* Definition:
+* ===========
*
* SUBROUTINE DSPSV( UPLO, N, NRHS, AP, IPIV, B, LDB, INFO )
*
@@ -29,11 +29,11 @@
* DOUBLE PRECISION AP( * ), B( LDB, * )
* ..
*
-* Purpose
-* =======
*
-*>\details \b Purpose:
-*>\verbatim
+*> \par Purpose:
+* =============
+*>
+*> \verbatim
*>
*> DSPSV computes the solution to a real system of linear equations
*> A * X = B,
@@ -47,11 +47,10 @@
*> triangular matrices, D is symmetric and block diagonal with 1-by-1
*> and 2-by-2 diagonal blocks. The factored form of A is then used to
*> solve the system of equations A * X = B.
-*>
-*>\endverbatim
+*> \endverbatim
*
-* Arguments
-* =========
+* Arguments:
+* ==========
*
*> \param[in] UPLO
*> \verbatim
@@ -127,10 +126,9 @@
*> exactly singular, so the solution could not be
*> computed.
*> \endverbatim
-*>
*
-* Authors
-* =======
+* Authors:
+* ========
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley
@@ -141,10 +139,9 @@
*
*> \ingroup doubleOTHERsolve
*
-*
-* Further Details
-* ===============
-*>\details \b Further \b Details
+*> \par Further Details:
+* =====================
+*>
*> \verbatim
*>
*> The packed storage scheme is illustrated by the following example
@@ -160,7 +157,6 @@
*> Packed storage of the upper triangle of A:
*>
*> AP = [ a11, a12, a22, a13, a23, a33, a14, a24, a34, a44 ]
-*>
*> \endverbatim
*>
* =====================================================================