如何在Matlab中的图例中添加字符串的单元格数组?

时间:2016-04-12 02:06:07

标签: string matlab legend cell-array

我正在尝试使用字符串的单元格数组,以便为​​图表中的每个样本构建图例,如下所示:

x = [1 5 3 5 6];
y = [3 6 3 6 4];
Legend = cell(5,1);
Legend{1} = 'a';
Legend{2} = 'b';
Legend{3} = 'c';
Legend{4} = 'd';
Legend{5} = 'e';
figure
hold on
for k=1:5
    plot(x(k),y(k),'o')
end
legend(Legend)

但是我从matlab收到以下消息错误:

Error using subsindex
Function 'subsindex' is not defined for values of class 'cell'.

我能做些什么来解决它吗?

由于

0 个答案:

没有答案