Dealing with NaN values in FFT
144 ビュー (過去 30 日間)
古いコメントを表示
Hi, I'm working with a large data set of voxel information from MRI scans of multiple subjects, and as part of the analysis I use FFT. Prior to this, the data already goes through some modifications, removing specific values deemed too low (insignificant data) and replacing it with NaN values. After checking the results I realized there is an issue with FFT and NaN values. Is there some solution or workaround that someone perhaps knows that might help resolve this issue?
0 件のコメント
採用された回答
その他の回答 (1 件)
Sugar Daddy
2020 年 7 月 25 日
what if you remove NaNs from dataset
Suppose
X = [1 2 3 NaN 3 2 1];
X(isnan(X)) = []
X =
1 2 3 3 2 1
2 件のコメント
Maya Eyal
2021 年 2 月 22 日
I think this solution is not good, since it destroys the pattern in the data, and the whole reason we use the fft is to find the pattern.
I'm not an expert, just another one with the same NaN problem.
I'm not sure that interpulating the missing data will give me the pattern I want to find, but it seems I have no choice.
参考
カテゴリ
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!