filter my frequencies need help

I have a series of data (which are in time domain). I need to convert them in frequency domain by FFT method and after that filter my frequencies based on the maximum value of frequency and then convert them again in time domain. For doing FFT what I did is as follow:
X=xlsread('data100degree0.xlsx', 14); % I read my data from one excel sheet.
L=length(X);
dt=0.00075;
fs=1/dt;
t=(0:1:L-1)*dt;
out=fft(X,L)/L;
y=abs(out);
I do not know is it right or not and what should I do for the rest? (especially for filtering)

댓글 수: 2

John D'Errico
John D'Errico 2014년 5월 5일
Spam link removed
Star Strider
Star Strider 2014년 5월 5일
Thank you.

답변 (1개)

Chad Greene
Chad Greene 2014년 6월 5일

0 개 추천

If you know your filter parameters and you want to skip the middle step, this might help.

이 질문은 마감되었습니다.

태그

아직 태그를 입력하지 않았습니다.

질문:

2014년 5월 5일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by