DenseVector<T, TStorage>.Equals Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Equals(Object) Determines whether the specified Object is equal to the current Vector<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.

Equals(Object)

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

Parameters

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

Return Value

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

See Also