You are here: Symbol Reference > StatTools Namespace > Classes > TMtxAnova Class > TMtxAnova Properties > TMtxAnova.Replications Property
Stats Master VCL
ContentsIndex
Example

Note that Data.Rows mod 3 = 0 !!

MtxAnova1.Data.SetIt(6,2,false,[1,2,
                              2,3,
                              5,7,
                              12,1,
                              5,8,
                              3,8]);
MtxAnova1.IsAnova1 := false; // do two-way ANOVA
MtxAnova1.Replications := 3; // three rows per "group"
MtxAnova1.ResultDest := StringGrid1;
MtxAnova1.Recalc;
MtxAnova1->Data->SetIt(6,2,false,OPENARRAY(double,(1,2,
                              2,3,
                              5,7,
                              12,1,
                              5,8,
                              3,8)));
MtxAnova1->IsAnova1 = false; // do two-way ANOVA
MtxAnova1->Replications = 3; // three rows per "group"
MtxAnova1->ResultDest = StringGrid1;
MtxAnova1->Recalc();
Copyright (c) 1999-2025 by Dew Research. All rights reserved.