Is griddedinterpolant omits NaN?
Ältere Kommentare anzeigen
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?
Akzeptierte Antwort
Weitere Antworten (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.
Kategorien
Mehr zu Data Type Conversion finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
