How to write a function to calculate ODE?

Write a function which for a given value of the time, current population and growth rate returns the value of the derivative for an exponential growth model:
dN/dt = rN
No idea where to start.

Réponses (2)

Torsten
Torsten le 5 Déc 2018

0 votes

Solve the ODE using Euler's method, e.g., and - instead of returning the solution N - return r*N.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by