Borrar filtros
Borrar filtros

ode45显示错误使用 odearguments

9 visualizaciones (últimos 30 días)
顾沁
顾沁 el 15 de Mzo. de 2023
Respondida: Varun el 20 de Mzo. de 2023

Respuestas (1)

Varun
Varun el 20 de Mzo. de 2023
Hello!
Seeing the syntax with which you have called the ode45 function, I think the issue is with the parameters passed. The function "volterrab" has been passed in inverted commas. But the function syntax needs a function handle as the first input argument. So, try the syntax:
[t,x]=ode45(@volterra, ts,x0);
For more information, you may refer to the following documentation:
Hope this helps!

Categorías

Más información sobre 编程 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!