フィルターのクリア

I have data in Workspace in matlab (time domain). Frequency domain (FFT) responses are computed using MATLAB functions utilizing the data obtained from Workspace. How can help me to get FFT from my time domain signal stored in workspace.

3 ビュー (過去 30 日間)
get FFT from signal stored in workspace. the signal stored in workspace is .mat data.

採用された回答

Walter Roberson
Walter Roberson 2015 年 7 月 20 日
data_struct = load('TheFileName.mat');
varnames = fieldnames(datastruct);
time_domain_data = data_struct.(varnames{1});
freq_data = fft(time_domain_data);
If you know the name of the variable the data is stored in in the .mat file then you can use it directly. For example if you know the data is stored in qx83t then you can use
data_struct = load('TheFileName.mat');
time_domain_data = data_struct.qx83t;
  2 件のコメント
vahid torabi
vahid torabi 2015 年 7 月 20 日
I applied your code on my .mat data but it didn't work! I attached my .mat data, please check to know it works or it doesn't work.Thank you so much.
vahid torabi
vahid torabi 2015 年 7 月 20 日
my .mat data: first column is time and second column is value.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeVibration Analysis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by