photo

Heejun Lee


Last seen: 4 years ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB Answers

3 Questions
0 Answers

RANK
253,004
of 300,851

REPUTATION
0

CONTRIBUTIONS
3 Questions
0 Answers

ANSWER ACCEPTANCE
66.67%

VOTES RECEIVED
0

RANK
 of 21,094

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 171,294

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


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

4 years ago | 1 answer | 0

1

answer

Question


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

4 years ago | 1 answer | 0

1

answer

Question


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

4 years ago | 1 answer | 0

1

answer