How can I code MBC constraints?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Ian Noell
le 6 Fév 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 commentaires
Voir également
Catégories
En savoir plus sur Classical Control Design dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!