Question: Using MatLab (4 points) Write algorithms for both the trapezoid rule and Simpsons rule to estimate the integral from a to b, f(x)dx with n
Using MatLab
(4 points) Write algorithms for both the trapezoid rule and Simpsons rule to estimate the integral from a to b, f(x)dx with n intervals. Send mytrap.m and mysimp.m to the grader. The graderwill check your code with something like this:
>>
f = @(x) sqrt(1+x2);
>>
s = mytrap(f,1,3,20)
>>
s = mysimp(f,1,3,20)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
