HyperMath

BBDoe

BBDoe

Previous topic Next topic No expanding text in this topic  

BBDoe

Previous topic Next topic JavaScript is required for expanding text JavaScript is required for the print function  

Generates factorials for a Box-Behnken experimental design.

Syntax

Design = BBDoe(Factors)

Argument

Name

Description

 

Factors

An integer specifying the number of factors.  Must be  greater than 2 and less than 8.

Output

Name

Description

 

Design

A design matrix for Box-Behnken with specified number of factors.

Example

Generate the Box-Behnken design for three factors:

 

Syntax

 

design = BBDoe(3)

 

Result

 

design =

   -1    -1     0

   -1     1     0

    1    -1     0

    1     1     0

   -1     0    -1

   -1     0     1

    1     0    -1

    1     0     1

    0    -1    -1

    0    -1     1

    0     1    -1

    0     1     1

    0     0     0

    0     0     0

    0     0     0

 

See Also:

FullDoe