Equality operator for compressed row data.

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

Syntax

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

Parameters

lhs
Type: CenterSpace.NMath.Matrix..::.CompressedSparseRow<(Of <(T>)>)
A compressed row data instance.
rhs
Type: CenterSpace.NMath.Matrix..::.CompressedSparseRow<(Of <(T>)>)
A compressed row data instance.

Return Value

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

See Also