Share via


Tensor.OnesComplement Method

Definition

Overloads

OnesComplement<T>(ReadOnlyTensorSpan<T>)

Performs a one's complement on a tensor.

OnesComplement<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)

Performs a one's complement on a tensor.

OnesComplement<T>(ReadOnlyTensorSpan<T>)

Source:
Tensor.op_OnesComplement.cs
Source:
TensorExtensions.cs

Performs a one's complement on a tensor.

public:
generic <typename T>
 where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ OnesComplement(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> OnesComplement<T>(in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member OnesComplement : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function OnesComplement(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
ReadOnlyTensorSpan<T>

The tensor to one's complement.

Returns

A new tensor containing the result of ~x.

Applies to

OnesComplement<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)

Source:
Tensor.op_OnesComplement.cs
Source:
TensorExtensions.cs

Performs a one's complement on a tensor.

public:
generic <typename T>
 where T : System::Numerics::IBitwiseOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ OnesComplement(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> OnesComplement<T>(scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IBitwiseOperators<T,T,T>;
static member OnesComplement : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IBitwiseOperators<'T, 'T, 'T>)
Public Function OnesComplement(Of T As IBitwiseOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
ReadOnlyTensorSpan<T>

The tensor to one's complement.

destination
TensorSpan<T>

The destination where the result of ~x is written.

Returns

A reference to destination.

Exceptions

The shapes of x and destination are not compatible.

Applies to