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.

2 次查看(过去 30 天)
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]?

回答(1 个)

Mathieu NOE
Mathieu NOE 2020-10-26
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);

类别

Help CenterFile Exchange 中查找有关 Numerical Integration and Differentiation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by