Exporting Simulink models as SVG in MATLAB R2016b and beyond?
이전 댓글 표시
I need to export SIMULINK models as SVG images. I did not find any straightforward way to do so. Please convey if there are any options available to me? My intention is to embed these images into a word document.
답변 (1개)
Fangjun Jiang
2018년 3월 21일
use print() with '-dsvg'
f14;
handle=get_param('f14','handle');
print(handle,'-dsvg','MyModel');
winopen MyModel.svg;
댓글 수: 1
Lance Hyatt
2023년 2월 10일
This works great! Thank you!
Just a clarification for those unaware:
f14; %this is the name of your SIMULINK model
카테고리
도움말 센터 및 File Exchange에서 Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!