How to solve problem 2?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
This is a problem dynamics problem, how do I solve for the variable k in the function?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/327383/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/327386/image.png)
u0 = 5000; % This is the answer to the first problem
lambda = 0.03;
pm = 9000;
k = 100;
f = @(t,p) lambda*p*(1-p/pm)-k;
[t,P] = RK4(f,u0,100,10)
Pf = P(end)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/327389/image.png)
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Mathematics and Optimization finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!