Developer Reference for Intel® oneAPI Math Kernel Library for Fortran

ID 766686
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

?lacgv

Conjugates a complex vector.

Syntax

call clacgv( n, x, incx )

call zlacgv( n, x, incx )

Include Files
  • mkl.fi
Description

The routine conjugates a complex vector x of length n and increment incx (see "Vector Arguments in BLAS" in Appendix B).

Input Parameters

The data types are given for the Fortran interface.

n

INTEGER. The length of the vector x (n 0).

x

COMPLEX for clacgv

DOUBLE COMPLEX for zlacgv.

Array, dimension (1+(n-1)* |incx|).

Contains the vector of length n to be conjugated.

incx

INTEGER. The spacing between successive elements of x.

Output Parameters
x

On exit, overwritten with conjg(x).