Add data type conversion block in simulink model using script
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have simulink model where I have a lot of input signals. I need to add data type conversion block to all the input signals. How can i do that using script?
0 commentaires
Réponses (1)
Fangjun Jiang
le 28 Jan 2021
Do a loop, using these functions
delete_line()
add_block()
add_line()
2 commentaires
Fangjun Jiang
le 30 Jan 2021
Your code looks good. Also a good practice to run line by line before running a loop.
>> strcat('Subsystem/',num2str(i),'/')
ans =
'Subsystem/1/'
Not the same as 'Subsystem/1'
Voir également
Catégories
En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!