--- rpl/lapack/lapack/zla_lin_berr.f 2011/11/21 22:19:50 1.6 +++ rpl/lapack/lapack/zla_lin_berr.f 2023/08/07 08:39:28 1.16 @@ -1,25 +1,25 @@ -*> \brief \b ZLA_LIN_BERR +*> \brief \b ZLA_LIN_BERR computes a component-wise relative backward error. * * =========== 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 ZLA_LIN_BERR + dependencies -*> -*> [TGZ] -*> -*> [ZIP] -*> +*> Download ZLA_LIN_BERR + dependencies +*> +*> [TGZ] +*> +*> [ZIP] +*> *> [TXT] -*> \endhtmlonly +*> \endhtmlonly * * Definition: * =========== * -* SUBROUTINE ZLA_LIN_BERR ( N, NZ, NRHS, RES, AYB, BERR ) -* +* SUBROUTINE ZLA_LIN_BERR( N, NZ, NRHS, RES, AYB, BERR ) +* * .. Scalar Arguments .. * INTEGER N, NZ, NRHS * .. @@ -27,7 +27,7 @@ * DOUBLE PRECISION AYB( N, NRHS ), BERR( NRHS ) * COMPLEX*16 RES( N, NRHS ) * .. -* +* * *> \par Purpose: * ============= @@ -67,7 +67,7 @@ *> *> \param[in] RES *> \verbatim -*> RES is DOUBLE PRECISION array, dimension (N,NRHS) +*> RES is COMPLEX*16 array, dimension (N,NRHS) *> The residual matrix, i.e., the matrix R in the relative backward *> error formula above. *> \endverbatim @@ -79,32 +79,29 @@ *> the matrix abs(op(A_s))*abs(Y) + abs(B_s). The matrices A, Y, and B *> are from iterative refinement (see zla_gerfsx_extended.f). *> \endverbatim -*> +*> *> \param[out] BERR *> \verbatim -*> BERR is COMPLEX*16 array, dimension (NRHS) +*> BERR is DOUBLE PRECISION array, dimension (NRHS) *> The componentwise relative backward error from the formula above. *> \endverbatim * * 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 complex16OTHERcomputational * * ===================================================================== - SUBROUTINE ZLA_LIN_BERR ( N, NZ, NRHS, RES, AYB, BERR ) + SUBROUTINE ZLA_LIN_BERR( N, NZ, NRHS, RES, AYB, BERR ) * -* -- 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 .. INTEGER N, NZ, NRHS @@ -157,4 +154,7 @@ * END DO END DO +* +* End of ZLA_LIN_BERR +* END