cblas_dsyr2(_:_:_:_:_:_:_:_:_:_:)
Rank two update of a symmetric matrix using two vectors (single precision).
Declaration
func cblas_dsyr2(_ ORDER: CBLAS_ORDER, _ UPLO: CBLAS_UPLO, _ N: __LAPACK_int, _ ALPHA: Double, _ X: UnsafePointer<Double>?, _ INCX: __LAPACK_int, _ Y: UnsafePointer<Double>?, _ INCY: __LAPACK_int, _ A: UnsafeMutablePointer<Double>?, _ LDA: __LAPACK_int)Parameters
- ORDER:
Specifies row-major (C) or column-major (Fortran) data ordering.
- UPLO:
Specifies whether to use the upper or lower triangle from the matrix. Valid values are
'U'or'L'. - N:
Order of matrix
A; number of elements in vectorx. - ALPHA:
Scaling factor to multiply
xby. - X:
Vector
x. - INCX:
Stride within
X. For example, ifincXis 7, every 7th element is used. - Y:
Vector
y. - INCY:
Stride within
Y. For example, ifincYis 7, every 7th element is used. - A:
Matrix
A. - LDA:
Leading dimension of array containing matrix
A.
Discussion
Calculates A + alpha*x*y.
See Also
Double-precision float matrix functions
cblas_dasum(_:_:_:)cblas_daxpy(_:_:_:_:_:_:)cblas_dcopy(_:_:_:_:_:)cblas_dgbmv(_:_:_:_:_:_:_:_:_:_:_:_:_:_:)cblas_dgemm(_:_:_:_:_:_:_:_:_:_:_:_:_:_:)cblas_dgemv(_:_:_:_:_:_:_:_:_:_:_:_:)cblas_dger(_:_:_:_:_:_:_:_:_:_:)cblas_dnrm2(_:_:_:)cblas_drot(_:_:_:_:_:_:_:)cblas_drotg(_:_:_:_:)cblas_drotm(_:_:_:_:_:_:)cblas_drotmg(_:_:_:_:_:)cblas_dsbmv(_:_:_:_:_:_:_:_:_:_:_:_:)cblas_dscal(_:_:_:_:)cblas_dspmv(_:_:_:_:_:_:_:_:_:_:)