Not equals operator for compressed row data.

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

Syntax

C#
public static bool operator !=(
	CompressedSparseRow<T> lhs,
	CompressedSparseRow<T> rhs
)
Visual Basic
Public Shared Operator <> ( _
	lhs As CompressedSparseRow(Of T), _
	rhs As CompressedSparseRow(Of T) _
) As Boolean
Visual C++
public:
static bool operator !=(
	CompressedSparseRow<T>^ lhs, 
	CompressedSparseRow<T>^ rhs
)

Parameters

lhs
Type: CenterSpace.NMath.Matrix..::..CompressedSparseRow<(Of <(<'T>)>)>
A compressed row data instance.
rhs
Type: CenterSpace.NMath.Matrix..::..CompressedSparseRow<(Of <(<'T>)>)>
A compressed row data instance.

Return Value

false if both arguments represent the same nonzero elements; otherwise true.

See Also