Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool operator==(const Vector &Left, const Matrix &Right); | Returns true, if Left and Right are of equal Length and Values. |
| 2 | bool operator==(const Matrix &Left, const Matrix &Right); | Returns true, if all elements of Left are equal to Right. |
| 3 | bool operator==(const Matrix &Left, double Right); | Returns true, if all elements of Left are equal to Right. |
| 4 | bool operator==(double Left, const Matrix &Right); | Returns true, if Left is equal to all elements in Right. |
| 5 | bool operator==(const Matrix &Left, const TCplx &Right); | Returns true, if all elements of Left are equal to Right. |
| 6 | bool operator==(const TCplx &Left, const Matrix &Right); | Returns true, if Left is equal to all elements in Right. |
| 7 | bool operator==(TMtx *Left, const Matrix &Right); | Returns true, if all elements of Left are equal to Right. |
| 8 | bool operator==(const Matrix &Left, TMtx *Right); | Returns true, if all elements of Left are equal to Right. |
| 9 | bool operator==(TVec *Left, const Matrix &Right); | Returns true, if all elements of Left are equal to Right. |
| 10 | bool operator==(const Matrix &Left, TVec *Right); | Returns true, if all elements of Left are equal to Right. |
Overload 1: bool operator==(const Vector &Left, const Matrix &Right);
Returns true, if Left and Right are of equal Length and Values.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: bool operator==(const Matrix &Left, const Matrix &Right);
Returns true, if all elements of Left are equal to Right.
Remarks:
Size and Complex properties must also match.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: bool operator==(const Matrix &Left, double Right);
Returns true, if all elements of Left are equal to Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const Matrix & | |
| 2 | Right | double |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: bool operator==(double Left, const Matrix &Right);
Returns true, if Left is equal to all elements in Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | double | |
| 2 | Right | const Matrix & |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 5: bool operator==(const Matrix &Left, const TCplx &Right);
Returns true, if all elements of Left are equal to Right.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 6: bool operator==(const TCplx &Left, const Matrix &Right);
Returns true, if Left is equal to all elements in Right.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 7: bool operator==(TMtx *Left, const Matrix &Right);
Returns true, if all elements of Left are equal to Right.
Remarks:
Size and Complex properties must also match.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 8: bool operator==(const Matrix &Left, TMtx *Right);
Returns true, if all elements of Left are equal to Right.
Remarks:
Size and Complex properties must also match.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 9: bool operator==(TVec *Left, const Matrix &Right);
Returns true, if all elements of Left are equal to Right.
Remarks:
Size and Complex properties must also match.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler