Tests for inequality of two matrices. Two matrices are not equal if they
have different dimensions or their values are not all equal.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static bool operator !=( FloatComplexMatrix A, FloatComplexMatrix B ) |
| Visual Basic (Declaration) |
|---|
Public Shared Operator <> ( _ A As FloatComplexMatrix, _ B As FloatComplexMatrix _ ) As Boolean |
| Visual C++ |
|---|
public: static bool operator !=( FloatComplexMatrix^ A, FloatComplexMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A matrix.
Return Value
True if the matrices are of different dimension or contain different values; otherwise, false. If both matrices are null, this operator returns false.
Remarks
The comparison of the values is done using operator== for
FloatComplex types. Therefore, the values of the matrices must be exactly
equal for this method to return false.