 | DoubleBandMatrixEquality 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 ==(
DoubleBandMatrix A,
DoubleBandMatrix B
)
Public Shared Operator = (
A As DoubleBandMatrix,
B As DoubleBandMatrix
) As Boolean
public:
static bool operator ==(
DoubleBandMatrix^ A,
DoubleBandMatrix^ B
)
static let inline (=)
A : DoubleBandMatrix *
B : DoubleBandMatrix : bool
Parameters
- A DoubleBandMatrix
- A banded matrix.
- B DoubleBandMatrix
- 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
doubles. Therefore, the values of the matrices must be exactly equal for
this method to return true.
See Also