Contents

cblas_zdotc_sub(_:_:_:_:_:_:)

Calculates the dot product of the complex conjugate of a double-precision complex vector with a second double-precision complex vector.

Declaration

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

Parameters

  • N:

    Number of elements in vectors X and Y.

  • X:

    Vector X.

  • INCX:

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

  • Y:

    Vector Y.

  • INCY:

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

  • DOTC:

    The result vector.

Discussion

Computes conjg(X) * Y.

See Also

CATLAS and CBLAS vector functions