| DoubleComplexMatrixInequality Operator |
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: 7.4
Syntax public static bool operator !=(
DoubleComplexMatrix A,
DoubleComplexMatrix B
)
Public Shared Operator <> (
A As DoubleComplexMatrix,
B As DoubleComplexMatrix
) As Boolean
public:
static bool operator !=(
DoubleComplexMatrix^ A,
DoubleComplexMatrix^ B
)
static let inline (<>)
A : DoubleComplexMatrix *
B : DoubleComplexMatrix : bool
Parameters
- A DoubleComplexMatrix
- A matrix.
- B DoubleComplexMatrix
- A matrix.
Return Value
BooleanTrue 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
DoubleComplex types. Therefore, the values of the matrices must be exactly
equal for this method to return false.
See Also