Tensor.StackAlongDimension Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
StackAlongDimension<T>(Int32, ReadOnlySpan<Tensor<T>>) |
Joignez plusieurs Tensor<T> le long d’une nouvelle dimension. Le paramètre d’axe spécifie l’index de la nouvelle dimension. Tous les tenseurs doivent avoir la même forme. |
StackAlongDimension<T>(ReadOnlySpan<Tensor<T>>, TensorSpan<T>, Int32) |
Joignez plusieurs Tensor<T> le long d’une nouvelle dimension. Le paramètre d’axe spécifie l’index de la nouvelle dimension. Tous les tenseurs doivent avoir la même forme. |
StackAlongDimension<T>(Int32, ReadOnlySpan<Tensor<T>>)
- Source:
- TensorExtensions.cs
Joignez plusieurs Tensor<T> le long d’une nouvelle dimension. Le paramètre d’axe spécifie l’index de la nouvelle dimension. Tous les tenseurs doivent avoir la même forme.
public:
generic <typename T>
static System::Numerics::Tensors::Tensor<T> ^ StackAlongDimension(int dimension, ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> tensors);
public static System.Numerics.Tensors.Tensor<T> StackAlongDimension<T> (int dimension, scoped ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors);
static member StackAlongDimension : int * ReadOnlySpan<System.Numerics.Tensors.Tensor<'T>> -> System.Numerics.Tensors.Tensor<'T>
Public Function StackAlongDimension(Of T) (dimension As Integer, tensors As ReadOnlySpan(Of Tensor(Of T))) As Tensor(Of T)
Paramètres de type
- T
Paramètres
- dimension
- Int32
Index de l’emplacement où sera la nouvelle dimension.
- tensors
- ReadOnlySpan<Tensor<T>>
Entrée Tensor<T>.
Retours
S’applique à
StackAlongDimension<T>(ReadOnlySpan<Tensor<T>>, TensorSpan<T>, Int32)
- Source:
- TensorExtensions.cs
Joignez plusieurs Tensor<T> le long d’une nouvelle dimension. Le paramètre d’axe spécifie l’index de la nouvelle dimension. Tous les tenseurs doivent avoir la même forme.
public:
generic <typename T>
static System::Numerics::Tensors::TensorSpan<T> ^ StackAlongDimension(ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> tensors, System::Numerics::Tensors::TensorSpan<T> % destination, int dimension);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> StackAlongDimension<T> (scoped ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors, in System.Numerics.Tensors.TensorSpan<T> destination, int dimension);
static member StackAlongDimension : ReadOnlySpan<System.Numerics.Tensors.Tensor<'T>> * TensorSpan * int -> TensorSpan
Public Function StackAlongDimension(Of T) (tensors As ReadOnlySpan(Of Tensor(Of T)), ByRef destination As TensorSpan(Of T), dimension As Integer) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
- tensors
- ReadOnlySpan<Tensor<T>>
Entrée Tensor<T>.
- destination
- TensorSpan<T>
- dimension
- Int32
Index de l’emplacement où sera la nouvelle dimension.