photo

민석 최


Last seen: 3 years ago Active since 2022

Followers: 0   Following: 0

Statistics

MATLAB Answers

3 Questions
0 Answers

RANK
219,602
of 300,302

REPUTATION
0

CONTRIBUTIONS
3 Questions
0 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
0

RANK
 of 20,911

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,040

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Question


How can I change this code to euler backward method? (implicit method)
f = @(t,y) -100000*y + 99999*exp(-t); t0 = 0; y0 =0; h = 0.01; tn = 2; n = (tn-t0)/h; t(1)=t0; y(1)=y0; for i=1:n t(i+...

3 years ago | 1 answer | 0

1

answer

Question


How can I change this explicit method code to the implicit method code?
f = @(t,y) -100000*y + 99999*exp(-t); t0 = 0; y0 =0; h = 0.01; tn = 2; n = (tn-t0)/h; t(1)=t0; y(1)=y0; for i=1:n t(i+...

3 years ago | 1 answer | 0

1

answer

Question


How can I change this explicit method code to the implicit method code?
f = @(t,y) -100000*y + 99999*exp(-t); t0 = 0; y0 =0; h = 0.01; tn = 2; n = (tn-t0)/h; t(1)=t0; y(1)=y0; for i=1:n t(i+...

3 years ago | 0 answers | 0

0

answers