lacgv#

Functions

void clacgv(
    const INT           n,
          c64* restrict X,
    const INT           incx
);
void clacgv(const INT n, c64 *restrict X, const INT incx)#

CLACGV conjugates a complex vector of length N.

Parameters

in
n

The length of the vector X. n >= 0.

inout
X

Single complex array, dimension (1+(n-1)*abs(incx)). On entry, the vector of length n to be conjugated. On exit, X is overwritten with conjg(X).

in
incx

The spacing between successive elements of X.

Functions

void zlacgv(
    const INT            n,
          c128* restrict X,
    const INT            incx
);
void zlacgv(const INT n, c128 *restrict X, const INT incx)#

ZLACGV conjugates a complex vector of length N.

Parameters

in
n

The length of the vector X. n >= 0.

inout
X

Double complex array, dimension (1+(n-1)*abs(incx)). On entry, the vector of length n to be conjugated. On exit, X is overwritten with conjg(X).

in
incx

The spacing between successive elements of X.