Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

What did I do wrong here?

1 visualizzazione (ultimi 30 giorni)
Zifeng Qiu
Zifeng Qiu il 4 Lug 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
u0 = 5000;
lambda = 0.03;
pm = 9000;
k = 100;
f = @(p) lambda*p*(1-p/pm)-k
pf = RK4(f,u0,10,100)

Risposte (1)

Gifari Zulkarnaen
Gifari Zulkarnaen il 5 Lug 2020
In your function RK4 line 8 to 11, you have two inputs for f function while the f function has only one input value, thus "too many input arguments" error occured.
  2 Commenti
Walter Roberson
Walter Roberson il 5 Lug 2020
Right. Use
f = @(t,p) lambda.*.p.*(1-p./pm)-k
Zifeng Qiu
Zifeng Qiu il 5 Lug 2020
Thank you very much

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by