大家好,用MATLAB繪製
我有一個matlab新問題,我想用Plot生成一個圖!
我寫道:
X=[0, 2.5];
P = 0.1 * ones(N,11);
N=length(X);
for n=1:N
for t=1:10
P(n,t+1)=X(n)*P(n,t)*[1-P(n,t)];
end
end
plot(t,P)
但同樣的計算機回答我說:
??? Error using ==> plot
Vectors must be the same lengths.
Error in ==> test at 10
plot(t,P)
我沒有,爲什麼任何想法?
請正確格式化你的問題;您可以通過選擇代碼並單擊編輯器中標記爲** {}的按鈕來清理代碼。 –
我會的,抱歉打擾你的方式... –