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

Parameters

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

Return Value

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

See Also