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
Fangjun Jiang 2018년 3월 21일
use print() with '-dsvg'
f14;
handle=get_param('f14','handle');
print(handle,'-dsvg','MyModel');
winopen MyModel.svg;

댓글 수: 1

This works great! Thank you!
Just a clarification for those unaware:
f14; %this is the name of your SIMULINK model

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Simulink에 대해 자세히 알아보기

질문:

2018년 3월 21일

댓글:

2023년 2월 10일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by