Share via


Tensor.ExclusiveOrAssignment Operator

Definition

Overloads

Name Description
ExclusiveOrAssignment(TScalar)

Performs in-place exclusive-or between a tensor and scalar.

ExclusiveOrAssignment(ReadOnlyTensorSpan<TScalar>)

Performs in-place exclusive-or between two tensors.

ExclusiveOrAssignment(TScalar)

Source:
Tensor.cs

Performs in-place exclusive-or between a tensor and scalar.

public:
 void op_ExclusiveOrAssignment(TScalar other);
public void op_ExclusiveOrAssignment(TScalar other);
member this.op_ExclusiveOrAssignment : 'TScalar -> unit
Public op_ExclusiveOrAssignment (other As TScalar)

Parameters

other
TScalar

The scalar to exclusive-or with the tensor being operated on.

Applies to

ExclusiveOrAssignment(ReadOnlyTensorSpan<TScalar>)

Source:
Tensor.cs

Performs in-place exclusive-or between two tensors.

public:
 void op_ExclusiveOrAssignment(System::Numerics::Tensors::ReadOnlyTensorSpan<TScalar> % other);
public void op_ExclusiveOrAssignment(in System.Numerics.Tensors.ReadOnlyTensorSpan<TScalar> other);
member this.op_ExclusiveOrAssignment : ReadOnlyTensorSpan -> unit
Public op_ExclusiveOrAssignment (ByRef other As ReadOnlyTensorSpan(Of TScalar))

Parameters

other
ReadOnlyTensorSpan<TScalar>

The tensor to exclusive-or with the tensor being operated on.

Applies to