Diff for /rpl/lapack/lapack/ztzrzf.f between versions 1.10 and 1.11

version 1.10, 2011/11/21 22:19:59 version 1.11, 2012/07/31 11:06:40
Line 116 Line 116
 *> \author Univ. of Colorado Denver   *> \author Univ. of Colorado Denver 
 *> \author NAG Ltd.   *> \author NAG Ltd. 
 *  *
 *> \date November 2011  *> \date April 2012
 *  *
 *> \ingroup complex16OTHERcomputational  *> \ingroup complex16OTHERcomputational
 *  *
Line 130 Line 130
 *>  *>
 *> \verbatim  *> \verbatim
 *>  *>
 *>  The factorization is obtained by Householder's method.  The kth  *>  The N-by-N matrix Z can be computed by
 *>  transformation matrix, Z( k ), which is used to introduce zeros into  
 *>  the ( m - k + 1 )th row of A, is given in the form  
 *>  *>
 *>     Z( k ) = ( I     0   ),  *>     Z =  Z(1)*Z(2)* ... *Z(M)
 *>              ( 0  T( k ) )  
 *>  *>
 *>  where  *>  where each N-by-N Z(k) is given by
 *>  *>
 *>     T( k ) = I - tau*u( k )*u( k )**H,   u( k ) = (   1    ),  *>     Z(k) = I - tau(k)*v(k)*v(k)**H
 *>                                                 (   0    )  
 *>                                                 ( z( k ) )  
 *>  *>
 *>  tau is a scalar and z( k ) is an ( n - m ) element vector.  *>  with v(k) is the kth row vector of the M-by-N matrix
 *>  tau and z( k ) are chosen to annihilate the elements of the kth row  
 *>  of X.  
 *>  *>
 *>  The scalar tau is returned in the kth element of TAU and the vector  *>     V = ( I   A(:,M+1:N) )
 *>  u( k ) in the kth row of A, such that the elements of z( k ) are  
 *>  in  a( k, m + 1 ), ..., a( k, n ). The elements of R are returned in  
 *>  the upper triangular part of A.  
 *>  *>
 *>  Z is given by  *>  I is the M-by-M identity matrix, A(:,M+1:N) 
   *>  is the output stored in A on exit from DTZRZF,
   *>  and tau(k) is the kth element of the array TAU.
 *>  *>
 *>     Z =  Z( 1 ) * Z( 2 ) * ... * Z( m ).  
 *> \endverbatim  *> \endverbatim
 *>  *>
 *  =====================================================================  *  =====================================================================
       SUBROUTINE ZTZRZF( M, N, A, LDA, TAU, WORK, LWORK, INFO )        SUBROUTINE ZTZRZF( M, N, A, LDA, TAU, WORK, LWORK, 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, LWORK, M, N        INTEGER            INFO, LDA, LWORK, M, N

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


CVSweb interface <joel.bertrand@systella.fr>