Why robust loess takes so much of time
Show older comments
%%loess
acc=dlmread('acc8.txt');
t=dlmread('time.txt');
[xx,ind] = sort(acc);
yy = smooth(t,acc,0.5,'rloess');
plot(t,yy(ind))
1 Comment
John D'Errico
on 11 Oct 2019
Some computations on large data sets will be computationally intensive. The solution is simple. Use smaller datasets, OR find a different algorithm.
Answers (1)
Gouri Chennuru
on 26 Sep 2020
0 votes
Hi,
You can refer to this link in order to resolve the issue.
Categories
Find more on Smoothing and Denoising in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!