Saving smithchart in vectorized format
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Itamar Melamed
am 12 Aug. 2020
Kommentiert: Itamar Melamed
am 19 Aug. 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
0 Kommentare
Akzeptierte Antwort
Harshendra Shah
am 19 Aug. 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:
Regards,
Harshendra
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Visualization and Data Export finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!