You are here: Symbol Reference > Statistics Namespace > Functions > Statistics.FullFactDesign Function
Stats Master VCL
ContentsIndex
PreviousUpNext
Statistics.FullFactDesign Function

Creates the factors for full factorial design.

Pascal
procedure FullFactDesign(const n: Integer; const aResult: TMtx; const fp: TMtxFloatPrecision; const MulVec: TVec = nil); overload;

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.

Uses MtxExpr, Statistics;
procedure Example;
  var ResMtx: Matrix;
begin
  FullFactDesign(2,ResMtx);
end;
#include "MtxExpr.hpp"
#include "Statistics.hpp"
void __fastcall Example()
{
  sMatrix m;
  FullFactDesign(2,m,NULL);
}
Examples on GitHub
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!