Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector DivideElemC(TVec *X, TMtxVec *Y, const double Z); | Compute X / (Y*zScale) |
| 2 | Matrix DivideElemC(TMtx *X, TMtxVec *Y, const double Z); | Compute X / (Y*zScale), when X is a Matrix. |
| 3 | Vector DivideElemC(TVec *X, TMtxVec *Y, const TCplx &Z); | Compute X / (Y*zScale) |
| 4 | Matrix DivideElemC(TMtx *X, TMtxVec *Y, const TCplx &Z); | Compute X / (Y*zScale), where X is a Matrix |
Overload 1: Vector DivideElemC(TVec *X, TMtxVec *Y, const double Z);
Compute X / (Y*zScale)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | const double |
Remarks:
Divides X by (Y multiplied by the scalar zScale) without temporary objects.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Matrix DivideElemC(TMtx *X, TMtxVec *Y, const double Z);
Compute X / (Y*zScale), when X is a Matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | const double |
Remarks:
The operation does only per-element math.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 3: Vector DivideElemC(TVec *X, TMtxVec *Y, const TCplx &Z);
Compute X / (Y*zScale)
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler