Contents

cblas_cdotu_sub(_:_:_:_:_:_:)

Computes the dot product of two single-precision complex vectors.

Declaration

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

Parameters

  • N:

    The length of 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.

  • DOTU:

    The result vector.

Discussion

See Also

CATLAS and CBLAS vector functions