Contents

cblas_csscal(_:_:_:_:)

Multiplies each element of a vector by a constant (single-precision complex).

Declaration

func cblas_csscal(_ N: __LAPACK_int, _ ALPHA: Float, _ X: OpaquePointer?, _ INCX: __LAPACK_int)

Parameters

  • N:

    The number of elements in vector x.

  • ALPHA:

    The constant scaling factor.

  • X:

    Vector X.

  • INCX:

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

Discussion

See Also

Single-precision complex matrix functions