Method MatMul
MatMul(TensorShape)
Creates a TensorShape that results from performing a matrix multiplication between this and other with numpy-style broadcasting. For example, if this is (5, 2, 3), and other is (1, 3, 4), the method returns (5, 2, 4).
Declaration
public TensorShape MatMul(TensorShape other)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorShape | other | The right hand tensor shape for the MatMul. |
Returns
| Type | Description |
|---|---|
| TensorShape | The resultant tensor shape. |