Mathematica中文论坛-非官方
标题:
matlab 多条曲线的legend,标注,不同颜色,粗线
[打印本页]
作者:
meatball1982
时间:
2016-2-3 09:01
标题:
matlab 多条曲线的legend,标注,不同颜色,粗线
这是我比较喜欢的一种方法来表示不同曲线。在同一个图中,可以通过色彩和粗细同时表达,当然,还有marker.
用for 可以把标注加在一个结构体当中。
fig_multi_line.jpg
(164.75 KB, 下载次数: 1354)
下载附件
2016-2-3 08:59 上传
clear all
clc
clf
x=1:0.2:(2*pi);
n_line=9;
col_mm=jet(9);
hold on
for i=1:n_line
y=sin(x+i*pi/10)+exp(x/5);
plot(x,y,'.-','Color',col_mm(i,:),'LineWidth',2+0.5*i);
str{i}=['Lin=',mat2str(i*0.01)];
end
legend(str,'location','northwest')
hold off
%% logs
% mod : 03-Feb-2016 09:00:23
% mod by : mm
复制代码
欢迎光临 Mathematica中文论坛-非官方 (http://ilovemathematica.com/)
Powered by Discuz! X3.2