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