matlab code to compute the DFT using just O(N (P + Q)) operations, instead of the O(N ^2 ) operations?
이전 댓글 표시
Suppose that the signal length N can be factored as N = P Q where P; Q > 1.write a script that can compute the DFT using just O(N (P + Q)) operations, instead of theO(N^2) operations required for the direct implementation.
답변 (1개)
David Young
2014년 9월 9일
0 개 추천
Just use the fft function. It's almost certainly as good as you'll get.
댓글 수: 2
TONY gracious
2014년 9월 9일
David Young
2014년 9월 9일
Yes, fft does factorisation so achieves what you want, and more in fact.
카테고리
도움말 센터 및 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!