Tests for inequality of two sparse vector datas. The datas 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 static bool operator !=(
	SparseVectorData<T> a,
	SparseVectorData<T> b
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	a As SparseVectorData(Of T), _
	b As SparseVectorData(Of T) _
) As Boolean
Visual C++
public:
static bool operator !=(
	SparseVectorData<T>^ a, 
	SparseVectorData<T>^ b
)

Parameters

a
Type: CenterSpace.NMath.Matrix..::.SparseVectorData<(Of <(T>)>)
The left-hand data.
b
Type: CenterSpace.NMath.Matrix..::.SparseVectorData<(Of <(T>)>)
The right-hand data.

Return Value

false if a and b have the same nonzero elements; true otherwise.

See Also