Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool operator!=(const Vector &Left, const Matrix &Right); | Returns true, if Left and Right do not have equal Length and Values. |
| 2 | bool operator!=(const Matrix &Left, const Matrix &Right); | Returns true, if any elements in Left are not equal to Right. |
| 3 | bool operator!=(const Matrix &Left, double Right); | Returns true, if any elements in Left are not equal to Right. |
| 4 | bool operator!=(double Left, const Matrix &Right); | Returns true, if any elements in Right are not equal to Left. |
| 5 | bool operator!=(Matrix Left, const TCplx &Right); | Returns true, if any elements in Left are not equal to Right. |
| 6 | bool operator!=(const TCplx &Left, const Matrix &Right); | Returns true, if any elements in Right are not equal to Left. |
| 7 | bool operator!=(TMtx *Left, const Matrix &Right); | Returns true, if any elements in Left are not equal to Right. |
| 8 | bool operator!=(TVec *Left, const Matrix &Right); | Returns true, if any elements in Left are not equal to Right. |
| 9 | bool operator!=(const Matrix &Left, TMtx *Right); | Returns true, if any elements in Left are not equal to Right. |
| 10 | bool operator!=(const Matrix &Left, TVec *Right); | Returns true, if any elements in Left are not equal to Right. |
Overload 1: bool operator!=(const Vector &Left, const Matrix &Right);
Returns true, if Left and Right do not have equal Length and Values.
Overload 2: bool operator!=(const Matrix &Left, const Matrix &Right);
Returns true, if any elements in Left are not equal to Right.
Size or Complex properties also do not match.
Overload 3: bool operator!=(const Matrix &Left, double Right);
Returns true, if any elements in Left are not equal to Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const Matrix & | |
| 2 | Right | double |
Size or Complex properties also do not match.
Overload 4: bool operator!=(double Left, const Matrix &Right);
Returns true, if any elements in Right are not equal to Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | double | |
| 2 | Right | const Matrix & |
Overload 5: bool operator!=(Matrix Left, const TCplx &Right);
Returns true, if any elements in Left are not equal to Right.
Overload 6: bool operator!=(const TCplx &Left, const Matrix &Right);
Returns true, if any elements in Right are not equal to Left.
Overload 7: bool operator!=(TMtx *Left, const Matrix &Right);
Returns true, if any elements in Left are not equal to Right.
Size or Complex properties also do not match.
Overload 8: bool operator!=(TVec *Left, const Matrix &Right);
Returns true, if any elements in Left are not equal to Right.
Size or Complex properties also do not match.
Overload 9: bool operator!=(const Matrix &Left, TMtx *Right);
Returns true, if any elements in Left are not equal to Right.
Size or Complex properties also do not match.