| SparseVectorDataTInequality Operator |
Tests for inequality of two sparse vector datas. The datas are equal
if they have the same nonzero elements.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public static bool operator !=(
SparseVectorData<T> a,
SparseVectorData<T> b
)
Public Shared Operator <> (
a As SparseVectorData(Of T),
b As SparseVectorData(Of T)
) As Boolean
public:
static bool operator !=(
SparseVectorData<T>^ a,
SparseVectorData<T>^ b
)
static let inline (<>)
a : SparseVectorData<'T> *
b : SparseVectorData<'T> : bool
Parameters
- a SparseVectorDataT
- The left-hand data.
- b SparseVectorDataT
- The right-hand data.
Return Value
Booleanfalse if
a and
b have the same nonzero elements;
true otherwise.See Also