How to save figures in .eps format with larger font sizes on title and x and y label ?
    조회 수: 8 (최근 30일)
  
       이전 댓글 표시
    
How to save figures in .eps format with larger font sizes on title and x and y label ?
댓글 수: 0
채택된 답변
  the cyclist
      
      
 2014년 6월 10일
        One of several possible ways to do this:
figure
plot(rand(3),rand(3))
title('Title','FontSize',14)
xlabel('X label','FontSize',16)
ylabel('Y label','FontSize',18)
print('-deps','filename.eps')
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
			
	제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!