Info
この質問は閉じられています。 編集または回答するには再度開いてください。
What did I do wrong here?
1 回表示 (過去 30 日間)
古いコメントを表示
I am trying to calculate the amount of fish I can catch in a year based on this model. What did I do wrong? The answer that I got is super huge.
u0 = 5000;
lambda = 0.03;
pm = 9000;
f = @(t,k) lambda*500*(1-500/pm)-k;
[t,k] = RK4(f,u0,100,10)
Kf = k(end)
2 件のコメント
Image Analyst
2020 年 7 月 6 日
What I get is
Unrecognized function or variable 'RK4'.
Where did you define that?
回答 (1 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!