Not equals operator for symmetric 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 !=(
	DoubleSymCsrSparseMatrix lhs,
	DoubleSymCsrSparseMatrix rhs
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	lhs As DoubleSymCsrSparseMatrix, _
	rhs As DoubleSymCsrSparseMatrix _
) As Boolean
Visual C++
public:
static bool operator !=(
	DoubleSymCsrSparseMatrix^ lhs, 
	DoubleSymCsrSparseMatrix^ rhs
)

Parameters

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

Return Value

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

See Also