 | DoubleComplexBandMatrixEquality Operator |
Tests for equality of two banded matrices. Two matrices are equal if they
have the same dimensions, upper and lower bandwidths, and all values are equal.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static bool operator ==(
DoubleComplexBandMatrix A,
DoubleComplexBandMatrix B
)
Public Shared Operator = (
A As DoubleComplexBandMatrix,
B As DoubleComplexBandMatrix
) As Boolean
public:
static bool operator ==(
DoubleComplexBandMatrix^ A,
DoubleComplexBandMatrix^ B
)
static let inline (=)
A : DoubleComplexBandMatrix *
B : DoubleComplexBandMatrix : bool
Parameters
- A DoubleComplexBandMatrix
- A banded matrix.
- B DoubleComplexBandMatrix
- A banded matrix.
Return Value
BooleanTrue if the matrices have the same dimensions, upper and
lower bandwidths, and all values are equal.
RemarksThe 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 true.
See Also