Fast Fourier Transform Question in Matlab
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a signal with 8192 samples with lots of intermittent 0s. I want to compute the FFT of this signal however I don't want to use all of these 0s.
How can I shorten the original signal to get rid of these 0s and compute a FFT that is equivalent to the original signal?
댓글 수: 0
답변 (1개)
Azzi Abdelmalek
2013년 3월 14일
y=rand(1,8192);
yout=sparse(y)
But to compute the fft you will need to use y, unless you use your own code
댓글 수: 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!