Can we create SImulink DataDictionary from command window through APIs.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Gaurav Shukla
le 18 Déc 2014
Réponse apportée : Donn Shull
le 5 Fév 2015
I wish to Automate simulink Data Dictionary creation by reading the parameters from excel and creating simulink object and then placing those objects in proper sldd files.
So far i can read data from excel,and Create simulink objects. But I have to manually add a sldd to the model and drag drop simulink objects from base workspace.
Can this Manual part be automated ?
--Thanks
0 commentaires
Réponse acceptée
Donn Shull
le 5 Fév 2015
list = who
dictH = Simulink.dd.create('NewDictionary.sldd')
dictH.beginTransaction
for n = 1:numel(list)
if strcmp(class(eval(list{n})), 'Simulink.Parameter')
dictH.insertEntry('Global', list{n}, eval(list{n}))
end
end
dictH.commitTransaction
dictH.close
dictH.delete
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Manage Design Data 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!