What is the best way to export a figure into visio as vector?

10 vues (au cours des 30 derniers jours)
Amro Alsabbagh
Amro Alsabbagh le 20 Juin 2022
Réponse apportée : Dev le 22 Avr 2025
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?

Réponses (1)

Dev
Dev le 22 Avr 2025
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.

Catégories

En savoir plus sur Simulation, Tuning, and Visualization dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by