Is griddedinterpolant omits NaN?
Afficher commentaires plus anciens
Hey all, I want to know when we using griddedinterpolant while we have some NaN in our data set, are they NaNs fills by griddedinterpolant? Or they remain as NaN?
Réponse acceptée
Plus de réponses (1)
NaN values will propagate from input to output, just as they should in any mathematical calculation.
x = sort(20*rand(100,1));
v = besselj(0,x);
v(23:50) = NaN; % modified
F = griddedInterpolant(x,v)
xq = linspace(0,20,500);
vq = F(xq);
plot(x,v,'ro')
hold on
plot(xq,vq,'.')
legend('Sample Points','Interpolated Values')
If you want to remove NaNs from data then you will need to either:
- pre-process the data to remove the NaNs yourself, or
- use high-level convenience functions e.g. FILLMISSING.
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
