2D trapezoidal rule

Calculates a double integral using trapezoidal rule.
1,6K téléchargements
Mise à jour 7 mars 2013

Afficher la licence

This is a very simple program that makes use of Matlab's trapz (single integral). It has the benefit that it can be used to integrate over vectors x, y, and the function f(x,y), rather than on lower and upper limits. It can also be used with nonuniform spacing at the input vectors.

Example of nonuniform spacing:
x=[0,.1,.3,.45,.6,.8,.99,1]
y=[0,.05,.1,.2,.7,.57,.92,1]

Citation pour cette source

Mohammed Sadeq Al-Rawi (2024). 2D trapezoidal rule (https://www.mathworks.com/matlabcentral/fileexchange/40631-2d-trapezoidal-rule), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R14SP3
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Thermodynamics & Statistical Physics dans Help Center et MATLAB Answers
Remerciements

A inspiré : 3D Trapezoidal Rule

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.8.0.0

Considering the suggestion
% Richard Crozier http://www.mathworks.com/matlabcentral/fileexchange/authors/34660

Thanks Richard :)

1.7.0.0

A simple correction to the example.

1.6.0.0

Modification so that the input matrix is MxN rather than NxN.

1.5.0.0

Adding one extra tag, keyword.

1.4.0.0

Adding one line to the code.

1.3.0.0

Description change.

1.2.0.0

Doing corrections to the comments.

1.1.0.0

Correcting the description.

1.0.0.0