Sum of rectangle function
Mostra commenti meno recenti
Hello, how can I create a sum of rectangles?
1 Commento
Ameer Hamza
il 1 Nov 2020
What do you mean by sum of rectangles?
Risposte (1)
Ameer Hamza
il 1 Nov 2020
If by "sum of rectangles" you mean Riemann sum approximation of integral using rectangles, then use cumsum(): https://www.mathworks.com/help/matlab/ref/cumsum.html. For example
t = 0:0.1:10;
y = t.^2;
I = cumsum(y).*gradient(t);
5 Commenti
Amir Delavari
il 1 Nov 2020
Ameer Hamza
il 1 Nov 2020
Can you show the mathematical formula for the function?
Amir Delavari
il 1 Nov 2020
Ameer Hamza
il 2 Nov 2020
How the rect() function is defined?
Amir Delavari
il 2 Nov 2020
Categorie
Scopri di più su Numerical Integration and Differential Equations in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
