Tensor.Negate 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
Negate<T>(ReadOnlyTensorSpan<T>) |
Calcola la negazione per elemento di ogni numero nel tensore specificato. |
Negate<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Calcola la negazione per elemento di ogni numero nel tensore specificato. |
Negate<T>(ReadOnlyTensorSpan<T>)
- Origine:
- TensorExtensions.cs
- Origine:
- TensorExtensions.cs
Calcola la negazione per elemento di ogni numero nel tensore specificato.
public:
generic <typename T>
where T : System::Numerics::IUnaryNegationOperators<T, T> static System::Numerics::Tensors::Tensor<T> ^ Negate(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> Negate<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.IUnaryNegationOperators<T,T>;
static member Negate : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IUnaryNegationOperators<'T, 'T>)> (requires 'T :> System.Numerics.IUnaryNegationOperators<'T, 'T>)
Public Function Negate(Of T As IUnaryNegationOperators(Of T, T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Parametri di tipo
- T
Parametri
Restituisce
Si applica a
Negate<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Origine:
- TensorExtensions.cs
- Origine:
- TensorExtensions.cs
Calcola la negazione per elemento di ogni numero nel tensore specificato.
public:
generic <typename T>
where T : System::Numerics::IUnaryNegationOperators<T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Negate(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Negate<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IUnaryNegationOperators<T,T>;
static member Negate : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IUnaryNegationOperators<'T, 'T>)
Public Function Negate(Of T As IUnaryNegationOperators(Of T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Parametri di tipo
- T
Parametri
- destination
- TensorSpan<T>
Restituisce
Si applica a
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.