这是我尝试并排绘制的 2 个函数:
numgraphs = 2;
x = 1:5;
y1 = x.^2;
y2 = x.^3;
funcs = cell(y1, y2);
for i=1:numgraphs
subplot(1,2,i);
plot(x,funcs(i));
end
但我得到了这个错误:
Error using plot
Conversion to double from cell is not possible.
我正在尝试做的事情可能吗?