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/dlatrz.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/dlatrz.f')
-rw-r--r-- | SRC/dlatrz.f | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/SRC/dlatrz.f b/SRC/dlatrz.f index b14539c4..03b19f38 100644 --- a/SRC/dlatrz.f +++ b/SRC/dlatrz.f @@ -15,8 +15,8 @@ *> [TXT]</a> *> \endhtmlonly * -* Definition -* ========== +* Definition: +* =========== * * SUBROUTINE DLATRZ( M, N, L, A, LDA, TAU, WORK ) * @@ -27,21 +27,20 @@ * DOUBLE PRECISION A( LDA, * ), TAU( * ), WORK( * ) * .. * -* Purpose -* ======= * -*>\details \b Purpose: -*>\verbatim +*> \par Purpose: +* ============= +*> +*> \verbatim *> *> DLATRZ factors the M-by-(M+L) real upper trapezoidal matrix *> [ A1 A2 ] = [ A(1:M,1:M) A(1:M,N-L+1:N) ] as ( R 0 ) * Z, by means *> of orthogonal transformations. Z is an (M+L)-by-(M+L) orthogonal *> matrix and, R and A1 are M-by-M upper triangular matrices. -*> -*>\endverbatim +*> \endverbatim * -* Arguments -* ========= +* Arguments: +* ========== * *> \param[in] M *> \verbatim @@ -89,10 +88,9 @@ *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (M) *> \endverbatim -*> * -* Authors -* ======= +* Authors: +* ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley @@ -103,14 +101,15 @@ * *> \ingroup doubleOTHERcomputational * -* -* Further Details -* =============== -*>\details \b Further \b Details -*> \verbatim +*> \par Contributors: +* ================== *> -*> Based on contributions by *> A. Petitet, Computer Science Dept., Univ. of Tenn., Knoxville, USA +* +*> \par Further Details: +* ===================== +*> +*> \verbatim *> *> The factorization is obtained by Householder's method. The kth *> transformation matrix, Z( k ), which is used to introduce zeros into @@ -136,7 +135,6 @@ *> Z is given by *> *> Z = Z( 1 ) * Z( 2 ) * ... * Z( m ). -*> *> \endverbatim *> * ===================================================================== |