Contents

cblas_dsdot(_:_:_:_:_:)

Computes the double-precision dot product of a pair of single-precision vectors.

Declaration

func cblas_dsdot(_ N: __LAPACK_int, _ X: UnsafePointer<Float>?, _ INCX: __LAPACK_int, _ Y: UnsafePointer<Float>?, _ INCY: __LAPACK_int) -> Double

Parameters

  • N:

    The number of elements in the vectors.

  • 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.

Discussion

See Also

CATLAS and CBLAS vector functions