How do I use trap?

4 次查看(过去 30 天)
Mark Dillon
Mark Dillon 2015-8-4
回答: Al Dente 2015-8-4
Here is what I am working with right now:
if true
% %%Write a script to integrate a function in three different ways:
% by eyeballing it, by calling trapz with a list of points,
% and by calling integral with a function.
% Equation we’re going to integrate: y(x) = -2x^4+3x+5.
% We’re going to integrate from -1 to 1.
y = @(x) -2.*x.^4+3.*x+5;
x = -1:1;
% Plot x vs y
fplot(y, [x(1),x(end)]);
grid on
end
Now I need to use trapz to figure out how to calculate the area under the curve, but I cannot figure it out. I tried Area = trapz(x,y), but that didn't work? How to a solve this problem?

采纳的回答

Al Dente
Al Dente 2015-8-4
area = trapz(x,y(x))
?

更多回答(0 个)

类别

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