Checks if the elements of one matrix are less than or equal to a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<bool> LessThanOrEqualTo<T>(
Matrix<T> left,
T right
)
Public Shared Function LessThanOrEqualTo(Of T) (
left As Matrix(Of T),
right As T
) As Matrix(Of Boolean)
public:
generic<typename T>
static Matrix<bool>^ LessThanOrEqualTo(
Matrix<T>^ left,
T right
)
static member LessThanOrEqualTo :
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 less than or equal to
right, and
otherwise.
Reference