各位高手 大家好
我想畫出一個下列的函數
function k=myFun(alpha,delta,phi,k0,N)
% N = number of iterations (you can make another function
% to determine when you want to stop.
k = zeros(N,1);
for i=1:N
if i==1
k(1) = k0;
else
k(i) = delta*(k(i-1)).^(alpha.*(1-phi));
end
end
我的參數設定成
0< alpha,delta,phi<1
但我沒有放進檔案中
我嘗試了 plot(k, k(i)) 結果顯示
Subscript indices must either be real positive integers or logicals.
也嘗試了 ezplot ('k(i)') 結果顯示
Error using inlineeval (line 14)
Error in inline expression ==> k(i)
Undefined function 'k' for input arguments of type 'double'.
還嘗試了 fplot ('k(i)') 結果顯示
Error using fplot (line 51)
Not enough input arguments.
可說是亂槍打鳥
但還是沒辦法畫出初學者的我想要的圖形
只好請求大家的幫忙
謝謝大家