scipy.sparse.linalg.LinearOperator.
matmat
-
LinearOperator.matmat(X)[源代码]
矩阵-矩阵乘法。
执行操作 y=A@X,其中 A 是 MxN 线性算子,而 X 是 N*K 稠密矩阵或 ndarray。
- 参数:
- X{矩阵, ndarray}
形状为 (N,K) 的数组。
- 返回:
- Y{矩阵, ndarray}
一个形状为 (M,K) 的矩阵或 ndarray,具体取决于 X 参数的类型。
注释
此 matmat 封装了任何用户指定的 matmat 例程或重写的 _matmat 方法,以确保 y 具有正确的类型。