How to use polyfit to get the difference out of two functions?

7 views (last 30 days)
Hi
I have two datasets (X,Y). For every value of Y that corresponds to a value of X.
I am thinking of applying a polyfit command to get the best curve fitting for the data, and as a result I will come up with a function (slope+intercept).
How do I find the difference between those two functions? What command do I apply to subtract Function A from Function B?
  2 Comments
Stelios Fanourakis
Stelios Fanourakis on 21 Apr 2019
@Walter. The datasets are curves. If I plot them in excel and apply a polynomial curve fitting of high degree (e.g. 6) then I get the best line fit and a function. I need to get the same function in Matlab. And then subtract one function from another since the datasets are very close each other, to find their difference. How do I do that?

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 21 Apr 2019
P1 = polyfit((1:length(X)).', X(:), 6);
Likewise for Y producing P2
Pd = polyval(P1, 1:length(X)) - polyval(P2, 1:length(X))
  23 Comments
Stelios Fanourakis
Stelios Fanourakis on 24 Apr 2019
I also get the error
Error using isnan
Too many input arguments.
Error in see (line 38)
mask = isnan(x1{:,:}) | isnan(y1{:,:});
Why?

Sign in to comment.

More Answers (2)

John D'Errico
John D'Errico on 21 Apr 2019
Polynomials are linear in the coefficients. So the difference of two polynomials is obtained by just subtracting the coefficients. If they are different order polynomials, just pad the low order polynomial with zeros as necessary to correspond to the higher order coefficients that are effectively zero.
  8 Comments
Stelios Fanourakis
Stelios Fanourakis on 23 Apr 2019
Actually, the problem lies where I use readtable and import the columns from excel.
They are imported as NaNs

Sign in to comment.


Stelios Fanourakis
Stelios Fanourakis on 21 Apr 2019
Actually, both datasets are high degree polynomials e.g 6. They are almost identical and need to find their difference. How do I do that in Matlab?

Categories

Find more on Interpolation 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!