Equals function for Compressed Row (CSR) formatted sparse matrices.

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

Syntax

C#
public bool Equals(
	DoubleCsrSparseMatrix other
)
Visual Basic (Declaration)
Public Function Equals ( _
	other As DoubleCsrSparseMatrix _
) As Boolean
Visual C++
public:
virtual bool Equals(
	DoubleCsrSparseMatrix^ other
) sealed

Parameters

other
Type: CenterSpace.NMath.Matrix..::.DoubleCsrSparseMatrix
Object to compare.

Return Value

true if other and contains the same nonzero elements as self.

Implements

IEquatable<(Of <(T>)>)..::.Equals(T)

Remarks

Implemented as part of the IEquitable interface.

See Also