필터 지우기
필터 지우기

How to modify figures programmatically?

조회 수: 5 (최근 30일)
Ali Baig
Ali Baig 2018년 8월 29일
댓글: Walter Roberson 2018년 8월 29일
I am trying to write a code which
  1. Full screen the figure.
  2. Plots the graph.
  3. Change font size to 24.
  4. Change line width to 2.
  5. Turns grid on, and labels x, and y-axes.
  6. Put a legend with font size 24.
  7. Saves the file as eps, png, and fig with 600 dpi resolution.
figureFullScreen
loglog(x1, y1, x2, y2)
set(gca,'fontsize', 24)
set(findall(gca, 'Type', 'Line'),'LineWidth',2);
grid on, xlabel('\Delta x'), ylabel('Maximum Error')
legend({'Maximum Error in Conventional Scheme','Maximum Error in Proposed Scheme'}, 'FontSize', 28)
print(gcf, 'OneD_E1_a1_Convergence_Study_Max_Error','-depsc','-r600');
print(gcf, 'OneD_E1_a1_Convergence_Study_Max_Error','-dpng','-r600');
savefig('OneD_E1_a1_Convergence_Study_Max_Error.fig'),
Now I want to achieve
  1. Save .fig file in 600 dpi.
  2. expand axis to fill figure.
I need help with these 2 task.
Thank you.
  댓글 수: 2
dpb
dpb 2018년 8월 29일
See the 'Position' and 'OuterPosition' properties and 'Units'
I'm not sure you can enforce a specific dpi into the .fig file.
Walter Roberson
Walter Roberson 2018년 8월 29일
.fig files cannot be saved as a particular resolution. .fig files are copies of the graphics objects such as the line and legend objects as data structures. .fig files are not rendering of graphics, they are the data structures that you can reload to recreate the graphics objects.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Specifying Target for Graphics Output에 대해 자세히 알아보기

태그

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by