how to write code for fft?
조회 수: 1 (최근 30일)
이전 댓글 표시
i want to apply fft to the clutter signal with sampling frequency 5000 Hz.
댓글 수: 1
Walter Roberson
2012년 11월 19일
What is a "clutter signal" ?
Do you need to write the fft routine yourself, or can you use fft() ?
채택된 답변
Pedro Villena
2012년 11월 19일
fs = 5000;
t = 0:1/fs:1;
signal = rand(size(t)); %%%%test data
fft_in = reshape(signal(1:256*floor(numel(signal)/256)),256,floor(numel(signal)/256));
fft_out = fft(fft_in);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!