ODE 23 PROBLEM??

7 次查看(过去 30 天)
Fernando Márquez Sañay
F = @(t,y)y
[t,y]=ode23(F,[0 1],1)
Output argument "X" (and maybe others) not
assigned during call to "ode23".
What is the problem????

回答(1 个)

madhan ravi
madhan ravi 2019-1-5
编辑:madhan ravi 2019-1-5
Probably you may have a function file named F/ode23 please delete it or rename it , your code works perfectly fine.
[t,y]=ode23( @(t,y) y ,[0 1], 1) % can also use ode45
what shows up for
which ode23 -all
which F -all

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by