photo

jamila nizamani


Utar

Con actividad desde 2014

Followers: 0   Following: 0

Mensaje

name: jamila nizamani
Age:32 years
female

Professional Interests: teaching in mathematics

Estadística

MATLAB Answers

5 Preguntas
0 Respuestas

CLASIFICACIÓN
77.400
of 301.973

REPUTACIÓN
0

CONTRIBUCIONES
5 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
20.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.476

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 177.809

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


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

más de 12 años hace | 0 respuestas | 0

0

respuestas

Pregunta


-30*y+30*x+2*x this is stiff ODEs, solve by runge kutta method with 50 iteration step size is 0.05. can you defined how to identify interval B/C i don't know what is interval please help me and i also need Actual solution exact values.
function yp=f(x,y) yp=-30*y+30*x^2+2*x; %yp=y' x0=0; y0=1; xf=1; n=10; h=(xf-x0)/n; x=x0; y=y0; X=x; Y=y...

más de 12 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 12 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 12 años hace | 2 respuestas | 0

2

respuestas