Matrix<T>.Equals(Matrix<T>) Method

Determines whether the specified Matrix<T> is equal to the current Matrix<T>.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual bool Equals(
	Matrix<T> other
)

Parameters

other  Matrix<T>
The matrix to compare this Matrix<T> to.

Return Value

Boolean
true if the specified matrix is identical to this instance; otherwise false.

Implements

IEquatable<T>.Equals(T)

See Also