Question: USING MATLAB YOU NEED TO PROGRAM A FUNCTION which receives a data table of n nodes and calculate the coefficients of the Interpolating polynomial in

USING MATLAB YOU NEED TO PROGRAM A FUNCTION which receives a data table of n nodes and calculate the coefficients of the Interpolating polynomial in Newton's form using the Neville method
Program a mneville function, which receives a data table of n nodes and calculate the coefficients of the Interpolating polynomial in Newton's form using the Neville method.
The declaration of the function it will be as follows:
1. Program a mneville function, which receives a data table of n nodes and calculate the coefficients of the interpolating polynomial in Newton's form using Neville's method. The declaration of the function will be as follows: % Description % x the abscissa vector of the nodes as row % and the ordinate vector of the nodes as row % c the diagonal of the matrix of differences divided with the coefficients of the polynomial in Newton's form. function c = mneville (x, y) Test your function with the data table 1. Program a mneville function, which receives a data table of n nodes and calculate the coefficients of the interpolating polynomial in Newton's form using Neville's method. The declaration of the function will be as follows: % Description % x the abscissa vector of the nodes as row % and the ordinate vector of the nodes as row % c the diagonal of the matrix of differences divided with the coefficients of the polynomial in Newton's form. function c = mneville (x, y) Test your function with the data table
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
