Contents

cblas_sdsdot(_:_:_:_:_:_:)

Computes the dot product of two single-precision vectors plus an initial single-precision value.

Declaration

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

Parameters

  • N:

    The number of elements in the vectors.

  • ALPHA:

    The initial value to add to the dot product.

  • 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