Tensor<T>.Greater 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
Greater | Returns whether a scalar are greater than the elements of a tensor.. |
Greater | Returns whether the elements of a tensor are greater than a scalar.. |
Greater | Returns whether the elements of one tensor are greater than the corresponding elements of another tensor.. |
GreaterThan(T, Tensor<T>) Operator
Returns whether a scalar are greater 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. |
GreaterThan(Tensor<T>, T) Operator
Returns whether the elements of a tensor are greater 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. |
GreaterThan(Tensor<T>, Tensor<T>) Operator
Returns whether the elements of one tensor are greater 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. |