LAPACK
3.4.2
LAPACK: Linear Algebra PACKage
|
Go to the source code of this file.
Functions/Subroutines | |
subroutine | zlacrt (N, CX, INCX, CY, INCY, C, S) |
ZLACRT performs a linear transformation of a pair of complex vectors. |
subroutine zlacrt | ( | integer | N, |
complex*16, dimension( * ) | CX, | ||
integer | INCX, | ||
complex*16, dimension( * ) | CY, | ||
integer | INCY, | ||
complex*16 | C, | ||
complex*16 | S | ||
) |
ZLACRT performs a linear transformation of a pair of complex vectors.
Download ZLACRT + dependencies [TGZ] [ZIP] [TXT]ZLACRT performs the operation ( c s )( x ) ==> ( x ) ( -s c )( y ) ( y ) where c and s are complex and the vectors x and y are complex.
[in] | N | N is INTEGER The number of elements in the vectors CX and CY. |
[in,out] | CX | CX is COMPLEX*16 array, dimension (N) On input, the vector x. On output, CX is overwritten with c*x + s*y. |
[in] | INCX | INCX is INTEGER The increment between successive values of CX. INCX <> 0. |
[in,out] | CY | CY is COMPLEX*16 array, dimension (N) On input, the vector y. On output, CY is overwritten with -s*x + c*y. |
[in] | INCY | INCY is INTEGER The increment between successive values of CY. INCY <> 0. |
[in] | C | C is COMPLEX*16 |
[in] | S | S is COMPLEX*16 C and S define the matrix [ C S ]. [ -S C ] |