用法
matmul(
x, adjoint=False, adjoint_arg=False, name='matmul'
)
参数
-
x
LinearOperator
或Tensor
具有兼容的形状,并且dtype
与self
相同。有关兼容性的定义,请参见类文档字符串。 -
adjoint
Pythonbool
。如果True
,左乘伴随:A^H x
。 -
adjoint_arg
Pythonbool
。如果True
,计算A x^H
其中x^H
是厄米转置(转置和复共轭)。 -
name
此Op
的名称。
返回
-
LinearOperator
或Tensor
形状为[..., M, R]
且dtype
与self
相同。
用左乘法变换 [batch] 矩阵x
:x --> Ax
。
# Make an operator acting like batch matrix A. Assume A.shape = [..., M, N]
operator = LinearOperator(...)
operator.shape = [..., M, N]
X = ... # shape [..., N, R], batch matrix, R > 0.
Y = operator.matmul(X)
Y.shape
==> [..., M, R]
Y[...,:, r] = sum_j A[...,:, j] X[j, r]
相关用法
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.assert_non_singular用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.diag_part用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.solve用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.linalg.LinearOperatorIdentity.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorPermutation.solve用法及代码示例
- Python tf.linalg.LinearOperatorKronecker.diag_part用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.matvec用法及代码示例
- Python tf.linalg.LinearOperatorBlockLowerTriangular.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorLowerTriangular.matvec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.solve用法及代码示例
- Python tf.linalg.LinearOperatorCirculant3D.diag_part用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.assert_non_singular用法及代码示例
- Python tf.linalg.LinearOperatorPermutation.diag_part用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.matvec用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.linalg.LinearOperatorFullMatrix.matmul。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。