Why robust loess takes so much of time

조회 수: 3 (최근 30일)
PIYUSH MOHANTY
PIYUSH MOHANTY 2019년 10월 11일
답변: Gouri Chennuru 2020년 9월 26일
%%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.

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

답변 (1개)

Gouri Chennuru
Gouri Chennuru 2020년 9월 26일

카테고리

Help CenterFile Exchange에서 Power and Energy Systems에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by