0
繪製每個人這是我嘗試用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.
正是我想要做的可能嗎?