How to do Design of Experiments with Box-Behnken design with my required levels?

37 次查看(过去 30 天)
I need to do Design of Experiments with Box-Behnken design. when i enter "dBB = bbdesign(3)" it will generate a 18x3 matrix like shown in figure. Here -1 means lower point. 0 means middle level.1 means upper level. But how can i set level for my levels to my value. The levels also shown in the figure.
i need to get the matrix like 40, 30 , 0.5 figure shown not -1, 0, 1.

回答(2 个)

Thomas Koelen
Thomas Koelen 2015-5-18
编辑:Thomas Koelen 2015-5-18
dBB=bbdesign(3);
dBB(dBB==-1)=40;
dBB(dBB==0)=30;
dBB(dBB==1)=0.5;
dBB
Here you go.
Dbb=
40.0000 40.0000 30.0000
40.0000 0.5000 30.0000
0.5000 40.0000 30.0000
0.5000 0.5000 30.0000
40.0000 30.0000 40.0000
40.0000 30.0000 0.5000
0.5000 30.0000 40.0000
0.5000 30.0000 0.5000
30.0000 40.0000 40.0000
30.0000 40.0000 0.5000
30.0000 0.5000 40.0000
30.0000 0.5000 0.5000
30.0000 30.0000 30.0000
30.0000 30.0000 30.0000
30.0000 30.0000 30.0000

BISWAJYOTI PANI
BISWAJYOTI PANI 2017-10-15
Its unfortunate to see that till the date there are no sequential steps available to create Box-Behnken DOE with the required levels. No option to know the point type (factorial or center point), Standard order, block which is essential part execute to BB-Design in other statistical software (like design expert, Minitab). Any developer viewing this requested to post the link or add the steps.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by