version 1.13, 2016/08/27 15:37:52
|
version 1.15, 2018/05/29 06:55:13
|
Line 2
|
Line 2
|
* |
* |
* =========== 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/ |
* |
* |
* Definition: |
* Definition: |
* =========== |
* =========== |
* |
* |
* SUBROUTINE DROTM(N,DX,INCX,DY,INCY,DPARAM) |
* SUBROUTINE DROTM(N,DX,INCX,DY,INCY,DPARAM) |
* |
* |
* .. Scalar Arguments .. |
* .. Scalar Arguments .. |
* INTEGER INCX,INCY,N |
* INTEGER INCX,INCY,N |
* .. |
* .. |
* .. Array Arguments .. |
* .. Array Arguments .. |
* DOUBLE PRECISION DPARAM(5),DX(*),DY(*) |
* DOUBLE PRECISION DPARAM(5),DX(*),DY(*) |
* .. |
* .. |
* |
* |
* |
* |
*> \par Purpose: |
*> \par Purpose: |
* ============= |
* ============= |
Line 51
|
Line 51
|
*> |
*> |
*> \param[in,out] DX |
*> \param[in,out] DX |
*> \verbatim |
*> \verbatim |
*> DX is DOUBLE PRECISION array, dimension N |
*> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) |
*> double precision vector with N elements |
|
*> \endverbatim |
*> \endverbatim |
*> |
*> |
*> \param[in] INCX |
*> \param[in] INCX |
Line 63
|
Line 62
|
*> |
*> |
*> \param[in,out] DY |
*> \param[in,out] DY |
*> \verbatim |
*> \verbatim |
*> DY is DOUBLE PRECISION array, dimension N |
*> DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) ) |
*> double precision vector with N elements |
|
*> \endverbatim |
*> \endverbatim |
*> |
*> |
*> \param[in] INCY |
*> \param[in] INCY |
Line 73
|
Line 71
|
*> storage spacing between elements of DY |
*> storage spacing between elements of DY |
*> \endverbatim |
*> \endverbatim |
*> |
*> |
*> \param[in,out] DPARAM |
*> \param[in] DPARAM |
*> \verbatim |
*> \verbatim |
*> DPARAM is DOUBLE PRECISION array, dimension 5 |
*> DPARAM is DOUBLE PRECISION array, dimension (5) |
*> DPARAM(1)=DFLAG |
*> DPARAM(1)=DFLAG |
*> DPARAM(2)=DH11 |
*> DPARAM(2)=DH11 |
*> DPARAM(3)=DH21 |
*> DPARAM(3)=DH21 |
Line 86
|
Line 84
|
* 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 November 2017 |
* |
* |
*> \ingroup double_blas_level1 |
*> \ingroup double_blas_level1 |
* |
* |
* ===================================================================== |
* ===================================================================== |
SUBROUTINE DROTM(N,DX,INCX,DY,INCY,DPARAM) |
SUBROUTINE DROTM(N,DX,INCX,DY,INCY,DPARAM) |
* |
* |
* -- Reference BLAS level1 routine (version 3.4.0) -- |
* -- Reference BLAS level1 routine (version 3.8.0) -- |
* -- Reference BLAS is a software package provided by Univ. of Tennessee, -- |
* -- Reference BLAS 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 |
* November 2017 |
* |
* |
* .. Scalar Arguments .. |
* .. Scalar Arguments .. |
INTEGER INCX,INCY,N |
INTEGER INCX,INCY,N |