Checks if the elements of one matrix are greater than or equal to a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<bool> GreaterThanOrEqualTo<T>(
Matrix<T> left,
T right
)
Public Shared Function GreaterThanOrEqualTo(Of T) (
left As Matrix(Of T),
right As T
) As Matrix(Of Boolean)
public:
generic<typename T>
static Matrix<bool>^ GreaterThanOrEqualTo(
Matrix<T>^ left,
T right
)
static member GreaterThanOrEqualTo :
left : Matrix<'T> *
right : 'T -> Matrix<bool>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
A matrix. - right
- Type: T
A constant.
Type Parameters
- T
Return Value
Type:
MatrixBooleanA boolean matrix whose elements are
if the corresponding element in
left
is greater than or equal to
right, and
otherwise.
Reference