Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

******************************************MatLab Help please! ******************** Code that needs to be extended: Thank you! barycentric formula, TL 7 i-0 where we have defined the barycentric weights 7L

******************************************MatLab Help please! ********************

image text in transcribed

image text in transcribed image text in transcribed

Code that needs to be extended: Thank you!

barycentric formula, TL 7 i-0 where we have defined the "barycentric weights" 7L j-0 While mathematically equivalent to the Lagrange interpolation formula, the barycentric formula has the prac- tical advantage that the bulk of the computation computing the barycentric weights-can be performed "offlinc" and is efficiently updatable to include more interpolation points (b) Extend your code to allow x to be an array, so that y is an array of the same dimensions, cach entry bcing the Lagrange interpolation formula evaluated at the corresponding entry of x. Reusing from Part (a) the polynomial function p and the arrays X and Y, run the following commands x linspace (min (X)-1, max (X)+1, 100); plot (x , p(x), 'ko: ', x, nterp-bary(X, Y, x), 'rx:'); The red xs should coincide with the black os function y !interp(X,Y, X) sigma-0; for i#1 : numel (X) for j=1 : numel (X) if j-i end end sigma = sigma + Y(1)"pii; end y - sigma end barycentric formula, TL 7 i-0 where we have defined the "barycentric weights" 7L j-0 While mathematically equivalent to the Lagrange interpolation formula, the barycentric formula has the prac- tical advantage that the bulk of the computation computing the barycentric weights-can be performed "offlinc" and is efficiently updatable to include more interpolation points (b) Extend your code to allow x to be an array, so that y is an array of the same dimensions, cach entry bcing the Lagrange interpolation formula evaluated at the corresponding entry of x. Reusing from Part (a) the polynomial function p and the arrays X and Y, run the following commands x linspace (min (X)-1, max (X)+1, 100); plot (x , p(x), 'ko: ', x, nterp-bary(X, Y, x), 'rx:'); The red xs should coincide with the black os function y !interp(X,Y, X) sigma-0; for i#1 : numel (X) for j=1 : numel (X) if j-i end end sigma = sigma + Y(1)"pii; end y - sigma end

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 2 Lnai 9285

Authors: Annalisa Appice ,Pedro Pereira Rodrigues ,Vitor Santos Costa ,Joao Gama ,Alipio Jorge ,Carlos Soares

1st Edition

3319235249, 978-3319235240

More Books

Students also viewed these Databases questions

Question

Define promotion.

Answered: 1 week ago

Question

Write a note on transfer policy.

Answered: 1 week ago

Question

Discuss about training and development in India?

Answered: 1 week ago

Question

Explain the various techniques of training and development.

Answered: 1 week ago

Question

4-6 Is there a digital divide? If so, why does it matter?

Answered: 1 week ago