.NET Matrix Library
Equality Operator
See Also  Send Feedback


A
A CSparseMatrix instance on the left side of the equality operator.
B
A CSparseMatrix instance on the right side of the equality operator.
Tests whether two CSparseMatrix objects represent equal matrices.

Syntax

Visual Basic (Declaration) 
Public Operator =( _
   ByVal A As CSparseMatrix, _
   ByVal B As CSparseMatrix _
) As Boolean
C# 
public bool operator ==( 
   CSparseMatrix A,
   CSparseMatrix B
)
C++/CLI 
public:
bool operator ==( 
   CSparseMatrix^ A,
   CSparseMatrix^ B
)

Parameters

A
A CSparseMatrix instance on the left side of the equality operator.
B
A CSparseMatrix instance on the right side of the equality operator.

Return Value

true if sparse matrices are equal; otherwise false.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library