Method Concat
Concat(Tensor[], int)
Calculates an output tensor by concatenating the input tensors along a given axis.
Declaration
public Tensor Concat(Tensor[] tensors, int axis)
Parameters
Type | Name | Description |
---|---|---|
Tensor[] | tensors | The input tensors. |
int | axis | The axis along which to concatenate the input tensors. |
Returns
Type | Description |
---|---|
Tensor | The computed output tensor. |