Contents

cblas_zcopy(_:_:_:_:_:)

Copies a vector to another vector (double-precision complex).

Declaration

func cblas_zcopy(_ N: __LAPACK_int, _ X: OpaquePointer?, _ INCX: __LAPACK_int, _ Y: OpaquePointer?, _ INCY: __LAPACK_int)

Parameters

  • N:

    Number of elements in the vectors.

  • X:

    Source vector X.

  • INCX:

    Stride within X. For example, if incX is 7, every 7th element is used.

  • Y:

    Destination vector Y.

  • INCY:

    Stride within Y. For example, if incY is 7, every 7th element is used.

Discussion

See Also

Double-precision complex matrix functions