How do you plot a Midpoint Riemann Sum

4 vues (au cours des 30 derniers jours)
espitz
espitz le 28 Mar 2019
function[] = graph_integration_method(fhandle,lo,hi,N)
hold on;
fplot(fhandle,[lo, hi]);
x = linspace(lo,hi,N+1);
dx = diff(x);
for index = 1:N
rectangle('position',[x(index) 0 dx(index) fhandle(index)/2]);
end
end

Réponses (0)

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by