美文网首页
多次多个对比对象的柱状图

多次多个对比对象的柱状图

作者: Gunther17 | 来源:发表于2018-11-10 20:29 被阅读31次
    p1=[1,1,1];
    p2=[2,2,2];
    p3=[3,3,3];
    y=[p1',p2',p3'];
    c=bar(y);
    
    color=[1,0,0;0,1,0;0.9,0.9,0.2];
    for i=1:3
    set(c(i),'FaceColor',color(i,:));
    end
    pos=get(gcf,'Position');
    scale=1.2;
    set(gcf,'Position',[pos(1),pos(2),pos(3)/scale,pos(4)/scale]);
    set(gca,'XLim',[0.5,3.5]);
    legend('PCA','PCA-L1 greedy','PCA-L1 nongreedy','location','Southeast');
    xlabel('Feature Number');
    ylabel('Recognition Accuracy');
    
    示例

    0-1的颜色表

    相关文章

      网友评论

          本文标题:多次多个对比对象的柱状图

          本文链接:https://www.haomeiwen.com/subject/qbrtfqtx.html