Tensor<T>.Bitwise And Assignment Operator
Definition
Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 10.0.0
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 10.0.0
Overload List
| Bitwise | Computes the bitwise and of a tensor and a scalar in-place. |
| Bitwise | Computes the bitwise and of two tensors in place. |
BitwiseAndAssignment(T) Operator
Computes the bitwise and of a tensor and a scalar in-place.
Parameters
- right T
Return Value
This tensor with each element replaced with the sum of the element and other.BitwiseAndAssignment(Tensor<T>) Operator
Computes the bitwise and of two tensors in place.
Parameters
Return Value
This tensor with the elements replaced with the sum of the element and the corresponding element of other.Exceptions
| Argument | other is null. |
| Dimension | The dimensions of other are not compatible with the dimensions of this tensor. |