Tensor.Unsqueeze Metodo

Definizione

Overload

Unsqueeze<T>(Tensor<T>, Int32)

Inserire una nuova dimensione di lunghezza 1 che verrà visualizzata nella posizione della dimensione.

Unsqueeze<T>(TensorSpan<T>, Int32)

Inserire una nuova dimensione di lunghezza 1 che verrà visualizzata nella posizione della dimensione.

Unsqueeze<T>(ReadOnlyTensorSpan<T>, Int32)

Inserire una nuova dimensione di lunghezza 1 che verrà visualizzata nella posizione della dimensione.

Unsqueeze<T>(Tensor<T>, Int32)

Origine:
TensorExtensions.cs

Inserire una nuova dimensione di lunghezza 1 che verrà visualizzata nella posizione della dimensione.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Tensors::Tensor<T> ^ Unsqueeze(System::Numerics::Tensors::Tensor<T> ^ tensor, int dimension);
public static System.Numerics.Tensors.Tensor<T> Unsqueeze<T> (this System.Numerics.Tensors.Tensor<T> tensor, int dimension);
static member Unsqueeze : System.Numerics.Tensors.Tensor<'T> * int -> System.Numerics.Tensors.Tensor<'T>
<Extension()>
Public Function Unsqueeze(Of T) (tensor As Tensor(Of T), dimension As Integer) As Tensor(Of T)

Parametri di tipo

T

Parametri

tensor
Tensor<T>

Il Tensor<T> per aggiungere una dimensione di lunghezza 1.

dimension
Int32

Indice della dimensione da aggiungere.

Restituisce

Si applica a

Unsqueeze<T>(TensorSpan<T>, Int32)

Origine:
TensorExtensions.cs

Inserire una nuova dimensione di lunghezza 1 che verrà visualizzata nella posizione della dimensione.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Tensors::TensorSpan<T> Unsqueeze(System::Numerics::Tensors::TensorSpan<T> % tensor, int dimension);
public static System.Numerics.Tensors.TensorSpan<T> Unsqueeze<T> (this in System.Numerics.Tensors.TensorSpan<T> tensor, int dimension);
static member Unsqueeze : TensorSpan * int -> System.Numerics.Tensors.TensorSpan<'T>
<Extension()>
Public Function Unsqueeze(Of T) (ByRef tensor As TensorSpan(Of T), dimension As Integer) As TensorSpan(Of T)

Parametri di tipo

T

Parametri

tensor
TensorSpan<T>

Il TensorSpan<T> per aggiungere una dimensione di lunghezza 1.

dimension
Int32

Indice della dimensione da aggiungere.

Restituisce

Si applica a

Unsqueeze<T>(ReadOnlyTensorSpan<T>, Int32)

Origine:
TensorExtensions.cs

Inserire una nuova dimensione di lunghezza 1 che verrà visualizzata nella posizione della dimensione.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Tensors::ReadOnlyTensorSpan<T> Unsqueeze(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % tensor, int dimension);
public static System.Numerics.Tensors.ReadOnlyTensorSpan<T> Unsqueeze<T> (this in System.Numerics.Tensors.ReadOnlyTensorSpan<T> tensor, int dimension);
static member Unsqueeze : ReadOnlyTensorSpan * int -> System.Numerics.Tensors.ReadOnlyTensorSpan<'T>
<Extension()>
Public Function Unsqueeze(Of T) (ByRef tensor As ReadOnlyTensorSpan(Of T), dimension As Integer) As ReadOnlyTensorSpan(Of T)

Parametri di tipo

T

Parametri

tensor
ReadOnlyTensorSpan<T>

Il ReadOnlyTensorSpan<T> per aggiungere una dimensione di lunghezza 1.

dimension
Int32

Indice della dimensione da aggiungere.

Restituisce

Si applica a