|  | DoubleSymCsrSparseMatrixEquality Operator | 
            Equality operator for symmetric sparse matrices in compressed row (CSR) format.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static bool operator ==(
	DoubleSymCsrSparseMatrix lhs,
	DoubleSymCsrSparseMatrix rhs
)
Public Shared Operator = ( 
	lhs As DoubleSymCsrSparseMatrix,
	rhs As DoubleSymCsrSparseMatrix
) As Boolean
public:
static bool operator ==(
	DoubleSymCsrSparseMatrix^ lhs, 
	DoubleSymCsrSparseMatrix^ rhs
)
static let inline (=)
        lhs : DoubleSymCsrSparseMatrix * 
        rhs : DoubleSymCsrSparseMatrix  : boolParameters
- lhs  DoubleSymCsrSparseMatrix
- A CSR symmetric sparse matrix instance.
- rhs  DoubleSymCsrSparseMatrix
- A CSR symmetric sparse matrix instance.
Return Value
Booleantrue if both arguments represent the same nonzero
            elements; otherwise 
false.
 See Also
See Also