Filter löschen
Filter löschen

How to remove particular harmonic in the time series?

21 Ansichten (letzte 30 Tage)
balaji
balaji am 26 Jun. 2018
Beantwortet: KSSV am 26 Jun. 2018
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');

Akzeptierte Antwort

KSSV
KSSV am 26 Jun. 2018

Weitere Antworten (0)

Kategorien

Mehr zu Time Series finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by