Diff for /rpl/lapack/lapack/zla_gbrcond_c.f between versions 1.8 and 1.17

version 1.8, 2012/08/22 09:48:33 version 1.17, 2023/08/07 08:39:27
Line 1 Line 1
 *> \brief \b ZLA_GBRCOND_C  *> \brief \b ZLA_GBRCOND_C computes the infinity norm condition number of op(A)*inv(diag(c)) for general banded matrices.
 *  *
 *  =========== DOCUMENTATION ===========  *  =========== DOCUMENTATION ===========
 *  *
 * Online html documentation available at   * Online html documentation available at
 *            http://www.netlib.org/lapack/explore-html/   *            http://www.netlib.org/lapack/explore-html/
 *  *
 *> \htmlonly  *> \htmlonly
 *> Download ZLA_GBRCOND_C + dependencies   *> Download ZLA_GBRCOND_C + dependencies
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zla_gbrcond_c.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zla_gbrcond_c.f">
 *> [TGZ]</a>   *> [TGZ]</a>
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zla_gbrcond_c.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zla_gbrcond_c.f">
 *> [ZIP]</a>   *> [ZIP]</a>
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zla_gbrcond_c.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zla_gbrcond_c.f">
 *> [TXT]</a>  *> [TXT]</a>
 *> \endhtmlonly   *> \endhtmlonly
 *  *
 *  Definition:  *  Definition:
 *  ===========  *  ===========
 *  *
 *       DOUBLE PRECISION FUNCTION ZLA_GBRCOND_C( TRANS, N, KL, KU, AB,   *       DOUBLE PRECISION FUNCTION ZLA_GBRCOND_C( TRANS, N, KL, KU, AB,
 *                                                LDAB, AFB, LDAFB, IPIV,  *                                                LDAB, AFB, LDAFB, IPIV,
 *                                                C, CAPPLY, INFO, WORK,  *                                                C, CAPPLY, INFO, WORK,
 *                                                RWORK )  *                                                RWORK )
 *   *
 *       .. Scalar Arguments ..  *       .. Scalar Arguments ..
 *       CHARACTER          TRANS  *       CHARACTER          TRANS
 *       LOGICAL            CAPPLY  *       LOGICAL            CAPPLY
Line 32 Line 32
 *       INTEGER            IPIV( * )  *       INTEGER            IPIV( * )
 *       COMPLEX*16         AB( LDAB, * ), AFB( LDAFB, * ), WORK( * )  *       COMPLEX*16         AB( LDAB, * ), AFB( LDAFB, * ), WORK( * )
 *       DOUBLE PRECISION   C( * ), RWORK( * )  *       DOUBLE PRECISION   C( * ), RWORK( * )
 *    *
 *    *
 *  *
 *> \par Purpose:  *> \par Purpose:
 *  =============  *  =============
Line 133 Line 133
 *>     i > 0:  The ith argument is invalid.  *>     i > 0:  The ith argument is invalid.
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[in] WORK  *> \param[out] WORK
 *> \verbatim  *> \verbatim
 *>          WORK is COMPLEX*16 array, dimension (2*N).  *>          WORK is COMPLEX*16 array, dimension (2*N).
 *>     Workspace.  *>     Workspace.
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[in] RWORK  *> \param[out] RWORK
 *> \verbatim  *> \verbatim
 *>          RWORK is DOUBLE PRECISION array, dimension (N).  *>          RWORK is DOUBLE PRECISION array, dimension (N).
 *>     Workspace.  *>     Workspace.
Line 148 Line 148
 *  Authors:  *  Authors:
 *  ========  *  ========
 *  *
 *> \author Univ. of Tennessee   *> \author Univ. of Tennessee
 *> \author Univ. of California Berkeley   *> \author Univ. of California Berkeley
 *> \author Univ. of Colorado Denver   *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.   *> \author NAG Ltd.
 *  
 *> \date November 2011  
 *  *
 *> \ingroup complex16GBcomputational  *> \ingroup complex16GBcomputational
 *  *
 *  =====================================================================  *  =====================================================================
       DOUBLE PRECISION FUNCTION ZLA_GBRCOND_C( TRANS, N, KL, KU, AB,         DOUBLE PRECISION FUNCTION ZLA_GBRCOND_C( TRANS, N, KL, KU, AB,
      $                                         LDAB, AFB, LDAFB, IPIV,       $                                         LDAB, AFB, LDAFB, IPIV,
      $                                         C, CAPPLY, INFO, WORK,       $                                         C, CAPPLY, INFO, WORK,
      $                                         RWORK )       $                                         RWORK )
 *  *
 *  -- LAPACK computational routine (version 3.4.0) --  *  -- LAPACK computational routine --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --  *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--  *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       CHARACTER          TRANS        CHARACTER          TRANS
Line 341 Line 338
 *  *
       RETURN        RETURN
 *  *
   *     End of ZLA_GBRCOND_C
   *
       END        END

Removed from v.1.8  
changed lines
  Added in v.1.17


CVSweb interface <joel.bertrand@systella.fr>