Dear all, what is the meaning of including number of iterations within ode45 syntax?
조회 수: 2 (최근 30일)
이전 댓글 표시
What is the meaning of the followig command? [t,theta]=ode45(@F,tbegin,tEnd,thetaInit,nIters,p) Where nIters=20000. What is the role played by the 'nIters' here? Anyhelp would be greatly appreciated. Thank you.
댓글 수: 0
답변 (1개)
Steven Lord
2016년 11월 2일
It's (trying) to use an older syntax for the ode45 function, one that is no longer documented. If you want to pass additional parameters into your integrand function (F in this case) there are other techniques you should use instead.
댓글 수: 0
참고 항목
카테고리
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!