Partager via


Tensor.ConcatenateOnDimension Méthode

Définition

Surcharges

ConcatenateOnDimension<T>(Int32, ReadOnlySpan<Tensor<T>>)

Joignez une séquence de tenseurs le long d’un axe existant.

ConcatenateOnDimension<T>(Int32, ReadOnlySpan<Tensor<T>>, TensorSpan<T>)

Joignez une séquence de tenseurs le long d’un axe existant.

ConcatenateOnDimension<T>(Int32, ReadOnlySpan<Tensor<T>>)

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> ^ ConcatenateOnDimension(int dimension, ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> tensors);
public static System.Numerics.Tensors.Tensor<T> ConcatenateOnDimension<T> (int dimension, scoped ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors);
static member ConcatenateOnDimension : int * ReadOnlySpan<System.Numerics.Tensors.Tensor<'T>> -> System.Numerics.Tensors.Tensor<'T>
Public Function ConcatenateOnDimension(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

Axe le long duquel les tenseurs seront joints. Si l’axe est -1, les tableaux sont aplatir avant l’utilisation. La valeur par défaut est 0.

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).

Retours

S’applique à

ConcatenateOnDimension<T>(Int32, ReadOnlySpan<Tensor<T>>, TensorSpan<T>)

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> ^ ConcatenateOnDimension(int dimension, ReadOnlySpan<System::Numerics::Tensors::Tensor<T> ^> tensors, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> ConcatenateOnDimension<T> (int dimension, scoped ReadOnlySpan<System.Numerics.Tensors.Tensor<T>> tensors, in System.Numerics.Tensors.TensorSpan<T> destination);
static member ConcatenateOnDimension : int * ReadOnlySpan<System.Numerics.Tensors.Tensor<'T>> * TensorSpan -> TensorSpan
Public Function ConcatenateOnDimension(Of T) (dimension As Integer, tensors As ReadOnlySpan(Of Tensor(Of T)), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

Paramètres de type

T

Paramètres

dimension
Int32

Axe le long duquel les tenseurs seront joints. Si l’axe est -1, les tableaux sont aplatir avant l’utilisation. La valeur par défaut est 0.

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 à