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!