Tensor<T>.RightShift Operator
Shifts the elements of a tensor to the right..
DefinitionPermalink
Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.5
C#
A tensor of the same shape as left whose elements are equal to the shift of the corresponding elements of left and right.
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.5
public static Tensor<T> operator >>(
Tensor<T> left,
int right
)
ParametersPermalink
- left Tensor<T>
- A tensor that serves as the left operand.
- right Int32
- A scalar that serves as the right operand.
Return ValuePermalink
Tensor<T>A tensor of the same shape as left whose elements are equal to the shift of the corresponding elements of left and right.
ExceptionsPermalink
Argument | left is null. |