How can I code MBC constraints?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Where can I find documentation on creating code to setup MBC constraints? I have not found a way to import constraints from another file.
0 Kommentare
Antworten (1)
Ian Noell
am 6 Feb. 2019
Hi Brian,
Please see the following example code.
web(fullfile(docroot, 'mbc/mbc_gs/gasoline-case-study-design-of-experiment.html'))
The basic idea is to load the other project and then set the design constraint. Note, that the inputs in the constraint you are importing must match the input order of the design inputs. If the order does not match, you can use mbcdoe.designconstraint.MatchInputs.
Hope that helps,
Ian
Create Space-Filling Design
CreateDesign defaults to creating a design for the outer (global) level.
sfDesign = CreateDesign(TP, ...
'Type', 'Latin Hypercube Sampling',...
'Name', 'Space Filling');
Add Boundary Constraints
Load boundary constraints from another project file and add to design.
otherProject = mbcmodel.LoadProject( [matlabroot,'\toolbox\mbc\mbctraining\Gasoline_project.mat']);
boundaryConstraints = otherProject.Testplans(1).BoundaryModel('global');
% Design constraints are specified as an array of
% mbcdoe.designconstraint objects.
sfDesign.Constraints = boundaryConstraints;
0 Kommentare
Siehe auch
Kategorien
Mehr zu Classical Control Design finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!