diff options
author | julie <julielangou@users.noreply.github.com> | 2011-11-03 20:32:56 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2011-11-03 20:32:56 +0000 |
commit | 1c3ba600671a59785b0c647d400226b4cc19a11f (patch) | |
tree | 2af647fcff119db522016721e10b5ee7768d22bb /SRC/dspsvx.f | |
parent | d5c30c90bdecf38da1064e2ed52583634573e741 (diff) | |
download | lapack-1c3ba600671a59785b0c647d400226b4cc19a11f.tar.gz lapack-1c3ba600671a59785b0c647d400226b4cc19a11f.tar.bz2 lapack-1c3ba600671a59785b0c647d400226b4cc19a11f.zip |
Cosmetic changes in Doxygen presentation.
Use \par instead of \details for section.
add a Contributors Section and a Reference Section.
Remove (some) verbatim section when not needed.
Those changes have been done by hand so I am not sure I manage to catch them all.
Diffstat (limited to 'SRC/dspsvx.f')
-rw-r--r-- | SRC/dspsvx.f | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/SRC/dspsvx.f b/SRC/dspsvx.f index 865492eb..1beaf731 100644 --- a/SRC/dspsvx.f +++ b/SRC/dspsvx.f @@ -15,8 +15,8 @@ *> [TXT]</a> *> \endhtmlonly * -* Definition -* ========== +* Definition: +* =========== * * SUBROUTINE DSPSVX( FACT, UPLO, N, NRHS, AP, AFP, IPIV, B, LDB, X, * LDX, RCOND, FERR, BERR, WORK, IWORK, INFO ) @@ -32,11 +32,11 @@ * $ FERR( * ), WORK( * ), X( LDX, * ) * .. * -* Purpose -* ======= * -*>\details \b Purpose: -*>\verbatim +*> \par Purpose: +* ============= +*> +*> \verbatim *> *> DSPSVX uses the diagonal pivoting factorization A = U*D*U**T or *> A = L*D*L**T to compute the solution to a real system of linear @@ -45,9 +45,12 @@ *> *> Error bounds on the solution and a condition estimate are also *> provided. +*> \endverbatim +* +*> \par Description: +* ================= *> -*> Description -*> =========== +*> \verbatim *> *> The following steps are performed: *> @@ -71,11 +74,10 @@ *> 4. Iterative refinement is applied to improve the computed solution *> matrix and calculate error bounds and backward error estimates *> for it. -*> -*>\endverbatim +*> \endverbatim * -* Arguments -* ========= +* Arguments: +* ========== * *> \param[in] FACT *> \verbatim @@ -238,10 +240,9 @@ *> computed solution can be more accurate than the *> value of RCOND would suggest. *> \endverbatim -*> * -* Authors -* ======= +* Authors: +* ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley @@ -252,10 +253,9 @@ * *> \ingroup doubleOTHERsolve * -* -* Further Details -* =============== -*>\details \b Further \b Details +*> \par Further Details: +* ===================== +*> *> \verbatim *> *> The packed storage scheme is illustrated by the following example @@ -271,7 +271,6 @@ *> Packed storage of the upper triangle of A: *> *> AP = [ a11, a12, a22, a13, a23, a33, a14, a24, a34, a44 ] -*> *> \endverbatim *> * ===================================================================== |