matlab 中使用subplot时怎么用legend标注。我再一个图中画4个子图,想给他们共同标注应该怎么办

 我来答
真greatdju
推荐于2017-09-26 · TA获得超过3856个赞
知道小有建树答主
回答量:1300
采纳率:91%
帮助的人:750万
展开全部
x=linspace(-2,2);
subplot 221
plot(sin(x),'r');
subplot 222
plot(sin(2*x),'g');
subplot 223
plot(sin(3*x),'b');
subplot 224
plot(sin(4*x),'k');
a=axes('visible','off');
hold on;
plot(0,0,'r');
plot(0,0,'g');
plot(0,0,'b');
plot(0,0,'k');
legend('sin x','sin 2x','sin 3x','sin 4x','location','north')
追问
非常感谢!
但是这样画出来的图示会和第四个图重合,
如果我只画前三个图,然后把图示直接画在第四个图里,有没有办法?
追答
clear
clc

x=linspace(-2,2);
subplot 221
plot(x,sin(x),'r');
subplot 223
plot(x,sin(2*x),'g');
subplot 224
plot(x,sin(3*x),'b');
a=axes('visible','off');
hold on;
plot(0,0,'r');
plot(0,0,'g');
plot(0,0,'b');
legend('sin x','sin 2x','sin 3x','location','northeast')
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式