Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void FullFactDesign(const int n, TMtx *aResult, const TMtxFloatPrecision fp, TVec *MulVec = null); | Creates the factors for full factorial design. |
| 2 | void FullFactDesign(TVec *UniqueLevels, TMtx *aResult); | Performs Mixed-Level Full Factorial Design. |
Overload 1: void FullFactDesign(const int n, TMtx *aResult, const TMtxFloatPrecision fp, TVec *MulVec = null);
Creates the factors for full factorial design.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | n | const int | |
| 2 | aResult | TMtx * | |
| 3 | fp | const TMtxFloatPrecision | |
| 4 | MulVec = null | TVec * |
Remarks:
Performs Two-Level Full Factorial design. The results (factors) are stored in Result matrix. Parameter n defines number of Result matrix columns. Optional parameter MulVec (default value nil) is used only by the Wilcoxon Signed Rank test procedure. Size and Complex properties of Result matrix are adjusted automatically.
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler
Overload 2: void FullFactDesign(TVec *UniqueLevels, TMtx *aResult);
Performs Mixed-Level Full Factorial Design.
Remarks:
The UniqueLevels vector stores the number of unique settings for each column. UniqueLevels values must be integers, greater than 1. The results (factors) are stored in Result matrix. Size and Complex properties of Result matrix are adjusted automatically.
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler