



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
A detailed guide on how to perform trapezoidal integration using microsoft excel. It includes screenshots and equations to help students understand the concept and set up the integration strips. The document also provides a matlab code snippet for reference.
Typology: Slides
1 / 7
This page cannot be seen from the preview
Don't miss anything!




y e ( x ) (^ x )
8 sin 9 ln 7
= +
That is, Find
Show Game Plan on Next Slides
I [^ e ( x ) (^ x )] dx
x
x
x y (^) ∫
= +
8 sin 9 ln 7
2 2.5 3 3.5 4
-**
0
1
2
3
4
5
6
7
x
y
( )
( )
2
2
= = + −
= ⋅
= −
= +
∑ ∑ n n
n
n n
n
avg
n n
avg n n
A dA y y x x
dA y dx
dx x x
y y y
MATLAB Code
% Bruce Mayer, PE * 07Dec % ENGR36 * EXCEL integration Prob % file = Excel_Integ_Stem_0912.m % % Set up WhtBd Graphic to show % integration Strips % x = [1.7:.05:4.3] y = 8exp(-0.2x).sin(9x.^0.63) + log(sqrt(7x)) stem(x,y), grid, axis([1.6 4.4 -3.5 7])*