Effacer les filtres
Effacer les filtres

Saving smithchart in vectorized format

12 vues (au cours des 30 derniers jours)
Itamar Melamed
Itamar Melamed le 12 Août 2020
Commenté : Itamar Melamed le 19 Août 2020
Hello all,
I'm trying to save a smith chart plotted using smithplot command. When saving it as eps or pdf, the exported file is a regular image and not vectorized.
MATLAB version is 2020a.
How the save the plot correctly?
Best regards

Réponse acceptée

Harshendra Shah
Harshendra Shah le 19 Août 2020
Hi,
You can save plot as image or vector graphics file using 'exportgraphics' function. This function is introduced in R2020a.
Example -
data = sparameters('passive.s2p' );
s = sparameters(data,75);
smithplot(s,1,1, 'GridType','ZY')
ax = gca;
exportgraphics(ax,'splot.pdf','ContentType','vector')
You can refer to the following link for the same:
This link might also help.
Regards,
Harshendra
  1 commentaire
Itamar Melamed
Itamar Melamed le 19 Août 2020
Thank you very much

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Visualization and Data Export dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by