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.dger¶
- scipy.linalg.blas.dger = <fortran object>¶
- dger - Function signature:
- a = dger(alpha,x,y,[incx,incy,a,overwrite_x,overwrite_y,overwrite_a])
- Required arguments:
- alpha : input float x : input rank-1 array(‘d’) with bounds (m) y : input rank-1 array(‘d’) with bounds (n)
- Optional arguments:
- overwrite_x := 1 input int incx := 1 input int overwrite_y := 1 input int incy := 1 input int a := 0.0 input rank-2 array(‘d’) with bounds (m,n) overwrite_a := 0 input int
- Return objects:
- a : rank-2 array(‘d’) with bounds (m,n)