photo

jamila nizamani


Utar

Aktiv seit 2014

Followers: 0   Following: 0

Nachricht

name: jamila nizamani
Age:32 years
female

Professional Interests: teaching in mathematics

Statistik

MATLAB Answers

5 Fragen
0 Antworten

RANG
77.400
of 301.958

REPUTATION
0

BEITRÄGE
5 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
20.0%

ERHALTENE STIMMEN
0

RANG
 of 21.472

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 177.745

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


The stiff IVP y'=-30*y+30*t^2+2*t, y(0)=1 whose analytic solution is y(t)=e^-30*t+t^2. using fourth order runge kutta method, h=0.05,this code only find y and t values but i need absolute error [yrk4 - yexact]. please send me new code.
function rungekutta123 h = 0.05; t = 0; w = 1; fprintf('Step 0: t = %12.8f, w = %12.8f\n', t, w); for i=0:0.05:...

mehr als 12 Jahre vor | 0 Antworten | 0

0

Antworten

0

Antworten

Frage


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

mehr als 12 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 12 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

mehr als 12 Jahre vor | 2 Antworten | 0

2

Antworten