Tensor<T>.BitwiseOrAssignment Operator

Definition

Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 10.0.0

Overload List

BitwiseOrAssignment(T) Computes the bitwise or of a tensor and a scalar in-place.
BitwiseOrAssignment(Tensor<T>) Computes the bitwise or of two tensors in place.

BitwiseOrAssignment(T) Operator

Computes the bitwise or of a tensor and a scalar in-place.
C#
C# does not support this operator.

Parameters

right  T
 

Return Value

This tensor with each element replaced with the sum of the element and other.

BitwiseOrAssignment(Tensor<T>) Operator

Computes the bitwise or of two tensors in place.
C#
C# does not support this operator.

Parameters

right  Tensor<T>
 

Return Value

This tensor with the elements replaced with the sum of the element and the corresponding element of other.

Exceptions

ArgumentNullException

other is null.

DimensionMismatchException

The dimensions of other are not compatible with the dimensions of this tensor.

See Also