Converting Frequency domain to time domain
33 ビュー (過去 30 日間)
古いコメントを表示
Hello Experts,
I have csv file which contains Acceleration vs frequency domain data. How do I convert it into Acceleration vs time data using ifft function. Kindly please help me with this as I am new to this.
Thanks
0 件のコメント
回答 (3 件)
Star Strider
2020 年 10 月 16 日
‘How do I convert it into Acceleration vs time data using ifft function.’
Thet depends entirely on what the data are. If you have only magnitude data, then inverting it is impossible.
If you have complex acceleration data, you can transform it using ifft (although it would be necessary to know what the data are and what the frequency vector is). If you have magnitude and phase data, you can convert them to complex frequency domain data, and then use ifft.
If you have ‘one-sided’ complex Fourier transform data (the frequency vector going from 0 to the Nyquist frequenncy), it would be necessary to flip a complex-conjugate version of that and concatenate it to the end of the data you have, then do the ifft. The time vector would then go from 0 the length of the reconstructed vector, with the sampling interval being 1/(2*Nyquist_frequency).
0 件のコメント
Durganshu
2020 年 10 月 16 日
Hi Katari:
Proceed in the following way:
- Import the data from csv file using 'Import Data' tool or load or importdata function. Save the imported data in the form of a matrix.
- Use ifft(nameOfVariable) to perform the Inverse Afst fourier transform. If your data contains negative frequencies as well, then you'll haveto use fftshift as well. In that case, the format will be like this: fftshift(ifft(nameOfVariable).
Hope that helps.
0 件のコメント
KSSV
2020 年 10 月 16 日
data = csvread(myfile.csv) ; % also have a look on readtable, xlsread
a = data(:,1) ; % acceleration
f = data(:,2) ; % frequency
t = ifft(f) ; % read about ifft
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!