Diff for /rpl/lapack/lapack/zla_gercond_c.f between versions 1.9 and 1.17

version 1.9, 2012/08/22 09:48:34 version 1.17, 2020/05/21 21:46:06
Line 1 Line 1
 *> \brief \b ZLA_GERCOND_C  *> \brief \b ZLA_GERCOND_C computes the infinity norm condition number of op(A)*inv(diag(c)) for general 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_GERCOND_C + dependencies   *> Download ZLA_GERCOND_C + dependencies
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zla_gercond_c.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zla_gercond_c.f">
 *> [TGZ]</a>   *> [TGZ]</a>
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zla_gercond_c.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zla_gercond_c.f">
 *> [ZIP]</a>   *> [ZIP]</a>
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zla_gercond_c.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zla_gercond_c.f">
 *> [TXT]</a>  *> [TXT]</a>
 *> \endhtmlonly   *> \endhtmlonly
 *  *
 *  Definition:  *  Definition:
 *  ===========  *  ===========
 *  *
 *       DOUBLE PRECISION FUNCTION ZLA_GERCOND_C( TRANS, N, A, LDA, AF,   *       DOUBLE PRECISION FUNCTION ZLA_GERCOND_C( TRANS, N, A, LDA, AF,
 *                                                LDAF, IPIV, C, CAPPLY,  *                                                LDAF, IPIV, C, CAPPLY,
 *                                                INFO, WORK, RWORK )  *                                                INFO, WORK, RWORK )
 *   *
 *       .. Scalar Aguments ..  *       .. Scalar Arguments ..
 *       CHARACTER          TRANS  *       CHARACTER          TRANS
 *       LOGICAL            CAPPLY  *       LOGICAL            CAPPLY
 *       INTEGER            N, LDA, LDAF, INFO  *       INTEGER            N, LDA, LDAF, INFO
Line 32 Line 32
 *       COMPLEX*16         A( LDA, * ), AF( LDAF, * ), WORK( * )  *       COMPLEX*16         A( LDA, * ), AF( LDAF, * ), WORK( * )
 *       DOUBLE PRECISION   C( * ), RWORK( * )  *       DOUBLE PRECISION   C( * ), RWORK( * )
 *       ..  *       ..
 *    *
 *  *
 *> \par Purpose:  *> \par Purpose:
 *  =============  *  =============
Line 114 Line 114
 *>     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 129 Line 129
 *  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  *> \date December 2016
 *  *
 *> \ingroup complex16GEcomputational  *> \ingroup complex16GEcomputational
 *  *
 *  =====================================================================  *  =====================================================================
       DOUBLE PRECISION FUNCTION ZLA_GERCOND_C( TRANS, N, A, LDA, AF,         DOUBLE PRECISION FUNCTION ZLA_GERCOND_C( TRANS, N, A, LDA, AF,
      $                                         LDAF, IPIV, C, CAPPLY,       $                                         LDAF, IPIV, C, CAPPLY,
      $                                         INFO, WORK, RWORK )       $                                         INFO, WORK, RWORK )
 *  *
 *  -- LAPACK computational routine (version 3.4.0) --  *  -- LAPACK computational routine (version 3.7.0) --
 *  -- 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  *     December 2016
 *  *
 *     .. Scalar Aguments ..  *     .. Scalar Arguments ..
       CHARACTER          TRANS        CHARACTER          TRANS
       LOGICAL            CAPPLY        LOGICAL            CAPPLY
       INTEGER            N, LDA, LDAF, INFO        INTEGER            N, LDA, LDAF, INFO

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


CVSweb interface <joel.bertrand@systella.fr>