1CLACGV(1) LAPACK auxiliary routine (version 3.1) CLACGV(1)
2
3
4
6 CLACGV - a complex vector of length N
7
9 SUBROUTINE CLACGV( N, X, INCX )
10
11 INTEGER INCX, N
12
13 COMPLEX X( * )
14
16 CLACGV conjugates a complex vector of length N.
17
18
20 N (input) INTEGER
21 The length of the vector X. N >= 0.
22
23 X (input/output) COMPLEX array, dimension
24 (1+(N-1)*abs(INCX)) On entry, the vector of length N to be con‐
25 jugated. On exit, X is overwritten with conjg(X).
26
27 INCX (input) INTEGER
28 The spacing between successive elements of X.
29
30
31
32 LAPACK auxiliary routine (versionNo3v.e1m)ber 2006 CLACGV(1)