Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector DivideElem(TVec *X, TMtxVec *Y, TMtxVec *Z); | Compute X / (Y*Z) |
| 2 | Matrix DivideElem(TMtx *X, TMtxVec *Y, TMtxVec *Z); | Compute X / (Y*Z), when X is a Matrix |
| 3 | Vector DivideElem(const double X, TVec *Y, TMtxVec *Z); | Compute xScalar / (Y*Z) |
| 4 | Matrix DivideElem(const double X, TMtx *Y, TMtxVec *Z); | Compute xScalar / (Y*Z), when Y is a Matrix |
| 5 | Vector DivideElem(const TCplx &X, TVec *Y, TMtxVec *Z); | Compute xScalar / (Y*Z) |
| 6 | Matrix DivideElem(const TCplx &X, TMtx *Y, TMtxVec *Z); | Compute xScalar / (Y*Z), where Y is a Matrix |
Overload 1: Vector DivideElem(TVec *X, TMtxVec *Y, TMtxVec *Z);
Compute X / (Y*Z)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | TMtxVec * |
Remarks:
Divides X by the product of Y and Z without temporary objects.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Matrix DivideElem(TMtx *X, TMtxVec *Y, TMtxVec *Z);
Compute X / (Y*Z), when X is a Matrix
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | TMtxVec * |
Remarks:
The operation does only per-element math.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 3: Vector DivideElem(const double X, TVec *Y, TMtxVec *Z);
Compute xScalar / (Y*Z)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const double | |
| 2 | Y | TVec * | |
| 3 | Z | TMtxVec * |
Remarks:
Divides a scalar xScalar by the product of Y and Z without temporary objects. Since the first parameter is scalar, the overload is provided by splitting the second parameter into TVec and TMtx versions.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 4: Matrix DivideElem(const double X, TMtx *Y, TMtxVec *Z);
Compute xScalar / (Y*Z), when Y is a Matrix
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const double | |
| 2 | Y | TMtx * | |
| 3 | Z | TMtxVec * |
Remarks:
The operation does only per-element math.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 5: Vector DivideElem(const TCplx &X, TVec *Y, TMtxVec *Z);
Compute xScalar / (Y*Z)
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler