How to upgrade 2013a simulink model to 2016b?
1 view (last 30 days)
Show older comments
I need to understand the procedure to upgrade simulink model from 2013a to 2016b. In general, what are the steps involved for doing this.
0 Comments
Answers (1)
ES
on 10 Mar 2017
you can use slupdate/upgradeadvisor for doing this.
https://in.mathworks.com/help/simulink/slref/upgradeadvisor.html
load_system('vdp');
save_system('vdp',fullfile(tempdir, 'myvdp'))
upgrader = upgradeadvisor('myvdp')
analyze(upgrader);
upgrade(upgrader);
0 Comments
See Also
Categories
Find more on Model Upgrades 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!