Borrar filtros
Borrar filtros

Error using ode45

1 visualización (últimos 30 días)
Sam
Sam el 21 de Dic. de 2017
Respondida: James Tursa el 21 de Dic. de 2017
I have created the following function for my differential equation
function y=opdracht8(x)
y = 0.08x -2000
and i try to solve it with ode45 but matlab gives an error...
[y,t] = ode45(@opdracht8,[0 40], 0);
plot(y,t);
What do i do wrong?

Respuesta aceptada

James Tursa
James Tursa el 21 de Dic. de 2017
Incorrect number of arguments for the derivative function, and incorrect syntax within that function. E.g.,
function y=opdracht8(t,x)
y = 0.08*x -2000;

Más respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by