This function replaces NaN values in a 1D array with interpolated or neighboring values. Interpolation schemes assume data are evenly spaced. This function does not extrapolate.
Syntax
x = repnan(x);
x = repnan(x,method);
Description
x = repnan(x) returns x sans NaNs.
x = repnan(x,method) specifies a method for replacing the original x's NaNs. Methods can be
'linear' (default) performs linear interpolation over missing values in x,
'nearest' performs nearest-neighbor interpolation,
'spline' performs spline interpolation using not-a-knot end conditions,
'pchip' is shape-preserving piecewise cubic interpolation,
'cubic' same as 'pchip',
'v5cubic' cubic convolution via Matlab v5 algorithm
'next' replaces NaN values in x with the next non-NaN value in x,
'previous' replaces NaN values in x with the previous non-NaN value in x,
Citation pour cette source
Chad Greene (2026). repnan (https://fr.mathworks.com/matlabcentral/fileexchange/48324-repnan), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxCatégories
- AI and Statistics > Statistics and Machine Learning Toolbox > Cluster Analysis and Anomaly Detection > Nearest Neighbors >
Tags
Remerciements
Inspiré par : inpaint_nans, naninterp, Inpaint over missing data in 1-D, 2-D, 3-D,... ND arrays, fillgaps in an array/matrix/image
A inspiré : interp1gap
Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
repnan/
repnan/html/
| Version | Publié le | Notes de version | |
|---|---|---|---|
| 1.0.0.0 |
