Contents

cblas_scopy(_:_:_:_:_:)

Copies a vector to another vector (single-precision).

Declaration

func cblas_scopy(_ N: __LAPACK_int, _ X: UnsafePointer<Float>?, _ INCX: __LAPACK_int, _ Y: UnsafeMutablePointer<Float>?, _ 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

Single-precision float matrix functions