Tensor<T>.Less Than Operator
Definition
Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.3
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.3
Overload List
Less | Returns whether a scalar are less than the elements of a tensor.. |
Less | Returns whether the elements of a tensor are less than a scalar.. |
Less | Returns whether the elements of one tensor are less than the corresponding elements of another tensor.. |
LessThan(T, Tensor<T>) Operator
Returns whether a scalar are less than the elements of a tensor..
public static Tensor<bool> operator <(
T left,
Tensor<T> right
)
Parameters
- left T
- A scalar that serves as the left operand.
- right Tensor<T>
- A tensor that serves as the right operand.
Return Value
Tensor<Boolean>A tensor of the same shape as right whose elements are equal to the of left and the corresponding elements of right.
Exceptions
Argument | right is null. |
LessThan(Tensor<T>, T) Operator
Returns whether the elements of a tensor are less than a scalar..
public static Tensor<bool> operator <(
Tensor<T> left,
T right
)
Parameters
- left Tensor<T>
- A tensor that serves as the left operand.
- right T
- A scalar that serves as the right operand.
Return Value
Tensor<Boolean>A tensor of the same shape as left whose elements are equal to the of the corresponding elements of left and right.
Exceptions
Argument | left is null. |
LessThan(Tensor<T>, Tensor<T>) Operator
Returns whether the elements of one tensor are less than the corresponding elements of another tensor..
public static Tensor<bool> operator <(
Tensor<T> left,
Tensor<T> right
)
Parameters
- left Tensor<T>
- A tensor that serves as the left operand.
- right Tensor<T>
- A tensor that serves as the right operand.
Return Value
Tensor<Boolean>A tensor of the same shape as left and right whose elements are equal to the of the corresponding elements of left and right.
Exceptions
Argument | left is null. -or- right is null. |