Tensor.Stack 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Stack<T>(ReadOnlySpan<Tensor<T>>, TensorSpan<T>) |
沿位于位置 0 的新维度联接多个 Tensor<T>。 所有张量都必须具有相同的形状。 |
Stack<T>(ReadOnlySpan<Tensor<T>>) |
沿位于位置 0 的新维度联接多个 Tensor<T>。 所有张量都必须具有相同的形状。 |
Stack<T>(ReadOnlySpan<Tensor<T>>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
沿位于位置 0 的新维度联接多个 Tensor<T>。 所有张量都必须具有相同的形状。
public:
generic <typename T>
static System::Numerics::Tensors::TensorSpan<T> ^ Stack(ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> % tensors, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Stack<T> (scoped in ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors, in System.Numerics.Tensors.TensorSpan<T> destination);
static member Stack : ReadOnlySpan * TensorSpan -> TensorSpan
Public Function Stack(Of T) (ByRef tensors As ReadOnlySpan(Of Tensor(Of T)), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
类型参数
- T
参数
- tensors
- ReadOnlySpan<Tensor<T>>
输入 Tensor<T>。
- destination
- TensorSpan<T>
返回
适用于
Stack<T>(ReadOnlySpan<Tensor<T>>)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
沿位于位置 0 的新维度联接多个 Tensor<T>。 所有张量都必须具有相同的形状。
public:
generic <typename T>
static System::Numerics::Tensors::Tensor<T> ^ Stack(ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> tensors);
public static System.Numerics.Tensors.Tensor<T> Stack<T> (scoped ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors);
static member Stack : ReadOnlySpan<System.Numerics.Tensors.Tensor<'T>> -> System.Numerics.Tensors.Tensor<'T>
Public Function Stack(Of T) (tensors As ReadOnlySpan(Of Tensor(Of T))) As Tensor(Of T)
类型参数
- T
参数
- tensors
- ReadOnlySpan<Tensor<T>>
输入 Tensor<T>。