Diff for /rpl/lapack/lapack/zheequb.f between versions 1.6 and 1.7

version 1.6, 2011/11/21 22:19:47 version 1.7, 2012/07/31 11:06:38
Line 36 Line 36
 *>  *>
 *> \verbatim  *> \verbatim
 *>  *>
 *> ZSYEQUB computes row and column scalings intended to equilibrate a  *> ZHEEQUB computes row and column scalings intended to equilibrate a
 *> symmetric matrix A and reduce its condition number  *> Hermitian matrix A and reduce its condition number
 *> (with respect to the two-norm).  S contains the scale factors,  *> (with respect to the two-norm).  S contains the scale factors,
 *> S(i) = 1/sqrt(A(i,i)), chosen so that the scaled matrix B with  *> S(i) = 1/sqrt(A(i,i)), chosen so that the scaled matrix B with
 *> elements B(i,j) = S(i)*A(i,j)*S(j) has ones on the diagonal.  This  *> elements B(i,j) = S(i)*A(i,j)*S(j) has ones on the diagonal.  This
Line 65 Line 65
 *> \param[in] A  *> \param[in] A
 *> \verbatim  *> \verbatim
 *>          A is COMPLEX*16 array, dimension (LDA,N)  *>          A is COMPLEX*16 array, dimension (LDA,N)
 *>          The N-by-N symmetric matrix whose scaling  *>          The N-by-N Hermitian matrix whose scaling
 *>          factors are to be computed.  Only the diagonal elements of A  *>          factors are to be computed.  Only the diagonal elements of A
 *>          are referenced.  *>          are referenced.
 *> \endverbatim  *> \endverbatim
Line 100 Line 100
 *>  *>
 *> \param[out] WORK  *> \param[out] WORK
 *> \verbatim  *> \verbatim
 *>          WORK is DOUBLE PRECISION array, dimension (3*N)  *>          WORK is COMPLEX*16 array, dimension (3*N)
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[out] INFO  *> \param[out] INFO
Line 119 Line 119
 *> \author Univ. of Colorado Denver   *> \author Univ. of Colorado Denver 
 *> \author NAG Ltd.   *> \author NAG Ltd. 
 *  *
 *> \date November 2011  *> \date April 2012
 *  *
 *> \ingroup complex16HEcomputational  *> \ingroup complex16HEcomputational
 *  *
 *  =====================================================================  *  =====================================================================
       SUBROUTINE ZHEEQUB( UPLO, N, A, LDA, S, SCOND, AMAX, WORK, INFO )        SUBROUTINE ZHEEQUB( UPLO, N, A, LDA, S, SCOND, AMAX, WORK, INFO )
 *  *
 *  -- LAPACK computational routine (version 3.4.0) --  *  -- LAPACK computational routine (version 3.4.1) --
 *  -- 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  *     April 2012
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            INFO, LDA, N        INTEGER            INFO, LDA, N

Removed from v.1.6  
changed lines
  Added in v.1.7


CVSweb interface <joel.bertrand@systella.fr>