Matrix.Greater Than Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Greater | Checks if the elements of one matrix are greater than a constant. |
Greater | Checks if the elements of one matrix are greater than the corresponding elements of another matrix. |
Greater | Checks if the elements of one matrix are greater than a constant. |
GreaterThan<T>(Matrix<T>, T)
Checks if the elements of one matrix are greater than a constant.
public static Matrix<bool> GreaterThan<T>(
Matrix<T> left,
T right
)
Parameters
- left Matrix<T>
- A matrix.
- right T
- A constant.
Type Parameters
- T
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. |
GreaterThan<T>(Matrix<T>, Matrix<T>)
Checks if the elements of one matrix are greater than the corresponding elements
of another matrix.
public static Matrix<bool> GreaterThan<T>(
Matrix<T> left,
Matrix<T> right
)
Parameters
Type Parameters
- T
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. |
GreaterThan<T>(T, Matrix<T>)
Checks if the elements of one matrix are greater than a constant.
public static Matrix<bool> GreaterThan<T>(
T left,
Matrix<T> right
)
Parameters
- left T
- A constant.
- right Matrix<T>
- A matrix.
Type Parameters
- T
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. |