Question about integration within matlab
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ano
le 18 Sep 2017
Modifié(e) : Cam Salzberger
le 18 Sep 2017
I would like to know how far would be my code correct if I used the 'sum' function to compute a double integral or should I use the Gaussian quadrature formulas ??! Thank you !
0 commentaires
Réponse acceptée
Cam Salzberger
le 18 Sep 2017
Modifié(e) : Cam Salzberger
le 18 Sep 2017
Hello Ano,
If you were to do this:
x = 0:1:10;
y = sin(x);
intsinxdx = sum(y);
Then this would be a valid approximation of the integral. Technically, it would be the left Riemann sum integrating from 0 to 11, with step-size 1. This is really the key part, because if you were to try this:
x = 0:0.1:10;
y = sin(x);
intsinxdx = sum(y);
then this would not be accurate. That is because to approximate the integral, you have to multiply the height by the width of the given rectangle. It only worked in the previous case because the width of the rectangles were 1.
However, if you simply use the integral function, that uses an adaptive quadrature approximation. So that may be your best-bet for a quick implementation of an approximate integral.
-Cam
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Numerical Integration and Differential Equations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!