Matrix<T>.DotEquals(Matrix<T>, T) Operator

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#
C# does not support this operator.

Parameters

left  Matrix<T>
A matrix.
right  T
A constant.

Return Value

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

Exceptions

See Also