如何在Matlab中将颜色图例放入图中?

时间:2013-04-01 07:34:17

标签: matlab plot legend

我在Matlab中画了如下照片。我已经尝试了很多方法在图片的末尾放置漂亮的颜色图例,每种颜色代表一个变量,例如'通胀','利率','汇率'等问题是我无法正确添加它们。我的绘制图表的代码如下所示。

我使用命令

fill

绘制图形时,数据是一个矩阵(以下代码中未提供,太大)。有人会教我如何在图表底部绘制颜色图例吗?谢谢!

enter image description here

%% Graph 1
z1 = squeeze(z(i_var(1),:,:));
xmin = x(1);
xmax = x(end);
ix = z1 > 0;
ymax = max(sum(z1.*ix));
ix = z1 < 0;
ymin = min(sum(z1.*ix));
if ymax-ymin < 1e-6
end

  figure('Name',endo_names(i_var(1),:)); 
subplot(2,1,1)
plot(x(2:end),z1(end,:),'k-','LineWidth',2)
hold on;
for i=1:gend
    i_1 = i-1;
    yp = 0;
    ym = 0;
    for k = 1:comp_nbr 
        zz = z1(k,i);
        if zz > 0
            fill([x(i) x(i) x(i+1) x(i+1)],[yp yp+zz yp+zz yp],k);
            yp = yp+zz;
        else
            fill([x(i) x(i) x(i+1) x(i+1)],[ym ym+zz ym+zz ym],k);
            ym = ym+zz;
        end
        hold on;
    end
end
plot(x(2:end),z1(end,:),'k-','LineWidth',2),
    set(gca,'xtick',[0 22 44 66 88 110]),
   set(gca,'xticklabel',{'1985q1', '1990q3', '1996q1', '2001q3', '2007q3',    '2013q1'}),title('Output gap')

axis([0 110 -3 3])
hold off;






%% Graph 2
z1 = squeeze(z(i_var(2),:,:));
xmin = x(1);
xmax = x(end);
ix = z1 > 0;
ymax = max(sum(z1.*ix));
ix = z1 < 0;
ymin = min(sum(z1.*ix));
if ymax-ymin < 1e-6
end

subplot(2,1,2)
plot(x(2:end),z1(end,:),'k-','LineWidth',2)
hold on;
for i=1:gend
    i_1 = i-1;
    yp = 0;
    ym = 0;
    for k = 1:comp_nbr 
        zz = z1(k,i);
        if zz > 0
            fill([x(i) x(i) x(i+1) x(i+1)],[yp yp+zz yp+zz yp],k);
            yp = yp+zz;
        else
            fill([x(i) x(i) x(i+1) x(i+1)],[ym ym+zz ym+zz ym],k);
            ym = ym+zz;
        end
        hold on;
    end
end
plot(x(2:end),z1(end,:),'k-','LineWidth',2),set(gca,'xtick',[0 22 44 66 88 110])  
set(gca,'xticklabel',{'1985q1', '1990q3', '1996q1', '2001q3', '2007q3', '2013q1'}), title('CPI inflation')

axis([0 110 -3 3])
hold off;

2 个答案:

答案 0 :(得分:1)

我不确定fill是否有办法使用传统的legend,所以这就是我要尝试的内容:在每个图表之后创建虚拟图并使用它们的颜色与您的颜色相同fill个对象,然后使用常规图例:

hold on
L1 = plot(NaN,NaN,'r',NaN,NaN,'b',NaN,NaN,'y');
legend(L1,'inflation', 'interest rate' ,'exchange rate');

设置图例的位置,请参阅documentation,例如:

  legend(L1,'inflation', 'interest rate' ,'exchange rate','Location','SouthOutside','Orientation','horizontal');

答案 1 :(得分:0)

我会使用命令: colorbar ,以达到您的目的。 该命令允许使用一些输入参数来选择用适当的单词表示哪种颜色。试试吧。