What is the best way to export a figure into visio as vector?
이전 댓글 표시
I have a plot in Matlab and I want to export it to visio to use it later in an article. What is the best way to do that?
답변 (1개)
Dev
2025년 4월 22일
To export a MATLAB plot for use in Microsoft Visio, we must preserve its vector quality so that the lines and text remain crisp when resized. Here are some of the best options to achieve the same:
- Export as Enhanced Metafile (EMF): Visio supports EMF files well, and MATLAB can export to this format as follows-
print('plot_name', '-dmeta')
- Export as SVG (Scalable Vector Graphics): Use the following command in MATLAB to export to this format-
print('plot_name', '-dsvg')
The above "print" command exports the plot in the current directory and we can then include them directly in Visio.
I hope this helps.
카테고리
도움말 센터 및 File Exchange에서 Vehicle Dynamics Blockset에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!