Matrix<T>.Dot Greater Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Dot | Checks if the elements of one matrix are greater than a constant. |
Dot | Checks if the elements of one matrix are greater than a constant. |
Dot | Checks if the elements of one matrix are greater than the corresponding elements of another matrix. |
DotGreater(T, Matrix<T>) Operator
Checks if the elements of one matrix are greater than a constant.
Parameters
Return Value
Matrix<Boolean>A boolean matrix whose elements are true if left is greater than the corresponding element in right, and false otherwise.
Exceptions
Argument | right is null. |
DotGreater(Matrix<T>, T) Operator
Checks if the elements of one matrix are greater than a constant.
Parameters
Return Value
Matrix<Boolean>A boolean matrix whose elements are true if the corresponding element in left is greater than right, and false otherwise.
Exceptions
Argument | left is null. |
DotGreater(Matrix<T>, Matrix<T>) Operator
Checks if the elements of one matrix are greater than the corresponding elements
of another matrix.
Parameters
Return Value
Matrix<Boolean>A boolean matrix whose elements are true if the corresponding element in left is greater than the corresponding element in right, and false otherwise.
Exceptions
Argument | left is null. -or- right is null. |
Dimension | left and right do not have the same length. |