How to upgrade 2013a simulink model to 2016b?
조회 수: 3 (최근 30일)
이전 댓글 표시
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
답변 (1개)
ES
2017년 3월 10일
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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!