Question

Can you please do this in matlab

Consider the following function: 4 0 Using the following parameters in your functions: func: the function/equation that you are required to integrate a, b: the integration limits n: the number of points to be used for the integration : Integral estimate A. Write a function capable of performing numerical integration of h(x) using the composite B. write a function capable of performing numerical integration of h(x) using the composite C. Calculate the absolute percentage error between MATLABs integral estimate and the results of trapezoidal rule. Use your function to solve the equation with 7 points. Simpsons 1/3 rule. Use your function to solve the equation with 7 points. part A and B.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

n=구 h- 6-a~ 4-17. 5285 5.008 ) ナ1.1617ナ1.6324[25-1397 ria © HATLAR .nt eral ealinak 4.981 5.008 )-4.98 4, 9817 0969 4.98/7Onj 9 7874- 98/ , T817 19 9.9817 3.9

Add a comment
Know the answer?
Add Answer to:
Can you please do this in matlab Consider the following function: 4 0 Using the following...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Use Matlab code Consider the following function sin(x) Using the following parameters in your functions: -func:...

    Use Matlab code Consider the following function sin(x) Using the following parameters in your functions: -func: the function/equation that you are required to integrate -a, b: the integration limits n: the number of points to be used for the integration I:Integral estimate a) Write a function capable of performing numerical integration of h(x) using the composite trapezoidal rule. Use your function to integration the equation with 9 points. Write a function capable of performing numerical integration of h(x) using the...

  • MATLAB Write an m-file capable of performing numerical integration for the equation using the simpsons and...

    MATLAB Write an m-file capable of performing numerical integration for the equation using the simpsons and trapezoidal functions: function [value, error] = simpsons(func, a, b, n, I) %retuns the value and error ret = 0; h = (b-a)/(n+1); %step size pts = a:h:b; % array of points for i=2:(n+3)/2 a = 2*i-3; b = 2*i-2; c = 2*i-1; ret = ret + (func(pts(a)) + 4*func(pts(b)) + func(pts(c))); end value = h*ret/3; error = abs(I - value)*100/I; %error between value and...

  • Show work by hand and also using MATLAB code. Model 1 Given a polynomial f(x) Write a first-order approximation of f(x), given the value of f(x) at two points Plot the polynomial and the first-or...

    Show work by hand and also using MATLAB code. Model 1 Given a polynomial f(x) Write a first-order approximation of f(x), given the value of f(x) at two points Plot the polynomial and the first-order approximation on a graph Write a second-order approximation of f(x), given the value at three points. Plot the polynomial, the first-order and second-order approximations on a graph Find the integral Exactly Using trapezoidal rule Using composite trapezoidal rule Using Simpson's 1/3 rule . Calculate the...

  • Write a MATLAB function/script that performs the following tasks. Approximate: 2+2 (a) Using the composite Trapezoidal...

    Write a MATLAB function/script that performs the following tasks. Approximate: 2+2 (a) Using the composite Trapezoidal rule with n=8 (b) Using the composite Simpson's rule with n = 8 (c) Display the final solution for each method along with the exact solution. Name your file: WS5_LastName_First Inital()

  • Use matlab please. Exercise 2 Use the functions you coded in Exercise 1 to compute the...

    Use matlab please. Exercise 2 Use the functions you coded in Exercise 1 to compute the numerical approximation of the integral .1 cos e 30 To this end, write a Matlab/Octave function function [en,et , es] test-integration() = that returns the following items: em, et, es: row vectors with components the absolute values of the integration errors llref-Inl n=2.3, . . . . 100 obtained with the midpont (vector em), trapezoidal (vector et) and Simpson (vector es) rules. Here, f...

  • 2. The following integral 2 dr can be computed exactly (a) Estimate the integral using the...

    2. The following integral 2 dr can be computed exactly (a) Estimate the integral using the composite trapezoidal rule with n = exact value of integral and compute the true percent relative error for this approximation 4. Calculate the (b) How many subintervals would be needed to estimate the integral with the composite trapezoidal rule with an accuracy of 102? (c) Estimate the integral using the composite Simpson's 1/3 rule with n = true percent relative error for this approximation...

  • Question 2. Consider the approximation of the definite integral () (a) Begin by using 2 points/nodes...

    Question 2. Consider the approximation of the definite integral () (a) Begin by using 2 points/nodes (i.e., n + 1 = 2, with the two points being x = a and r = b). Replace f(x) by the constant /(a+b)/2] on the entire interval a <<b. Show that this leads to the numerical integration formula M,()) = (b − a) ) Graphically illustrate this approximation. (b) In analogy with the derivation of the Trapezoidal rule and Simpson's rule, generalize part...

  • 1. Approximate the following integral, exp(r) using the composite midpoint rule, composite trapez...

    can i get some help with this ? 1. Approximate the following integral, exp(r) using the composite midpoint rule, composite trapezoid rule, and composite Simpeon's method. Each method should invol + l integrand evaluations, k 1: 20. On the same plot, graph the absolute error as a function of n. ve exactly n = 2k 2. Approximate the integral from Question 1 using integral, Matlab's built-in numerical integrator. What is the absolute error? 1. Approximate the following integral, exp(r) using...

  • 2 Problem 3 (25 points) Let I = ïrdz. a) [by hand] Use a composite trapezoidal rule to evaluate 1 using N = 3 subintervals. b) MATLAB] Use a composite trapezoidal rule to evaluate I using N - 6 subin...

    2 Problem 3 (25 points) Let I = ïrdz. a) [by hand] Use a composite trapezoidal rule to evaluate 1 using N = 3 subintervals. b) MATLAB] Use a composite trapezoidal rule to evaluate I using N - 6 subinterval:s c) by hand] Use Romberg extrapolation to combine your results from a) and b) and obtain an improved approximation (you may want to compare with a numerical approximation of the exact value of the integral 2 Problem 3 (25 points)...

  • MATLAB Create a function that provides a definite integration using Simpson's Rule Problem Summar This example demo...

    MATLAB Create a function that provides a definite integration using Simpson's Rule Problem Summar This example demonstrates using instructor-provided and randomized inputs to assess a function problem. Custom numerical tolerances are used to assess the output. Simpson's Rule approximates the definite integral of a function f(x) on the interval a,a according to the following formula + f (ati) This approximation is in general more accurate than the trapezoidal rule, which itself is more accurate than the leftright-hand rules. The increased...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT