This is documentation for an old release of SciPy (version 0.10.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Matrix-vector multiplication
Performs the operation y=A*x where A is an MxN linear operator and x is a column vector or rank-1 array.
Parameters : | x : {matrix, ndarray}
|
---|---|
Returns : | y : {matrix, ndarray}
|
Notes
This matvec wraps the user-specified matvec routine to ensure that y has the correct shape and type.