Method dot
static member dot: Tensor<'T> -> Tensor<'T> -> Tensor<'T>
Computes the (batched) matrix product, (batched) matrix-vector product or scalar product.
Declaration
static member dot: a:Tensor<'T> -> b:Tensor<'T> -> Tensor<'T>
Parameters
| Type | Name | Description |
|---|---|---|
| Tensor<'T> | a | The tensor on the left side of this binary operation. |
| Tensor<'T> | b | The tensor on the right side of this binary operation. |
Returns
| Type | Description |
|---|---|
| Tensor<'T> | A new tensor containing the result of this operation. |