Matrix<T>.Equality Operator

Returns a value indicating whether two instances of matrix are equal.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static bool operator ==(
	Matrix<T> matrix1,
	Matrix<T> matrix2
)

Parameters

matrix1  Matrix<T>
A Matrix<T>.
matrix2  Matrix<T>
A Matrix<T>.

Return Value

Boolean
true if the two vectors have the same length and identical elements; otherwise false.

See Also