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
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.

댓글을 달려면 로그인하십시오.

질문:

2019년 10월 11일

답변:

2020년 9월 26일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by