[수치해석]Runge-kutta 4th-order Method and Implicit Trapezoidal Method
본 자료는 미만의 자료로 미리보기를 제공하지 않습니다.
닫기
  • 1
  • 2
  • 3
해당 자료는 1페이지 까지만 미리보기를 제공합니다.
1페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

[수치해석]Runge-kutta 4th-order Method and Implicit Trapezoidal Method에 대한 보고서 자료입니다.

본문내용

Method\n");
printf(" h = 0.25 \t\t error\t\t h = 0.25\t\t error\n");
for(i=0 ; i<=4 ; i++)
{
t = 0.25*i;
printf("w(%1.1f) = %e\t%e\tw(%1.1f) = %f\t%e\n",t ,w[i] ,absol(y(t)-w[i]) ,t ,v[i], absol(y(t)-v[i]));
}
}
double f(double t, double w)
{
return 5*exp(5*t)*(w-t)*(w-t)+1;
}
double absol(double x)
{
if(x>=0)return x;
else return (-1) * x;
}
double y(double t)
{
return t - exp(-5*t);
}
Result

키워드

  • 가격1,000
  • 페이지수3페이지
  • 등록일2006.06.01
  • 저작시기2006.5
  • 파일형식한글(hwp)
  • 자료번호#352519
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니