Tensor.Unsqueeze Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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
- 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.