Community Profile

photo

Heejun Lee


Last seen: mehr als 2 Jahre vor Aktiv seit 2021

Followers: 0   Following: 0

Statistiken

  • Thankful Level 2
  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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) // ...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort