Tensor.Increment 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
| Nome | Descrizione |
|---|---|
| Increment<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Esegue un incremento su un tensore. |
| Increment<T>(ReadOnlyTensorSpan<T>) |
Esegue un incremento su un tensore. |
Increment<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Origine:
- Tensor.op_Increment.cs
- Origine:
- Tensor.op_Increment.cs
Esegue un incremento su un tensore.
public:
generic <typename T>
where T : System::Numerics::IIncrementOperators<T> static System::Numerics::Tensors::TensorSpan<T> ^ Increment(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Increment<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IIncrementOperators<T>;
static member Increment : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IIncrementOperators<'T>)
Public Function Increment(Of T As IIncrementOperators(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Parametri di tipo
- T
Tipo degli elementi nel tensore.
Parametri
Tensore da incrementare.
- destination
- TensorSpan<T>
Destinazione in cui viene scritto il risultato di ++x .
Valori restituiti
Riferimento a destination.
Eccezioni
Le forme di x e destination non sono compatibili.
Si applica a
Increment<T>(ReadOnlyTensorSpan<T>)
- Origine:
- Tensor.op_Increment.cs
- Origine:
- Tensor.op_Increment.cs
Esegue un incremento su un tensore.
public:
generic <typename T>
where T : System::Numerics::IIncrementOperators<T> static System::Numerics::Tensors::Tensor<T> ^ Increment(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> Increment<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.IIncrementOperators<T>;
static member Increment : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IIncrementOperators<'T>)> (requires 'T :> System.Numerics.IIncrementOperators<'T>)
Public Function Increment(Of T As IIncrementOperators(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Parametri di tipo
- T
Tipo degli elementi nel tensore.
Parametri
Tensore da incrementare.
Valori restituiti
Nuovo tensore contenente il risultato di ++x.