Matrix<T>.EqualToCore(T, Matrix<Boolean>) Method

Checks if the elements of one matrix are equal to a constant.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected virtual Matrix<bool> EqualToCore(
	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.

See Also