This is documentation for an old release of SciPy (version 0.17.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.linalg.blas.dsymv¶
- scipy.linalg.blas.dsymv = <fortran object>¶
- dsymv - Function signature:
- y = dsymv(alpha,a,x,[beta,y,offx,incx,offy,incy,lower,overwrite_y])
- Required arguments:
- alpha : input float a : input rank-2 array(‘d’) with bounds (n,n) x : input rank-1 array(‘d’) with bounds (*)
- Optional arguments:
- beta := 0.0 input float y : input rank-1 array(‘d’) with bounds (ly) overwrite_y := 0 input int offx := 0 input int incx := 1 input int offy := 0 input int incy := 1 input int lower := 0 input int
- Return objects:
- y : rank-1 array(‘d’) with bounds (ly)