Heejun Lee
Followers: 0 Following: 0
Feeds
提问
How to compare solution of ODE for each time step?
This is the code I'm using now. opts = odeset('MaxStep', 1); [T,Y] = ode45(@hw0,[0 100],[0.01 10], opts); plot(T,Y) And hw0...
3 years 前 | 1 个回答 | 0
1
个回答提问
How to use figure out steady state during ODE
This is the code I am using // opts = odeset('MaxStep', 1); [T,Y] = ode45(@hw0,[0 100],[0.01 10], opts); plot(T,Y) // ...
3 years 前 | 1 个回答 | 0
1
个回答提问
How can I use ODE45 continuously?
This is the code I initially made. [T,Y] = ode45(@hw,[0 100],[0.01 10]); And this is function hw // function dy = hw(t,y...
3 years 前 | 1 个回答 | 0