| SparseVectorDataTEquals(SparseVectorDataT) Method |
Equality of sparse vector data. Sparse vector data objects are equal if they have
the same nonzero elements.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public bool Equals(
SparseVectorData<T> other
)
Public Function Equals (
other As SparseVectorData(Of T)
) As Boolean
public:
virtual bool Equals(
SparseVectorData<T>^ other
) sealed
abstract Equals :
other : SparseVectorData<'T> -> bool
override Equals :
other : SparseVectorData<'T> -> bool
Parameters
- other SparseVectorDataT
- Sparse data to compare.
Return Value
Booleantrue if self and
obj have the same nonzero elements;
false otherwise.
Implements
IEquatableTEquals(T)See Also