用法
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.LinearOperatorCirculant3D.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant3D.diag_part用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant3D.solvevec用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant3D.assert_non_singular用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant3D.solve用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant3D用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant2D.solve用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant2D.assert_non_singular用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant2D.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant.diag_part用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant.assert_non_singular用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant2D用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant.solve用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant.solvevec用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant2D.matmul用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant2D.solvevec用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant2D.diag_part用法及代碼示例
- Python tf.linalg.LinearOperatorCirculant.matmul用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.linalg.LinearOperatorCirculant3D.matmul。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。