[繪圖] 函數繪圖 有參數
各位高手 大家好
我想畫出一個下列的函數
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.
可說是亂槍打鳥
但還是沒辦法畫出初學者的我想要的圖形
只好請求大家的幫忙
謝謝大家
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 176.253.138.164
※ 文章網址: https://www.ptt.cc/bbs/MATLAB/M.1477995457.A.582.html
推
11/01 23:00, , 1F
11/01 23:00, 1F
→
11/02 19:09, , 2F
11/02 19:09, 2F
→
11/03 00:36, , 3F
11/03 00:36, 3F
推
11/03 11:38, , 4F
11/03 11:38, 4F
→
11/03 11:39, , 5F
11/03 11:39, 5F
→
11/03 11:41, , 6F
11/03 11:41, 6F
→
11/04 05:54, , 7F
11/04 05:54, 7F
MATLAB 近期熱門文章
PTT數位生活區 即時熱門文章