我正在尝试使用字符串的单元格数组,以便为图表中的每个样本构建图例,如下所示:
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'.
我能做些什么来解决它吗?
由于