Effacer les filtres
Effacer les filtres

How to write a function that takes an interval [a,b] and a function f(x) and computes the integral of f(x) from a to b using the Trapezium rule.

4 vues (au cours des 30 derniers jours)
How to write a function that takes an interval [a,b] and a function f(x) and computes the integral of f(x) from a to b using the Trapezium rule? Then, how do I use it on f(x)=sin(x) with [a,b]=[0,pi/2]?

Réponses (1)

Mathieu NOE
Mathieu NOE le 26 Oct 2020
hello
refer to trapz and cumtrapz functions
example below
a = 0;
b = pi/2;
x = linspace(a,b,100);
y =sin(x);
out_integral = trapz(x,y);

Catégories

En savoir plus sur Numerical Integration and Differentiation 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!

Translated by