필터 지우기
필터 지우기

How to remove particular harmonic in the time series?

조회 수: 21 (최근 30일)
balaji
balaji 2018년 6월 26일
답변: KSSV 2018년 6월 26일
Given a anomaly time series, for which time series need to be computed by removing annual cycle or 1st harmonic or any particular harmonic. Is the method of computing FFT and making ith & (n+1-i)th coefficients making zero and then iFFT, will give the required result or anything need to be taken care?
clc;clear;clf;
t=0:0.2:4*pi+.1; l = 64 ;
x=3*sin(t)+2*sin(2*t)+sin(6*t);
X = fft(x);
X2=X; X2(3)=0; X2(64-1)=0;
x2 = ifft(X2);
plot(x,'r'); hold on; plot(x2, 'g');
x3=0*sin(t)+2*sin(2*t)+1*sin(6*t);
plot(x3, 'b');

채택된 답변

KSSV
KSSV 2018년 6월 26일

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Time Series에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by