How to export the FFT analysis data from the FFT Analyzer app in the "powergui" block to the base workspace?
38 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2019 年 1 月 22 日
編集済み: MathWorks Support Team
2025 年 6 月 23 日
Is it possible to export the FFT analysis data from the graphical interface of the FFT Analyzer app in the "powergui" block to the base workspace?
採用された回答
MathWorks Support Team
2025 年 6 月 23 日
編集済み: MathWorks Support Team
2025 年 6 月 23 日
In MATLAB R2023b, it is not possible to directly export the FFT analysis from the graphical interface opened from the "powergui" block. The workaround is to use command-line tools to obtain the desired data in the base workspace by following the steps below.
1. Get initial default structure:
FFTDATA = power_fftscope(ScopeData);
2. Modify the "FFTDATA" structure to have desired options and settings, for example:
FFTDATA.cycles = 10;
FFTDATA.fundamental = 50;
FFTDATA.maxFrequency = 500;
3. Update the data structure:
FFTDATA = power_fftscope(FFTDATA)
The attached files demonstrate this workflow with a known dataset.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Standard File Formats についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!