legend code doesn't work

12 次查看(过去 30 天)
x = -pi:pi/20:pi; y1 = sin(x); y2 = cos(x); plot(x,y1,x,y2) l = legend('sin(x)','cos(x)'); title(l,'My Legend Title')
This code doesn't display the legend title. I've tried various "h." things, title(legend,"..."), title(string,"...") etc and the best I can get is to display some text above the legend (through the top axis). Using Matlab 2013 at work.

采纳的回答

Star Strider
Star Strider 2016-6-10
You’re looking at the online documentation, that is for R2016a. In the documentation for the R2013a version of legend, the legend title property does not exist. If I remember correctly, it only became available in R2015b or R2016a.

更多回答(3 个)

Azzi Abdelmalek
Azzi Abdelmalek 2016-6-10
编辑:Azzi Abdelmalek 2016-6-10
x = -pi:pi/20:pi;
y1 = sin(x);
y2 = cos(x);
plot(x,y1,x,y2)
l = legend({'sin(x)','cos(x)'});
title(l,'My Legend Title')

Gary B
Gary B 2016-6-10
Thanks, but that doesn't work. I even cut and pasted it.

Gary B
Gary B 2016-6-10
Cheers!
Yes it's actually 2013b, but I'm sure it's the same.
That's a few hours of my life I won't get back! LOL
I guess I'll have to add text or some such.
  1 个评论
Star Strider
Star Strider 2016-6-10
A text object would work. Use the 'Position' property of the legend to calculate where to put the text object.
This will get you started:
x = -pi:pi/20:pi;
y1 = sin(x);
y2 = cos(x);
plot(x,y1,x,y2)
l = legend('sin(x)','cos(x)');
pos = get(l, 'Position');
ht = text(1,1, 'My Legend Title');
set(ht, 'Position',[pos(1)+pos(4)+1, pos(2)+pos(3)], 'VerticalAlignment','bottom', 'HorizontalAlignment','left')
You will obviously have to experiment to get the result you want with your plot. See the 'Position' property for details on the meaning of the values of the vector it returns. Note that you have to use initial (x,y) coordinates to plot the text, and they can be anything. Then use the 'Position' property to put it wherever you want it.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by