RobustDetrend
Versión 9.4.0 (1,65 KB) por
Geoffrey Schivre
Use robustfit to detrend polynomial trend in data
Find the best polynome order and detrend data while preserving peak features in data.
To generate the miniature :
x = linspace(0,1,1000)';
peak = 0.008.*exp(-((x-0.3).^2)./(2*(0.05^2)))+0.01.*exp(-((x-0.7).^2)./(2*(0.025^2)));
peak = peak+polyval([-0.021,+0.008,0.021,0],x);
peak = peak-0.001+0.002.*rand(size(peak));
[polorder,~,trend] = RobustDetrend(peak,6,0.975,x);
figure; plot(x,peak,'b.',x,trend,'r--')
Citar como
Geoffrey Schivre (2024). RobustDetrend (https://www.mathworks.com/matlabcentral/fileexchange/69303-robustdetrend), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2018a
Compatible con cualquier versión desde R2017b
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Más información sobre Data Preprocessing en Help Center y MATLAB Answers.
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
9.4.0 |