Equality operator for a complex matrix and an int.

C# | Visual Basic | Visual C++ |
public static bool operator ==( ComplexMatrix LeftSide, int RightSide )
Public Shared Operator = ( _ LeftSide As ComplexMatrix, _ RightSide As Integer _ ) As Boolean
public: static bool operator ==( ComplexMatrix^ LeftSide, int RightSide )

- LeftSide (ComplexMatrix)
- Left side to compare
- RightSide (Int32)
- Right side to compare

True if LeftSide and RightSide are not equal. This requires that LeftSide is a 1 x 1 matrix
with an element equal to RightSide.