cblas_srot(_:_:_:_:_:_:_:)
Applies a Givens rotation matrix to a pair of vectors.
Declaration
func cblas_srot(_ N: __LAPACK_int, _ X: UnsafeMutablePointer<Float>?, _ INCX: __LAPACK_int, _ Y: UnsafeMutablePointer<Float>?, _ INCY: __LAPACK_int, _ C: Float, _ S: Float)Parameters
- N:
The number of elements in vectors
XandY. - X:
Vector
X. Modified on return. - INCX:
Stride within
X. For example, ifincXis 7, every 7th element is used. - Y:
Vector
Y. Modified on return. - INCY:
Stride within
Y. For example, ifincYis 7, every 7th element is used. - C:
The value
cos(θ)in the Givens rotation matrix. - S:
The value
sin(θ)in the Givens rotation matrix.
Discussion
See Also
Single-precision float matrix functions
cblas_sasum(_:_:_:)cblas_saxpy(_:_:_:_:_:_:)cblas_scopy(_:_:_:_:_:)cblas_sgbmv(_:_:_:_:_:_:_:_:_:_:_:_:_:_:)cblas_sgemm(_:_:_:_:_:_:_:_:_:_:_:_:_:_:)cblas_sgemv(_:_:_:_:_:_:_:_:_:_:_:_:)cblas_sger(_:_:_:_:_:_:_:_:_:_:)cblas_snrm2(_:_:_:)cblas_srotg(_:_:_:_:)cblas_srotm(_:_:_:_:_:_:)cblas_srotmg(_:_:_:_:_:)cblas_ssbmv(_:_:_:_:_:_:_:_:_:_:_:_:)cblas_sscal(_:_:_:_:)cblas_sspmv(_:_:_:_:_:_:_:_:_:_:)cblas_sspr(_:_:_:_:_:_:_:)