photo

jamila nizamani


Utar

Active since 2014

Followers: 0   Following: 0

Message

name: jamila nizamani
Age:32 years
female

Professional Interests: teaching in mathematics

Statistics

MATLAB Answers

5 Questions
0 Answers

RANK
289,185
of 301,612

REPUTATION
0

CONTRIBUTIONS
5 Questions
0 Answers

ANSWER ACCEPTANCE
20.0%

VOTES RECEIVED
0

RANK
 of 21,357

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 175,767

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 1

View badges

Feeds

View by

0

answers

Question


the stiff IVP y'(t) = -30*y+30*t^2+2*t; y(0)=1, & exact solution is y(t)=e^-30*x +x^2. using fourth order Runge-kutta method. solve by hand and by matlab
function rungekutta h = 0.5; t = 0; w = 0.5; fprintf('Step 0: t = %12.8f, w = %12.8f\n', t, w); for i=1:4 k1 = h*f(t,w); ...

12 years ago | 1 answer | 0

1

answer

Question


The stiff initial value problem y'(x)=-30*y+30*x^2+2*x, y(0)=1 whose analytic solution is y(x)=e^-30*x +x^2. Using fourth order moving-center series approximation, solve in Mat lab.
A fourth order approximating series solution to the IVP is hence developed since can be determined from the initial value of t...

12 years ago | 0 answers | 0

0

answers

Question


I need your help. y'(t) = -30*y+30*t^2+2*t; y(0)=1, & exact solution is y(t)=e^-30*x +x^2. i can't understand what is different b/w kr4 plotting & its error . i need both graph n error please send me code.
function rungekutta123 h = 0.05; t = 0; w = 1; fprintf('Step 0: t = %12.8f, w = %12.8f\n', t, w); for i=1:5...

12 years ago | 2 answers | 0

2

answers