bundles / scipy latest / scipy / sparse / linalg / _interface / LinearOperator
class
scipy.sparse.linalg._interface:LinearOperator
Signature
class LinearOperator ( * args , ** kwargs ) Members
-
__add__ -
__call__ -
__init__ -
__matmul__ -
__mul__ -
__neg__ -
__pow__ -
__repr__ -
__rmatmul__ -
__rmul__ -
__sub__ -
__truediv__ -
_adjoint -
_init_dtype -
_matmat -
_matvec -
_rdot -
_rmatmat -
_rmatvec -
_transpose -
adjoint -
dot -
matmat -
matvec -
rmatmat -
rmatvec -
transpose
Summary
Common interface for performing matrix vector products
Extended Summary
Many iterative methods (e.g. cg, gmres) do not need to know the individual entries of a matrix to solve a linear system A@x = b. Such solvers only require the computation of matrix vector products, A@v where v is a dense vector. This class serves as an abstract interface between iterative solvers and matrix-like objects.
To construct a concrete LinearOperator, either pass appropriate callables to the constructor of this class, or subclass it.
A subclass must implement either one of the methods _matvec and _matmat, and the attributes/properties shape (pair of integers) and dtype (may be None). It may call the __init__ on this class to have these attributes validated. Implementing _matvec automatically implements _matmat (using a naive algorithm) and vice-versa.
Optionally, a subclass may implement _rmatvec or _adjoint to implement the Hermitian adjoint (conjugate transpose). As with _matvec and _matmat, implementing either _rmatvec or _adjoint implements the other automatically. Implementing _adjoint is preferable; _rmatvec is mostly there for backwards compatibility.
Parameters
shape: tupleMatrix dimensions
(M, N).matvec: callable f(v)Returns returns
A @ v.rmatvec: callable f(v)Returns
A^H @ v, whereA^His the conjugate transpose ofA.matmat: callable f(V)Returns
A @ V, whereVis a dense matrix with dimensions(N, K).dtype: dtypeData type of the matrix.
rmatmat: callable f(V)Returns
A^H @ V, whereVis a dense matrix with dimensions(M, K).
Attributes
args: tupleFor linear operators describing products etc. of other linear operators, the operands of the binary operation.
ndim: intNumber of dimensions (this is always 2)
Notes
The user-defined matvec function must properly handle the case where v has shape (N,) as well as the (N,1) case. The shape of the return type is handled internally by LinearOperator.
It is highly recommended to explicitly specify the dtype, otherwise it is determined automatically at the cost of a single matvec application on int8 zero vector using the promoted dtype of the output. Python int could be difficult to automatically cast to numpy integers in the definition of the matvec so the determination may be inaccurate. It is assumed that matmat, rmatvec, and rmatmat would result in the same dtype of the output given an int8 input as matvec.
LinearOperator instances can also be multiplied, added with each other and exponentiated, all lazily: the result of these operations is always a new, composite LinearOperator, that defers linear operations to the original operators and combines the results.
More details regarding how to subclass a LinearOperator and several examples of concrete LinearOperator instances can be found in the external project PyLops.
Examples
import numpy as np from scipy.sparse.linalg import LinearOperator def mv(v): return np.array([2*v[0], 3*v[1]]) A = LinearOperator((2,2), matvec=mv) A✓
A.matvec(np.ones(2)) A @ np.ones(2)✗
See also
- aslinearoperator
Construct LinearOperators
Aliases
-
scipy.linalg._decomp_interpolative.LinearOperator
Referenced by
This package
- release:0.13.0-notes
- release:1.4.0-notes
- release:1.5.0-notes
- tutorial:arpack
- scipy.linalg.interpolative
- scipy.linalg.interpolative:estimate_rank
- scipy.linalg.interpolative:estimate_spectral_norm
- scipy.linalg.interpolative:estimate_spectral_norm_diff
- scipy.linalg.interpolative:interp_decomp
- scipy.linalg.interpolative:svd
- scipy.optimize._lsq.least_squares:least_squares
- scipy.optimize._lsq.lsq_linear:lsq_linear
- scipy.optimize._numdiff:approx_derivative