DenseVector<T>.Equals Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Equals(Object) Determines whether the specified Object is equal to the current DenseVector<T>.
Equals(Vector<T>) Determines whether the specified Vector<T> is equal to the current Vector<T>.
Equals(Object, IEqualityComparer) Returns whether an object is structurally equal to this instance.

DenseVector<T>.Equals(Object)

Determines whether the specified Object is equal to the current DenseVector<T>.
C#
public override bool Equals(
	Object obj
)

Parameters

obj  Object
The object to compare this DenseVector<T> to.

Return Value

Boolean
true if the specified object is identical to this DenseVector<T>; otherwise false.

Remarks

Two vectors are considered equal if they have the same length and if all components are identical.

See Also