0

我在Matlab中画了一张如下图。我尝试了很多方法在图片末尾添加漂亮的颜色图例,每种颜色代表一个变量,例如“通货膨胀”、“利率”、“汇率”等。问题是我无法正确添加它们。我绘制图表的代码附在下面。

我使用命令

fill

画图,数据是一个矩阵(后面代码中没有提供,太大了)。有人会教我如何在图表底部绘制颜色图例吗?谢谢!

在此处输入图像描述

%% 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;
4

2 回答 2

1

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

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

要设置图例的位置,请参阅文档,例如:

  legend(L1,'inflation', 'interest rate' ,'exchange rate','Location','SouthOutside','Orientation','horizontal');
于 2013-04-01T08:08:05.280 回答
0

为了您的目的,我会使用 command: colorbar 。该命令允许使用一些输入参数来选择用适当的词表示哪种颜色。试试看。

于 2013-04-01T11:41:43.617 回答