Problem 43129. Find the coefficients for numerical integration using Simpson's rule
For using numerical integration using Simpson's rule, we need some coefficients to be determined first. Suppose the n is the number of divisions between a and b the limits of integration. First of all n should be even so for odd numbers the program return empty vector []. For n=2 the coefficients are [1 4 1] and for n=4, coefficients are [1 4 2 4 1]. The first and the last elements are 1 and the remaining elements are 4 and 2. Also zero or negative n has meaning.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers29
Suggested Problems
-
Project Euler: Problem 3, Largest prime factor
1433 Solvers
-
Make an awesome ramp for a tiny motorcycle stuntman
654 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
477 Solvers
-
Determine the number of odd integers in a vector
732 Solvers
-
342 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!