Click or drag to resize

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.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static bool operator !=(
	DoubleComplexMatrix A,
	DoubleComplexMatrix B
)

Parameters

A  DoubleComplexMatrix
A matrix.
B  DoubleComplexMatrix
A matrix.

Return Value

Boolean
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 DoubleComplex types. Therefore, the values of the matrices must be exactly equal for this method to return false.
See Also