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

 채택된 답변

Harshendra Shah
Harshendra Shah 2020년 8월 19일

1 개 추천

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Visualization and Data Export에 대해 자세히 알아보기

제품

릴리스

R2020a

질문:

2020년 8월 12일

댓글:

2020년 8월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by