Statistics::FullFactDesign Function

Overload List

#SignatureDescription
1void FullFactDesign(const int n, TMtx *aResult, const TMtxFloatPrecision fp, TVec *MulVec = null);Creates the factors for full factorial design.
2void 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.

#NameTypeDescription
1nconst int
2aResultTMtx *
3fpconst TMtxFloatPrecision
4MulVec = nullTVec *
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.

#NameTypeDescription
1UniqueLevelsTVec *
2aResultTMtx *
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