How does integral2 work?

조회 수: 17 (최근 30일)
Peter Uwsen
Peter Uwsen 2019년 7월 1일
댓글: Peter Uwsen 2019년 7월 2일
Hello,
I'm using the integral2 function for a project. In my report I have to explain what numerical concept integral2 is based on.
I alraedy checked out the referenced papers in the MATLAB documentation, but those where going only into details, so to complicated for me since I don't know much about numerical integration..
Any ideas where I could find some informtaion about the basic principle of the function?
Thank you very much in advance!

채택된 답변

Josh Meyer
Josh Meyer 2019년 7월 2일
편집: Josh Meyer 2019년 7월 2일
The basic principle of numeric integration is you are calculating the area under the curve by splitting it up into smaller pieces and then adding up the results. There are several different methods to do that, and I recommend reading this Wikipedia page to get started:
Adaptive algorithms like the ones used in integral/integral2 track the error in the calculation, and continually subdivide the integration interval until the tolerance is met. Since they are able to automatically determine that some intervals require tiny pieces while others can use large pieces, they are able to handle "problematic" integrands but at the same time are very fast when the integrand is not problematic:
A common theme you will see in numerical solutions of ODEs and quadrature problems is balancing computation time with accuracy. You can always increase accuracy by using more intervals, or taking tinier steps, but it greatly increases the computation time. So adaptive algorithms that can automatically change the number of intervals/step size to meet the specified error tolerance provide a good balance.
Finally, note that integral2 has two different methods it uses depending on whether the integration interval is infinite or not:
  댓글 수: 1
Peter Uwsen
Peter Uwsen 2019년 7월 2일
Thank you very much for this little guide! :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by