1ZLACGV(1) LAPACK auxiliary routine (version 3.2) ZLACGV(1)
2
3
4
6 ZLACGV - conjugates a complex vector of length N
7
9 SUBROUTINE ZLACGV( N, X, INCX )
10
11 INTEGER INCX, N
12
13 COMPLEX*16 X( * )
14
16 ZLACGV 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*16 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 ZLACGV(1)