Matrix<T>.LessThanOrEqualToCore Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

LessThanOrEqualToCore(T, Matrix<Boolean>) Checks if the elements of one matrix are less than or equal to a constant.
LessThanOrEqualToCore(Matrix<T>, Matrix<Boolean>) Checks if the elements of one matrix are greater than or equal to the corresponding elements of another matrix.

Matrix<T>.LessThanOrEqualToCore(T, Matrix<Boolean>)

Checks if the elements of one matrix are less than or equal to a constant.
C#
protected virtual Matrix<bool> LessThanOrEqualToCore(
	T right,
	Matrix<bool> result
)

Parameters

right  T
A constant.
result  Matrix<Boolean>
The matrix that is to hold the result. May be null.

Return Value

Matrix<Boolean>
A boolean matrix whose elements are true if the corresponding element in this matrix is less than right, and false otherwise.

Matrix<T>.LessThanOrEqualToCore(Matrix<T>, Matrix<Boolean>)

Checks if the elements of one matrix are greater than or equal to the corresponding elements of another matrix.
C#
protected virtual Matrix<bool> LessThanOrEqualToCore(
	Matrix<T> right,
	Matrix<bool> result
)

Parameters

right  Matrix<T>
The second matrix.
result  Matrix<Boolean>
The matrix that is to hold the result. May be null.

Return Value

Matrix<Boolean>
A boolean matrix whose elements are true if the corresponding element in this matrix is greater than or equal to the corresponding element in right, and false otherwise.

Exceptions

ArgumentNullException

right is null

DimensionMismatchException This matrix and right do not have the same length.

See Also