How to plot ifft for a frequency signal?

8 ビュー (過去 30 日間)
Priyom Goswami
Priyom Goswami 2021 年 8 月 5 日
コメント済み: Yazan 2021 年 8 月 6 日
I've a .dat file (attaching the .mat file of that .dat file after converting, since this platform doesn't allow to upload .dat file while asking question) which represent the frequency spectrum of a vibration signal from a bearing having a sampling frequency of (fs=32768). How to convert the frequency signal to time domain signal. Please help.
  3 件のコメント
Priyom Goswami
Priyom Goswami 2021 年 8 月 6 日
that is what i'm unable to do so.
Scott MacKenzie
Scott MacKenzie 2021 年 8 月 6 日
編集済み: Scott MacKenzie 2021 年 8 月 6 日
Have you tried? Please post the code you've attempted so far.

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

採用された回答

Yazan
Yazan 2021 年 8 月 6 日
編集済み: Yazan 2021 年 8 月 6 日
clc, close all
fs = 32768;
fidx = z.Date23122013;
specOneSide = z.Time100351;
[fidx, idx] = unique(fidx);
specOneSide = specOneSide(idx);
fOneSide = (fidx./fidx(end))*fs/2;
subplot(1,2,1)
plot(fOneSide, specOneSide), xlabel('Frequency - Hz'), ylabel('Magnitude spectrum');
axis tight, title('One-sided spectrum');
specTwoSide = [flip(specOneSide(1:end)); specOneSide(2:end-1)];
N = length(specTwoSide);
f = -fs/2:fs/N:fs/2-fs/N;
subplot(1,2,2)
plot(f, specTwoSide), xlabel('Frequency - Hz'), ylabel('Magnitude spectrum');
axis tight, title('Two-sided spectrum');
sig = ifft(fftshift(specTwoSide));
figure,
t = (0:N-1)./fs;
plot(t, sig), axis tight, title('Signal');
xlabel('Time - sec'), ylabel('Amplitude');
  5 件のコメント
Priyom Goswami
Priyom Goswami 2021 年 8 月 6 日
Thank You soo much. But i think there is something wrong with the data generated. Anyways, thank you once again.
Yazan
Yazan 2021 年 8 月 6 日
Notice that the values of the Date23122013 (or your frequency axis points) are not unique. Also, for one value of Date23122013, you have sometimes multiple values of Time100351. My code uses the first appearing value of Time100351 for a given Date23122013 automatically, which is sometimes zero, but you might prefer otherwise. It is always a good idea to clean your data first.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by