Not equals operator for sparse matrices in compressed row (CSR) format.

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

Syntax

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

Parameters

lhs
Type: CenterSpace.NMath.Matrix..::.DoubleCsrSparseMatrix
A CSR sparse matrix instance.
rhs
Type: CenterSpace.NMath.Matrix..::.DoubleCsrSparseMatrix
A CSR sparse matrix instance.

Return Value

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

See Also