Factdes: Difference between revisions
Jump to navigation
Jump to search
imported>Jeremy (Importing text file) |
imported>Bob No edit summary |
||
Line 1: | Line 1: | ||
===Purpose=== | ===Purpose=== | ||
Line 10: | Line 9: | ||
===Description=== | ===Description=== | ||
The input fact is the number of factors in the design and the output desgn is the experimental design matrix. | The input <tt>fact</tt> is the number of factors in the design and the output <tt>desgn</tt> is the experimental design matrix. | ||
desgn = factdes(fact) | :desgn = factdes(fact) % provides a full factorial two level design. | ||
Optional input ''levl'' allows for multiple level designs. | Optional input ''levl'' allows for multiple level designs. | ||
desgn = factdes(fact,'' levl''); provides a full | :desgn = factdes(fact,'' levl''); provides a full factorial <tt>levl</tt> level design {default levl = 2}. | ||
====Inputs==== | |||
* '''fact''' = number of factors. | |||
====Optional Inputs==== | |||
* '''levl''' = number of levels (if omitted, default value = 2). | |||
====Outputs==== | |||
* '''desgn''' = experimental design matrix. | |||
===See Also=== | ===See Also=== | ||
[[distslct]], [[doptimal]], [[ffacdes1]], [[stdsslct]] | [[distslct]], [[doptimal]], [[ffacdes1]], [[stdsslct]] |
Revision as of 09:13, 9 October 2008
Purpose
Output a full factorial design matrix.
Synopsis
- desgn = factdes(fact,levl)
Description
The input fact is the number of factors in the design and the output desgn is the experimental design matrix.
- desgn = factdes(fact) % provides a full factorial two level design.
Optional input levl allows for multiple level designs.
- desgn = factdes(fact, levl); provides a full factorial levl level design {default levl = 2}.
Inputs
- fact = number of factors.
Optional Inputs
- levl = number of levels (if omitted, default value = 2).
Outputs
- desgn = experimental design matrix.