You are here: Symbol Reference > Statistics Namespace > Functions > Statistics.FullFactDesign Function
Stats Master VCL
ContentsIndex
Example
var tmpVec: Vector;
  ResMtx: Matrix;
begin
  tmpVec.SetIt(false,[2,3,2]);
  FullFactDesign(tmpVec,ResMtx);
end;
#include "MtxExpr.hpp"
#include "Statistics.hpp"
void __fastcall Example()
{
  sMatrix m;
  sVector tmpVec;
  tmpVec.SetIt(false,OPENARRAY(double,(2,3,2)));
  FullFactDesign(tmpVec,m);
}
Copyright (c) 1999-2025 by Dew Research. All rights reserved.