Diff for /rpl/lapack/lapack/dladiv.f between versions 1.7 and 1.8

version 1.7, 2010/12/21 13:53:28 version 1.8, 2011/11/21 20:42:54
Line 1 Line 1
   *> \brief \b DLADIV
   *
   *  =========== DOCUMENTATION ===========
   *
   * Online html documentation available at 
   *            http://www.netlib.org/lapack/explore-html/ 
   *
   *> \htmlonly
   *> Download DLADIV + dependencies 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dladiv.f"> 
   *> [TGZ]</a> 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dladiv.f"> 
   *> [ZIP]</a> 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dladiv.f"> 
   *> [TXT]</a>
   *> \endhtmlonly 
   *
   *  Definition:
   *  ===========
   *
   *       SUBROUTINE DLADIV( A, B, C, D, P, Q )
   * 
   *       .. Scalar Arguments ..
   *       DOUBLE PRECISION   A, B, C, D, P, Q
   *       ..
   *  
   *
   *> \par Purpose:
   *  =============
   *>
   *> \verbatim
   *>
   *> DLADIV performs complex division in  real arithmetic
   *>
   *>                       a + i*b
   *>            p + i*q = ---------
   *>                       c + i*d
   *>
   *> The algorithm is due to Robert L. Smith and can be found
   *> in D. Knuth, The art of Computer Programming, Vol.2, p.195
   *> \endverbatim
   *
   *  Arguments:
   *  ==========
   *
   *> \param[in] A
   *> \verbatim
   *>          A is DOUBLE PRECISION
   *> \endverbatim
   *>
   *> \param[in] B
   *> \verbatim
   *>          B is DOUBLE PRECISION
   *> \endverbatim
   *>
   *> \param[in] C
   *> \verbatim
   *>          C is DOUBLE PRECISION
   *> \endverbatim
   *>
   *> \param[in] D
   *> \verbatim
   *>          D is DOUBLE PRECISION
   *>          The scalars a, b, c, and d in the above expression.
   *> \endverbatim
   *>
   *> \param[out] P
   *> \verbatim
   *>          P is DOUBLE PRECISION
   *> \endverbatim
   *>
   *> \param[out] Q
   *> \verbatim
   *>          Q is DOUBLE PRECISION
   *>          The scalars p and q in the above expression.
   *> \endverbatim
   *
   *  Authors:
   *  ========
   *
   *> \author Univ. of Tennessee 
   *> \author Univ. of California Berkeley 
   *> \author Univ. of Colorado Denver 
   *> \author NAG Ltd. 
   *
   *> \date November 2011
   *
   *> \ingroup auxOTHERauxiliary
   *
   *  =====================================================================
       SUBROUTINE DLADIV( A, B, C, D, P, Q )        SUBROUTINE DLADIV( A, B, C, D, P, Q )
 *  *
 *  -- LAPACK auxiliary routine (version 3.2) --  *  -- LAPACK auxiliary routine (version 3.4.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 2006  *     November 2011
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       DOUBLE PRECISION   A, B, C, D, P, Q        DOUBLE PRECISION   A, B, C, D, P, Q
 *     ..  *     ..
 *  *
 *  Purpose  
 *  =======  
 *  
 *  DLADIV performs complex division in  real arithmetic  
 *  
 *                        a + i*b  
 *             p + i*q = ---------  
 *                        c + i*d  
 *  
 *  The algorithm is due to Robert L. Smith and can be found  
 *  in D. Knuth, The art of Computer Programming, Vol.2, p.195  
 *  
 *  Arguments  
 *  =========  
 *  
 *  A       (input) DOUBLE PRECISION  
 *  B       (input) DOUBLE PRECISION  
 *  C       (input) DOUBLE PRECISION  
 *  D       (input) DOUBLE PRECISION  
 *          The scalars a, b, c, and d in the above expression.  
 *  
 *  P       (output) DOUBLE PRECISION  
 *  Q       (output) DOUBLE PRECISION  
 *          The scalars p and q in the above expression.  
 *  
 *  =====================================================================  *  =====================================================================
 *  *
 *     .. Local Scalars ..  *     .. Local Scalars ..

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


CVSweb interface <joel.bertrand@systella.fr>