MATLAB ode solver의 특징
본 자료는 5페이지 의 미리보기를 제공합니다. 이미지를 클릭하여 주세요.
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
해당 자료는 5페이지 까지만 미리보기를 제공합니다.
5페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

MATLAB ode solver의 특징에 대한 보고서 자료입니다.

목차

1. ode solver의 신속성
2. ode solver의 정확성

본문내용

과제 : ode solver를 모두 사용해서 ode problem을 풀어보고
걸리는 시간과 정확성을 비교하라.

Example 1.7

function [ dx ] = exam7( t,x )
ep=1;
dx(1,1)=x(2);
dx(2,1)=-x(1)+ep*(1-(x(1))^2)*x(2);
end

t_f=500;
x0=[1 0];
fprintf('ode113\n');
tic;
[t_113 x_113]=ode113(@exam7,[0 t_f],x0);
toc;
fprintf('ode15s\n');
tic;
[t_15s x_15s]=ode15s(@exam7,[0 t_f],x0);
toc;
fprintf('ode23\n');
tic;
[t_23 x_23]=ode23(@exam7,[0 t_f],x0);
toc;
fprintf('ode23s\n');
tic;
[t_23s x_23s]=ode23s(@exam7,[0 t_f],x0);
toc;
fprintf('ode23t\n');
tic;
[t_23t x_23t]=ode23t(@exam7,[0 t_f],x0);
toc;
fprintf('ode23tb\n');
tic;
[t_23tb x_23tb]=ode23tb(@exam7,[0 t_f],x0);
toc

키워드

  • 가격2,300
  • 페이지수16페이지
  • 등록일2012.05.22
  • 저작시기2012.5
  • 파일형식아크로뱃 뷰어(pdf)
  • 자료번호#748596
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니