Diff for /rpl/lapack/lapack/zptsvx.f between versions 1.10 and 1.18

version 1.10, 2011/11/21 22:19:56 version 1.18, 2017/06/17 11:07:01
Line 1 Line 1
 *> \brief \b ZPTSVX  *> \brief <b> ZPTSVX computes the solution to system of linear equations A * X = B for PT matrices</b>
 *  *
 *  =========== 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 ZPTSVX + dependencies   *> Download ZPTSVX + dependencies
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zptsvx.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zptsvx.f">
 *> [TGZ]</a>   *> [TGZ]</a>
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zptsvx.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zptsvx.f">
 *> [ZIP]</a>   *> [ZIP]</a>
 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zptsvx.f">   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zptsvx.f">
 *> [TXT]</a>  *> [TXT]</a>
 *> \endhtmlonly   *> \endhtmlonly
 *  *
 *  Definition:  *  Definition:
 *  ===========  *  ===========
 *  *
 *       SUBROUTINE ZPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,  *       SUBROUTINE ZPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
 *                          RCOND, FERR, BERR, WORK, RWORK, INFO )  *                          RCOND, FERR, BERR, WORK, RWORK, INFO )
 *   *
 *       .. Scalar Arguments ..  *       .. Scalar Arguments ..
 *       CHARACTER          FACT  *       CHARACTER          FACT
 *       INTEGER            INFO, LDB, LDX, N, NRHS  *       INTEGER            INFO, LDB, LDX, N, NRHS
Line 32 Line 32
 *       COMPLEX*16         B( LDB, * ), E( * ), EF( * ), WORK( * ),  *       COMPLEX*16         B( LDB, * ), E( * ), EF( * ), WORK( * ),
 *      $                   X( LDX, * )  *      $                   X( LDX, * )
 *       ..  *       ..
 *    *
 *  *
 *> \par Purpose:  *> \par Purpose:
 *  =============  *  =============
Line 117 Line 117
 *>  *>
 *> \param[in,out] DF  *> \param[in,out] DF
 *> \verbatim  *> \verbatim
 *>          DF is or output) DOUBLE PRECISION array, dimension (N)  *>          DF is DOUBLE PRECISION array, dimension (N)
 *>          If FACT = 'F', then DF is an input argument and on entry  *>          If FACT = 'F', then DF is an input argument and on entry
 *>          contains the n diagonal elements of the diagonal matrix D  *>          contains the n diagonal elements of the diagonal matrix D
 *>          from the L*D*L**H factorization of A.  *>          from the L*D*L**H factorization of A.
Line 128 Line 128
 *>  *>
 *> \param[in,out] EF  *> \param[in,out] EF
 *> \verbatim  *> \verbatim
 *>          EF is or output) COMPLEX*16 array, dimension (N-1)  *>          EF is COMPLEX*16 array, dimension (N-1)
 *>          If FACT = 'F', then EF is an input argument and on entry  *>          If FACT = 'F', then EF is an input argument and on entry
 *>          contains the (n-1) subdiagonal elements of the unit  *>          contains the (n-1) subdiagonal elements of the unit
 *>          bidiagonal factor L from the L*D*L**H factorization of A.  *>          bidiagonal factor L from the L*D*L**H factorization of A.
Line 221 Line 221
 *  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 complex16OTHERcomputational  *> \ingroup complex16PTsolve
 *  *
 *  =====================================================================  *  =====================================================================
       SUBROUTINE ZPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,        SUBROUTINE ZPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
      $                   RCOND, FERR, BERR, WORK, RWORK, INFO )       $                   RCOND, FERR, BERR, WORK, RWORK, INFO )
 *  *
 *  -- LAPACK computational routine (version 3.4.0) --  *  -- LAPACK driver 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 Arguments ..  *     .. Scalar Arguments ..
       CHARACTER          FACT        CHARACTER          FACT

Removed from v.1.10  
changed lines
  Added in v.1.18


CVSweb interface <joel.bertrand@systella.fr>