如何在 matlab 中添加条形图的三个图例?

How to add three legends of a bar graph in matlab?

我有一个条形图,它计算三种不同方法的进动和召回,并用三种不同的颜色表示它们,我使用的代码如下

x=[0.4,0.31,0.21]
y=[0.45,0.38,0.27]
bar(x,y,0.1)
h = bar(x,diag(y),0.1,'stacked');
xlabel('precession')
ylabel('recall') 

我想添加一个应该显示 maroon color is for indiscernible relationgreen is for discernible relationblue is for equivalence relation

的图例

试试这个:

legend('indiscernible relation','cernible relation' ,'equivalence relation')

颜色将自动插入到图例中