[问题]legend的title问题(不是整个图的title喔)

楼主: noisenose (noisenose)   2016-08-07 12:37:13
我是R2014b
想要打legend的title(不是整个图的title喔) 但
使用matlab官网上范例
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')
出现
Error using title (line 27)
Incorrect number of input arguments
Error in filename (line 6)
title(l,'My Legend Title')
使用网络上另一法
x = -pi:pi/20:pi;
y1 = sin(x);
y2 = cos(x);
plot(x,y1,x,y2)
l = legend('sin(x)','cos(x)');
v = get(l,'title');
set(v,'string','Legend Title');
出现
Error using matlab.graphics.illustration.Legend/get
There is no title property on the Legend class.
Error in filename (line 6)
v = get(l,'title');
新手上路 搞不太清楚问题出在哪里 麻烦版上先进指点 非常感谢!
作者: immortal1314 (Eden)   2016-08-07 14:05:00
试试看这样?figureplot(what)title('name')如果只是想加标题在图上的话
作者: sblk (Time)   2016-08-07 17:14:00
例一title括号中的 l 拿掉即可。即title('My Legend Title')
作者: profyang (prof)   2016-08-07 19:54:00
疴...legend的title跟一般的title是有啥不同?
作者: physbook (路克)   2016-08-07 21:10:00
这篇可解? https://goo.gl/bQXMnb不过简单一点应该用text或annotation就可以加字了
楼主: noisenose (noisenose)   2016-08-08 17:41:00
楼上大大那连结就是我写的二法ㄟ QQ 有其他法吗
作者: name0625 (lawpy)   2016-08-09 06:53:00
官网上的说明档是最新版本的,你应该用程式内的doc比较好

Links booklink

Contact Us: admin [ a t ] ucptt.com