2nd order polynomial fitting with NaNs

12 vues (au cours des 30 derniers jours)
Nikos Makris
Nikos Makris le 24 Jan 2011
I want to fit a 2nd order polynomial to my data
x=(1,256) y=(1,256)
Only 40 cells from each side of the y array include values, the rest are NaN. So far i have used the polyfit() function but it does not work when the y array contains NaNs. Another function is interp1() which works properly but the fitting methods are limited (no polynomial option).
Are you aware of any other function that is suitable for this problem?

Réponse acceptée

Egon Geerardyn
Egon Geerardyn le 24 Jan 2011
Try indexing your data points to your non-NaN-points
Let's just work on an example:
%%just generating data
x = 1:10;
y = x.^2 + randn(size(x));
y(4) = NaN; %I introducce a NaN in y
%%getting indices where y is valid (not NaN)
idxValid = ~isnan(y);
%%fitting
poly = polyfit(x(idxValid),y(idxValid),2);
%%plot
figure;
plot(x,y,'xr','DisplayName','Data points'); hold on;
plot(x,polyval(poly,x),'DisplayName','Fitted'); hold off;
legend('show')
As you will see: this fits only the non NaN data.
  3 commentaires
Egon Geerardyn
Egon Geerardyn le 24 Jan 2011
@Nikos: it is impossible to include NaN in fitting. NaN stands for not a number (this might mean 0/0 in some cases), it really is an unknown value, so it's impossible to perform any calculation on it. How do you see a fit working when you don't know the values?
What are you actually trying to do? Do you want your polynomial to return values even for x-values where the y-value was NaN? If so, that's exactly what the code above does. That is also the most sensible case for a fit. So I hope you misunderstood my last sentence.
If you want your model to return NaN where y was NaN, you can just put these values there:
yModel = polyval(poly,x);
yModel(~idxValid) = NaN;
Nikos Makris
Nikos Makris le 25 Jan 2011
Ok i got it! I misunderstood your 1st answer...This is what i was looking for
Thanks Egon

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Polynomials dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by