Composite Simpson's rule for irregularly spaced data

버전 1.0.4 (41.8 KB) 작성자: Marko
Composite Simpson's rule for irregularly spaced data based on a parabolic polynomial fit.
다운로드 수: 13
업데이트 날짜: 2023/7/3

라이선스 보기

From the Newton-Cotes family of numeric integration the Simpson's rule is a popular method to numerically evaluate the definite integral of a mathematical function f(x).
This implementation work with regularly and irregularly spaced data. For irregularly spaced data, matlabs polnomial fit function polyfit is used.
% Example:
% y = [0 1 2 4 5]
% I = simpsonQuad(y)
%
% y = [0 1 2 3 4]
% x = [4 6 8 10 12]
% I = simpsonQuad(x,y)
%
% y = [0 2 3 4 5]
% x = [4 6 9 10 13]
% I = simpsonQuad(x,y)

인용 양식

Josic (2023). simpsonQuad (https://www.mathworks.com/matlabcentral/fileexchange/<...>), MATLAB Central File Exchange. Retrieved July 1, 2023.

MATLAB 릴리스 호환 정보
개발 환경: R2023a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
도움

받음: simpsonQuadrature

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.4

corrected description

1.0.3

* updated the plotting function and added a plot as comparison with trapz
* changed the input arguments from simpsonQuad(y,x) to simpsonQuad(x,y)
* updated the description

1.0.2

upload the new version

1.0.1

correction in the description

1.0.0