An experiment I have to perform has six independent parameters. To generate a design of experiment, I used the MATLAB command:
>> ccdesign(6, 'type', 'circumscribed');
Here, I get an mxn matrix where each column as unique values as: [ -2.3784 -1.0000 0 1.0000 2.3784]
These values are different from my independent variables. For example, I can control the speed of flow in my experiment, which varies from 0 to 10 and not -2.378 to 2.378 as given by ccdesign.
How to replace these values given ccdesign with my actual values of variables?