Tensor.Concatenate 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
Concatenate<T>(ReadOnlySpan<Tensor<T>>, TensorSpan<T>) |
Joignez une séquence de tenseurs le long d’un axe existant. |
Concatenate<T>(ReadOnlySpan<Tensor<T>>) |
Joignez une séquence de tenseurs le long d’un axe existant. |
Concatenate<T>(ReadOnlySpan<Tensor<T>>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
Joignez une séquence de tenseurs le long d’un axe existant.
public:
generic <typename T>
static System::Numerics::Tensors::TensorSpan<T> ^ Concatenate(ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> tensors, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Concatenate<T> (scoped ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors, in System.Numerics.Tensors.TensorSpan<T> destination);
static member Concatenate : ReadOnlySpan<System.Numerics.Tensors.Tensor<'T>> * TensorSpan -> TensorSpan
Public Function Concatenate(Of T) (tensors As ReadOnlySpan(Of Tensor(Of T)), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
- tensors
- ReadOnlySpan<Tensor<T>>
Les tenseurs doivent avoir la même forme, sauf dans la dimension correspondant à l’axe (la première, par défaut).
- destination
- TensorSpan<T>
Retours
S’applique à
Concatenate<T>(ReadOnlySpan<Tensor<T>>)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
Joignez une séquence de tenseurs le long d’un axe existant.
public:
generic <typename T>
static System::Numerics::Tensors::Tensor<T> ^ Concatenate(ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> tensors);
public static System.Numerics.Tensors.Tensor<T> Concatenate<T> (scoped ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors);
static member Concatenate : ReadOnlySpan<System.Numerics.Tensors.Tensor<'T>> -> System.Numerics.Tensors.Tensor<'T>
Public Function Concatenate(Of T) (tensors As ReadOnlySpan(Of Tensor(Of T))) As Tensor(Of T)
Paramètres de type
- T
Paramètres
- tensors
- ReadOnlySpan<Tensor<T>>
Les tenseurs doivent avoir la même forme, sauf dans la dimension correspondant à l’axe (la première, par défaut).