Checks if the elements of one matrix are greater than or equal to
the corresponding elements of another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<bool> LessThanOrEqualToInto(
Matrix<T> left,
Matrix<T> right,
Matrix<bool> result
)
Public Shared Function LessThanOrEqualToInto (
left As Matrix(Of T),
right As Matrix(Of T),
result As Matrix(Of Boolean)
) As Matrix(Of Boolean)
public:
static Matrix<bool>^ LessThanOrEqualToInto(
Matrix<T>^ left,
Matrix<T>^ right,
Matrix<bool>^ result
)
static member LessThanOrEqualToInto :
left : Matrix<'T> *
right : Matrix<'T> *
result : Matrix<bool> -> Matrix<bool>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
The first matrix. - right
- Type: Extreme.MathematicsMatrixT
The second matrix. - result
- Type: Extreme.MathematicsMatrixBoolean
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixBooleanA boolean matrix whose elements are
if the corresponding element in
left
is greater than or equal to the corresponding element in
right, and
otherwise.
Reference