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.zgemv¶
- scipy.linalg.blas.zgemv = <fortran object>¶
- zgemv - Function signature:
- y = zgemv(alpha,a,x,[beta,y,offx,incx,offy,incy,trans,overwrite_y])
- Required arguments:
- alpha : input complex a : input rank-2 array(‘D’) with bounds (m,n) x : input rank-1 array(‘D’) with bounds (*)
- Optional arguments:
- beta := (0.0, 0.0) input complex 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 trans := 0 input int
- Return objects:
- y : rank-1 array(‘D’) with bounds (ly)