1CLACRT(1) LAPACK auxiliary routine (version 3.2) CLACRT(1)
2
3
4
6 CLACRT - performs the operation ( c s )( x ) ==> ( x ) ( -s c )( y )
7 ( y ) where c and s are complex and the vectors x and y are complex
8
10 SUBROUTINE CLACRT( N, CX, INCX, CY, INCY, C, S )
11
12 INTEGER INCX, INCY, N
13
14 COMPLEX C, S
15
16 COMPLEX CX( * ), CY( * )
17
19 CLACRT performs the operation
20
22 N (input) INTEGER
23 The number of elements in the vectors CX and CY.
24
25 CX (input/output) COMPLEX array, dimension (N)
26 On input, the vector x. On output, CX is overwritten with c*x
27 + s*y.
28
29 INCX (input) INTEGER
30 The increment between successive values of CX. INCX <> 0.
31
32 CY (input/output) COMPLEX array, dimension (N)
33 On input, the vector y. On output, CY is overwritten with -s*x
34 + c*y.
35
36 INCY (input) INTEGER
37 The increment between successive values of CY. INCY <> 0.
38
39 C (input) COMPLEX
40 S (input) COMPLEX C and S define the matrix [ C S ].
41 [ -S C ]
42
43
44
45 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008 CLACRT(1)