This is documentation for an old release of SciPy (version 0.17.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.linalg.blas.dsyr¶
- scipy.linalg.blas.dsyr(alpha, x[, lower, incx, offx, n, a, overwrite_a]) = <fortran object>¶
Wrapper for dsyr.
Parameters: alpha : input float
x : input rank-1 array(‘d’) with bounds (*)
Returns: a : rank-2 array(‘d’) with bounds (n,n)
Other Parameters: lower : input int, optional
Default: 0
incx : input int, optional
Default: 1
offx : input int, optional
Default: 0
n : input int, optional
Default: (len(x)-1-offx)/abs(incx)+1
a : input rank-2 array(‘d’) with bounds (n,n)
overwrite_a : input int, optional
Default: 0