Polynomial Interpolation in Matlab
Show older comments
Hei!
Can somebody help me with polynomial Interpolation in Matlab? I have a data set for x and y as vectors and N=15 as the order of polynomial.T o compute coefficient c I do as follows:
x=data(1,:);
>> y=data(2,:);
c=polyfit(x,n,14);
My question is what coefficient c is?
regards, Sergey
1 Comment
Charles Garner
on 26 Sep 2020
my understanding is that C is arbitrary. Pick you own value.
Accepted Answer
More Answers (1)
Joan Triadó
on 4 Feb 2022
0 votes
polynomial coefficients in descending powers
Categories
Find more on Spline Postprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!