Legend on MATLAB FIGURES
조회 수: 10 (최근 30일)
이전 댓글 표시
I am exporting my MATLAB figures into PDF format. I have altered the size of the figures but when I do so the legend on my graph is too big for the new size. How can I make the legend smaller so it fits nicely into the new graph. Also how can I change the size of the writing. I am using export settings?
댓글 수: 0
답변 (3개)
Thorsten
2015년 7월 6일
h = legend(... % your code here
set(h, 'FontSize', 8); % reduce font size used in legend
댓글 수: 2
Azzi Abdelmalek
2015년 7월 6일
t=0:0.1:10;
y1=sin(t);
y2=cos(t);
plot(t,y1,t,y2);
leg={'leg1','leg2'},
hleg=legend(leg);
set(hleg,'fontsize',6)
댓글 수: 1
Azzi Abdelmalek
2015년 7월 6일
편집: Azzi Abdelmalek
2015년 7월 6일
To get the legend handle
t=0:0.1:10;
y1=sin(t);
y2=cos(t);
plot(t,y1,t,y2);
leg={'leg1','leg2'},
legend(leg);
h=findobj(gcf,'type','legend')
set(h,'fontsize',20)
참고 항목
카테고리
Help Center 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!