Add data type conversion block in simulink model using script
8 views (last 30 days)
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?
0 Comments
Answers (1)
Fangjun Jiang
on 28 Jan 2021
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'
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!