What exactly is the "n-point DFT" that fft() computes?
古いコメントを表示
I am trying to understand exactly how matlab is computing the fft when you call fft(myData, N), where N < length(myData).
In other words, it is computing the "first K outputs of an N point FFT" as detailed in the above link from fftw.org?
Thanks
採用された回答
その他の回答 (1 件)
Youssef Khmou
2014 年 9 月 23 日
0 投票
N is the number of points used to calculate the fft, it does not increase physical resolution but adds more point to the spectrum for more visual resolution, N is arbitrary.
2 件のコメント
Youssef Khmou
2014 年 9 月 23 日
編集済み: Youssef Khmou
2014 年 9 月 23 日
for every element of the frequency vector X(f), it is a sum of X(t)*exp(-2*pi*j*t*f) where t lies in [1 M], M is the length of the signal, and f lies in [1 N], and N is the value chosen whether N > M or N< M.
カテゴリ
ヘルプ センター および File Exchange で Bartlett についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!