Equals function for DoubleSymCsrSparseMatrix matrices.

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

Syntax

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

Parameters

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

Return Value

true if other contains the same nonzero data as self.

Remarks

Implemented as part of the IEquitable interface.

See Also