Given a set of measurements of dependent variables in a vector, Y, that vary with one independent variable in a vector, X, calculate the interpolating polynomial using Lagrange interpolation. Output is the interpolated value for a given value of x, as well as the vector of Lagrange polynomial coefficients.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers19
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5810 Solvers
-
101 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
560 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
893 Solvers
-
Calculate the probability that at least two people in a group share the same birthday.
106 Solvers
More from this Author17
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Could you please explain the output (the order of arrangement of coefficients, etc)? With my program I'm getting the right coefficients (tried from wikipedia, etc) but they don't match yours. Only the interpolated value matches!