Numerical Fourier transforms of matrix?

1 回表示 (過去 30 日間)
Somnath Kale
Somnath Kale 2022 年 5 月 4 日
コメント済み: Star Strider 2022 年 6 月 25 日
Hi
I was tryaing for the numerical fourier tranform of the function u(z,t) (real space) where u and z as per the attachments:
The fourier transform u~(q,t) (reciprocal space) is recognised as; u~(q,t) = (I/L)*Integration(dz u(z,t)exp(-iqz)
how can I take care of this?
Thank you in advance!!

採用された回答

Star Strider
Star Strider 2022 年 5 月 5 日
I have no idea what you want. I would not suggest integrating the individual sine and cosone coefficients using numerical integration. The Fast Fourier Transform calculates the coefficients much more efficiently.
This calculates and plots the fast Fourier transform (fft) of that signal —
T1 = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/987480/data.txt');
T1.Properties.VariableNames = {'Signal','Time'}
T1 = 1024×2 table
Signal Time __________ __________ 3.0967e-06 3.418e-09 3.0967e-06 6.8359e-09 3.0967e-06 1.0254e-08 3.0967e-06 1.3672e-08 3.0967e-06 1.709e-08 3.0967e-06 2.0508e-08 3.0967e-06 2.3926e-08 3.0967e-06 2.7344e-08 3.0967e-06 3.0762e-08 3.0967e-06 3.418e-08 3.0967e-06 3.7598e-08 3.0967e-06 4.1016e-08 3.0967e-06 4.4434e-08 3.0967e-06 4.7852e-08 3.0967e-06 5.127e-08 3.0967e-06 5.4687e-08
figure
plot(T1.Time, T1.Signal)
grid
xlabel('Time')
ylabel('Amplitude')
L = size(T1,1);
Ts = mean(diff(T1.Time)); % Sampling Interval
Fs = 1/Ts; % Sampling Frequency
Fn = Fs/2; % Nyquist Frequency
FTSignal = fft(T1.Signal-mean(T1.Signal))/L; % Fourier Transform (Subtract Mean To Emphasize Peaks)
Fv = linspace(0, 1, fix(L/2)+1)*Fn; % Frequency Vector
Iv = 1:numel(Fv); % Index Vector
figure
plot(Fv, abs(FTSignal(Iv))*2)
grid
xlabel('Frequency')
ylabel('Amplitude')
xlim([0 5]*1E+7)
The coefficients of the cosine (real) terms are the real parts of ‘FTSignal’ and the imaginary parts are the coefficients of the sine terms for each frequency in the ‘Fv’ vector.
.
  6 件のコメント
Somnath Kale
Somnath Kale 2022 年 6 月 25 日
Thank you very much!
Star Strider
Star Strider 2022 年 6 月 25 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDiscrete Fourier and Cosine Transforms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by