Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *MulAndDiv(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z); | Compute X * Y / Z |
| 2 | TMtxVecInt *MulAndDiv(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len); | Compute X * Y / Z on sub array |
| 3 | TMtxVecInt *MulAndDiv(TMtxVecInt *X, TMtxVecInt *Y, const int xyScale, TMtxVecInt *Z); | Compute X * Y * xyScale / Z |
| 4 | TMtxVecInt *MulAndDiv(TMtxVecInt *X, TMtxVecInt *Y, const int Z); | Compute X * Y / zScalar |
| 5 | TMtxVecInt *MulAndDiv(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, const int xyScale, TMtxVecInt *Z, int zIndex, int Index, int Len); | Compute X * Y xyScale / Z on sub array |
| 6 | TMtxVecInt *MulAndDiv(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, const int Z, int Index, int Len); | Compute X * Y / zScalar on sub array |
Overload 1: TMtxVecInt *MulAndDiv(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z);
Compute X * Y / Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | Z | TMtxVecInt * |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: TMtxVecInt *MulAndDiv(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);
Compute X * Y / Z on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | Z | TMtxVecInt * | |
| 6 | zIndex | int | |
| 7 | Index | int | |
| 8 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 3: TMtxVecInt *MulAndDiv(TMtxVecInt *X, TMtxVecInt *Y, const int xyScale, TMtxVecInt *Z);
Compute X Y xyScale / Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | xyScale | const int | |
| 4 | Z | TMtxVecInt * |
Remarks:
The following expression would also run at the same or higher speed, when passing X also for the Y parameter:
X^2 * xyScale/ Z
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 4: TMtxVecInt *MulAndDiv(TMtxVecInt *X, TMtxVecInt *Y, const int Z);
Compute X * Y / zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | Z | const int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 5: TMtxVecInt *MulAndDiv(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, const int xyScale, TMtxVecInt *Z, int zIndex, int Index, int Len);
Compute X * Y xyScale / Z on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | xyScale | const int | |
| 6 | Z | TMtxVecInt * | |
| 7 | zIndex | int | |
| 8 | Index | int | |
| 9 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 6: TMtxVecInt *MulAndDiv(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, const int Z, int Index, int Len);
Compute X * Y / zScalar on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | Z | const int | |
| 6 | Index | int | |
| 7 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler