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> GreaterThanOrEqualToInto<T>(
T left,
Matrix<T> right,
Matrix<bool> result
)
Public Shared Function GreaterThanOrEqualToInto(Of T) (
left As T,
right As Matrix(Of T),
result As Matrix(Of Boolean)
) As Matrix(Of Boolean)
public:
generic<typename T>
static Matrix<bool>^ GreaterThanOrEqualToInto(
T left,
Matrix<T>^ right,
Matrix<bool>^ result
)
static member GreaterThanOrEqualToInto :
left : 'T *
right : Matrix<'T> *
result : Matrix<bool> -> Matrix<bool>
Parameters
- left
- Type: T
A constant. - right
- Type: Extreme.MathematicsMatrixT
A matrix. - result
- Type: Extreme.MathematicsMatrixBoolean
The matrix that is to hold the result. May be .
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