Fill missing NaN values with Interpolation
Afficher commentaires plus anciens
I have Matlab 2013, and I want to apply spline interpolation in my data matrix with NaN values. Is there any other method which can do this. As fillmissing functon is not available in lower versions.
2 commentaires
Adam
le 12 Juil 2018
doc spline
doc interp1
Tsehaye Gebreteklie
le 19 Avr 2022
knnimpute is prefere than spline. you can write the code like this.
clear all;
clc;
Temp = xlsread(A);
Filldata=knnimpute(Temp);
Réponse acceptée
Plus de réponses (1)
ZaidiN
le 12 Juil 2018
0 votes
1 commentaire
Pawan Sharma
le 12 Mai 2020
This is liner interpolation. To make it spline interpolation, add spine as a method of interpolation
a(isnan(a)) = interp1(x(~isnan(a)),a(~isnan(a)),x(isnan(a)), 'spline') ;
It do replace NaNs with interpolated values.
Catégories
En savoir plus sur Interpolation 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!