1CLACGV(1) LAPACK auxiliary routine (version 3.2) CLACGV(1)
2
3
4
6 CLACGV - conjugates 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
19 N (input) INTEGER
20 The length of the vector X. N >= 0.
21
22 X (input/output) COMPLEX array, dimension
23 (1+(N-1)*abs(INCX)) On entry, the vector of length N to be con‐
24 jugated. On exit, X is overwritten with conjg(X).
25
26 INCX (input) INTEGER
27 The spacing between successive elements of X.
28
29
30
31 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008 CLACGV(1)