Why robust loess takes so much of time
이전 댓글 표시
%%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
John D'Errico
2019년 10월 11일
Some computations on large data sets will be computationally intensive. The solution is simple. Use smaller datasets, OR find a different algorithm.
답변 (1개)
Gouri Chennuru
2020년 9월 26일
0 개 추천
Hi,
You can refer to this link in order to resolve the issue.
카테고리
도움말 센터 및 File Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!