Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a Matlab function which computes the integral by Simpson's rule. Your function should be used by the following command in Matlab command window:
Write a Matlab function which computes the integral by Simpson's rule. Your function should be used by the following command in Matlab command window: 1 >> v=Simpson (fun, a, b, n) where fun is a function handle of f(x), and a, b is the interval, and n is the number of sub-intervals (i.e., 2n+1 will be the number of points.) Test your function on problem 1. Write a script that computes, for n = 2, 4, 8, 16, 32, 128, the absolute error for each n, and a plot (with loglog) of the absolute error against n. Compute the convergence order numerically (compare the error change when n doubled).
Step by Step Solution
★★★★★
3.39 Rating (146 Votes )
There are 3 Steps involved in it
Step: 1
Code function v Simpsonfun a b n h b a 2 n x ahb fx funx v h 3 fx1 4 sumfx22end1 ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started