これは、並べてプロットしたい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.
私がやろうとしていることは可能ですか?