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