Matrix<T>.Greater Than Or Equal To Core Method
            
            
            
            Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
| Greater | Checks if the elements of one matrix are greater than or equal to a constant. | 
| Greater | Checks if the elements of one matrix are greater than or equal to the corresponding elements of another matrix. | 
GreaterThanOrEqualToCore(T, Matrix<Boolean>)
            Checks if the elements of one matrix are greater than or equal to a constant.
            
protected virtual Matrix<bool> GreaterThanOrEqualToCore(
	T right,
	Matrix<bool> result
)Parameters
Return Value
Matrix<Boolean>A boolean matrix whose elements are true if the corresponding element in this matrix is greater than right, and false otherwise.
GreaterThanOrEqualToCore(Matrix<T>, Matrix<Boolean>)
            Checks if the elements of one matrix are greater than or equal to 
            the corresponding elements of another matrix.
            
protected virtual Matrix<bool> GreaterThanOrEqualToCore(
	Matrix<T> right,
	Matrix<bool> result
)Parameters
- right Matrix<T>
 - The second matrix.
 - result Matrix<Boolean>
 - The matrix that is to hold the result. May be null.
 
Return Value
Matrix<Boolean>A boolean matrix whose elements are true if the corresponding element in this matrix is greater than or equal to the corresponding element in right, and false otherwise.
Exceptions
| Argument | right is null  | 
| Dimension | This matrix and right do not have the same length. |