Fast fourier transform (FFT) data points

6 ビュー (過去 30 日間)
Ken W
Ken W 2015 年 12 月 16 日
コメント済み: Walter Roberson 2015 年 12 月 16 日
Dear All,
I have a set of data with length of 17520 data points. I wish to know is that necessary to follow the rule of 2^n data points (2^14 = 16384). I found that FFT can also transform all the 17520 data points. What are the effects if i transform all the data points? The transform of all data points is equivalent to 2^14 (16384) data points?
I have another data set which not equally spaced. Can FFT applied to this data? Because FFT is applied to equally spaced data.
Please advise me.
Thank you.

採用された回答

Walter Roberson
Walter Roberson 2015 年 12 月 16 日
There is no rule of 2^n data points. Certain computations can be faster if you have 2^n data points, but any number of data points can be used in fft(). The effect of using fft(YourArray,16384) when length(YourArray) > 16384 is the same as using fft(YourArray(1:16384)) -- that is, the remaining data is ignored, so you can get a higher resolution by using fft() of all of the data.
  2 件のコメント
Ken W
Ken W 2015 年 12 月 16 日
編集済み: Ken W 2015 年 12 月 16 日
Thank you.
If my data are equally spaced but with some missing data, can i apply the FFT?
Attached is my data.
Walter Roberson
Walter Roberson 2015 年 12 月 16 日
If there is just the occasional missing value you might want to interpolate it; otherwise you need one of the non-uniform techniques I link to above.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFourier Analysis and Filtering についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by