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

Parameters

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

Return Value

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

See Also