Equality of sparse vector data. Sparse vector data objects are equal if they have the same nonzero elements.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public bool Equals(
	SparseVectorData<T> other
)
Visual Basic (Declaration)
Public Function Equals ( _
	other As SparseVectorData(Of T) _
) As Boolean
Visual C++
public:
virtual bool Equals(
	SparseVectorData<T>^ other
) sealed

Parameters

other
Type: CenterSpace.NMath.Matrix..::.SparseVectorData<(Of <(T>)>)
Sparse data to compare.

Return Value

true if self and obj have the same nonzero elements; false otherwise.

Implements

IEquatable<(Of <(T>)>)..::.Equals(T)

See Also