--- rpl/lapack/lapack/dla_gbrcond.f 2012/08/22 09:48:15 1.8 +++ rpl/lapack/lapack/dla_gbrcond.f 2023/08/07 08:38:52 1.17 @@ -1,19 +1,19 @@ -*> \brief \b DLA_GBRCOND +*> \brief \b DLA_GBRCOND estimates the Skeel condition number for a general banded matrix. * * =========== DOCUMENTATION =========== * -* Online html documentation available at -* http://www.netlib.org/lapack/explore-html/ +* Online html documentation available at +* http://www.netlib.org/lapack/explore-html/ * *> \htmlonly -*> Download DLA_GBRCOND + dependencies -*> -*> [TGZ] -*> -*> [ZIP] -*> +*> Download DLA_GBRCOND + dependencies +*> +*> [TGZ] +*> +*> [ZIP] +*> *> [TXT] -*> \endhtmlonly +*> \endhtmlonly * * Definition: * =========== @@ -21,7 +21,7 @@ * DOUBLE PRECISION FUNCTION DLA_GBRCOND( TRANS, N, KL, KU, AB, LDAB, * AFB, LDAFB, IPIV, CMODE, C, * INFO, WORK, IWORK ) -* +* * .. Scalar Arguments .. * CHARACTER TRANS * INTEGER N, LDAB, LDAFB, INFO, KL, KU, CMODE @@ -31,7 +31,7 @@ * DOUBLE PRECISION AB( LDAB, * ), AFB( LDAFB, * ), WORK( * ), * $ C( * ) * .. -* +* * *> \par Purpose: * ============= @@ -141,13 +141,13 @@ *> i > 0: The ith argument is invalid. *> \endverbatim *> -*> \param[in] WORK +*> \param[out] WORK *> \verbatim *> WORK is DOUBLE PRECISION array, dimension (5*N). *> Workspace. *> \endverbatim *> -*> \param[in] IWORK +*> \param[out] IWORK *> \verbatim *> IWORK is INTEGER array, dimension (N). *> Workspace. @@ -156,12 +156,10 @@ * Authors: * ======== * -*> \author Univ. of Tennessee -*> \author Univ. of California Berkeley -*> \author Univ. of Colorado Denver -*> \author NAG Ltd. -* -*> \date November 2011 +*> \author Univ. of Tennessee +*> \author Univ. of California Berkeley +*> \author Univ. of Colorado Denver +*> \author NAG Ltd. * *> \ingroup doubleGBcomputational * @@ -170,10 +168,9 @@ $ AFB, LDAFB, IPIV, CMODE, C, $ INFO, WORK, IWORK ) * -* -- LAPACK computational routine (version 3.4.0) -- +* -- LAPACK computational routine -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* November 2011 * * .. Scalar Arguments .. CHARACTER TRANS @@ -350,4 +347,6 @@ * RETURN * +* End of DLA_GBRCOND +* END