dobj = addReplicates(dobj,numreps)
adds numreps replicates to the design of experiments (DOE) object
dobj. A replicate is a duplicate of the original runs in the object
when it is created.
Augmented design, returned as a DOE object of the same type as the input design
dobj. The augmented
design contains the original runs in the input design and k
replicates, where k equals the number of replicates in the input
design plus numreps. The function sets the
NumReplicates property of the augmented design object equal to
k.
In some cases after object creation, a fullFactorialDOE object contains a set of runs and a replicate of those
runs. In this case, the addReplicates function duplicates only the
original (nonreplicate) runs.
When you add runs to an optimalDOE
object using the addruns
function, and then add a replicate using addReplicates, the software
does not include the added runs in the replicate.
If the input design dobj has a randomized run order
(dobj.IsRandomized = 1), the function randomizes
the run order of the augmented design.