Tensor.Negate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Negate<T>(ReadOnlyTensorSpan<T>) |
Computes the element-wise negation of each number in the specified tensor. |
Negate<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Computes the element-wise negation of each number in the specified tensor. |
Negate<T>(ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
Computes the element-wise negation of each number in the specified tensor.
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)
Type Parameters
- T
Parameters
Returns
Applies to
Negate<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
Computes the element-wise negation of each number in the specified tensor.
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)
Type Parameters
- T
Parameters
- destination
- TensorSpan<T>
Returns
Applies to
Tee yhteistyötä kanssamme GitHubissa
Tämän sisällön lähde on GitHubissa, jossa voit myös luoda ja tarkastella ongelmia ja pull-pyyntöjä. Katso lisätietoja osallistujan oppaasta.