用法
matvec(
x, adjoint=False, name='matvec'
)
參數
-
x
Tensor
形狀兼容,dtype
與self
相同。x
被視為 [batch] 向量,意思是每組前導維度,最後一個維度定義一個向量。有關兼容性的定義,請參見類文檔字符串。 -
adjoint
Pythonbool
。如果True
,左乘伴隨:A^H x
。 -
name
此Op
的名稱。
返回
-
形狀為
[..., M]
的Tensor
和與self
相同的dtype
。
用左乘法變換 [batch] 向量x
:x --> Ax
。
# Make an operator acting like batch matrix A. Assume A.shape = [..., M, N]
operator = LinearOperator(...)
X = ... # shape [..., N], batch vector
Y = operator.matvec(X)
Y.shape
==> [..., M]
Y[...,:] = sum_j A[...,:, j] X[..., j]
相關用法
- Python tf.linalg.LinearOperatorInversion.matmul用法及代碼示例
- Python tf.linalg.LinearOperatorInversion.solve用法及代碼示例
- Python tf.linalg.LinearOperatorInversion.diag_part用法及代碼示例
- Python tf.linalg.LinearOperatorInversion.solvevec用法及代碼示例
- Python tf.linalg.LinearOperatorInversion.assert_non_singular用法及代碼示例
- Python tf.linalg.LinearOperatorInversion用法及代碼示例
- Python tf.linalg.LinearOperatorIdentity.solvevec用法及代碼示例
- Python tf.linalg.LinearOperatorIdentity.diag_part用法及代碼示例
- Python tf.linalg.LinearOperatorIdentity.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorIdentity.solve用法及代碼示例
- Python tf.linalg.LinearOperatorIdentity用法及代碼示例
- Python tf.linalg.LinearOperatorIdentity.matmul用法及代碼示例
- Python tf.linalg.LinearOperatorIdentity.assert_non_singular用法及代碼示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.linalg.LinearOperatorInversion.matvec。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。