photo

jamila nizamani


Utar

2014년부터 활동

Followers: 0   Following: 0

메시지

name: jamila nizamani
Age:32 years
female

Professional Interests: teaching in mathematics

통계

MATLAB Answers

5 질문
0 답변

순위
289,268
of 301,695

평판
0

참여
5 질문
0 답변

답변 채택
20.0%

획득한 표
0

순위
 of 21,386

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 176,117

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


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

대략 12년 전 | 답변 수: 0 | 0

0

답변

0

답변

질문


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년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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년 초과 전 | 답변 수: 0 | 0

0

답변

질문


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년 초과 전 | 답변 수: 2 | 0

2

답변