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>(
T left,
Matrix<T> right
)
Public Shared Function GreaterThanOrEqualTo(Of T) (
left As T,
right As Matrix(Of T)
) As Matrix(Of Boolean)
public:
generic<typename T>
static Matrix<bool>^ GreaterThanOrEqualTo(
T left,
Matrix<T>^ right
)
static member GreaterThanOrEqualTo :
left : 'T *
right : Matrix<'T> -> Matrix<bool>
Parameters
- left
- Type: T
A constant. - right
- Type: Extreme.MathematicsMatrixT
A matrix.
Type Parameters
- T
Return Value
Type:
MatrixBooleanA boolean matrix whose elements are
if
left is greater than or equal to the corresponding element in
right, and
otherwise.
Reference