Legend on MATLAB FIGURES

14 Ansichten (letzte 30 Tage)
Bran
Bran am 6 Jul. 2015
Beantwortet: Sid am 7 Jul. 2015
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?

Antworten (3)

Thorsten
Thorsten am 6 Jul. 2015
h = legend(... % your code here
set(h, 'FontSize', 8); % reduce font size used in legend
  2 Kommentare
Bran
Bran am 6 Jul. 2015
Is there any way to do this on the actual figure, if you have it already saved
Thorsten
Thorsten am 7 Jul. 2015
Bearbeitet: Thorsten am 7 Jul. 2015
No, I don't think so.

Melden Sie sich an, um zu kommentieren.


Azzi Abdelmalek
Azzi Abdelmalek am 6 Jul. 2015
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 Kommentar
Azzi Abdelmalek
Azzi Abdelmalek am 6 Jul. 2015
Bearbeitet: Azzi Abdelmalek am 6 Jul. 2015
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)

Melden Sie sich an, um zu kommentieren.


Sid
Sid am 7 Jul. 2015
Perhaps it's a bit out of scope for this topic, but since you mentioned about figures being saved, thought I suggest export_fig at FEX (Link here .)

Community Treasure Hunt

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

Start Hunting!

Translated by