Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Boolean Equal(TMtx B, Double Tolerance, Boolean NonZerosOnly) | Compares two sparse matrices. |
| 2 | Boolean Equal(TSparseMtx B, Double Tolerance) | Compares two sparse matrices. |
Overload 1: Boolean Equal(TMtx B, Double Tolerance, Boolean NonZerosOnly)
Compares two sparse matrices.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TMtx | source TMtx |
| 2 | Tolerance | Double | scalar |
| 3 | NonZerosOnly | Boolean |
Returns: Boolean - true, if the calling matrix is equal to dense B matrix (if all elements match in position and value).
Remarks:
Tolerance defines the comparison tolerance. The maximum difference between elements may not exceed: +/-Tolerance. If Tolerance is omitted, a direct comparison algorithm is used. If NonZerosOnly is True then only the non-zero values of the calling sparse matrix are compared with corresponding values in the dense matrix.
See Also: TSparseMtx.IsEqualSize
Overload 2: Boolean Equal(TSparseMtx B, Double Tolerance)
Compares two sparse matrices.
| # | Name | Description |
|---|---|---|
| 1 | B | Compare B with calling sparse matrix. |
| 2 | Tolerance | Defines the comparison tolerance. The maximum difference between elements may not exceed: +/-Tolerance. If Tolerance is omitted, a direct comparison algorithm is used. |
Returns: Boolean - true, if the calling matrix is equal to sparse B matrix (if all elements match in position and value).