Good Day Sir/Ma'am. May i ask what is the meaning of ode45 here and @dfunc? --------> [t,x] = ode45(@dfunc, tspan, x0);
조회 수: 4 (최근 30일)
이전 댓글 표시
Thank you very. Hoping for response.
댓글 수: 1
채택된 답변
James Tursa
2018년 3월 21일
편집: James Tursa
2018년 3월 21일
ode45 is a numerical integration routine
doc ode45
@dfunc is a function handle that points to a function called dfunc. This function takes two inputs, time and current state vector, and outputs the derivative of the state vector at that particular time.
doc function_handle
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!