Add data type conversion block in simulink model using script
Show older comments
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?
Answers (1)
Fangjun Jiang
on 28 Jan 2021
1 vote
Do a loop, using these functions
delete_line()
add_block()
add_line()
2 Comments
Fangjun Jiang
on 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'
Categories
Find more on Programmatic Model Editing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!