Checks if the elements of one matrix are equal to a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<bool> EqualToCore(
T right,
Matrix<bool> result
)
Protected Overridable Function EqualToCore (
right As T,
result As Matrix(Of Boolean)
) As Matrix(Of Boolean)
protected:
virtual Matrix<bool>^ EqualToCore(
T right,
Matrix<bool>^ result
)
abstract EqualToCore :
right : 'T *
result : Matrix<bool> -> Matrix<bool>
override EqualToCore :
right : 'T *
result : Matrix<bool> -> Matrix<bool>
Parameters
- right
- Type: T
A constant. - 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 this matrix
is less than
right, and
otherwise.
Reference