Checks if the elements of one matrix are equal to the corresponding elements
of another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<bool> EqualTo<T>(
Matrix<T> left,
Matrix<T> right
)
Public Shared Function EqualTo(Of T) (
left As Matrix(Of T),
right As Matrix(Of T)
) As Matrix(Of Boolean)
public:
generic<typename T>
static Matrix<bool>^ EqualTo(
Matrix<T>^ left,
Matrix<T>^ right
)
static member EqualTo :
left : Matrix<'T> *
right : Matrix<'T> -> Matrix<bool>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
The first matrix. - right
- Type: Extreme.MathematicsMatrixT
The second matrix.
Type Parameters
- T
Return Value
Type:
MatrixBooleanA boolean matrix whose elements are
if the corresponding element in
left
is equal to the corresponding element in
right, and
otherwise.
Reference