Energy at Frequency how to find out

2 ビュー (過去 30 日間)
Aniket Manjare
Aniket Manjare 2021 年 2 月 20 日
回答済み: Anmol Dhiman 2021 年 2 月 25 日
i want to know what is the meaning of the last function in this code
features.EnergyAtFreqX(i,:) = sum(signalX_FFT(1:1,2));
what it gives at output
signalX = data.X(i,:);%signal X as temperory variable for operations
features.StdX(i,:) = std(signalX);%Satndard Daviation of Signal X 3rd coummn
signalX = (signalX - mean(data.X(i,:)))/features.StdX(i,:); %Standardization
signalX_FFT = sortrows([f;computeFFT(signalX,L)]',2,'descend');%sortrows(data,column,'accending or decending')
features.FreqX(i,:) = signalX_FFT(1,1);
features.EnergyAtFreqX(i,:) = sum(signalX_FFT(1:1,2));

回答 (1 件)

Anmol Dhiman
Anmol Dhiman 2021 年 2 月 25 日
Hi Aniket,
From the code it is unclear what 'computeFFT' does. However looking at the code, I can tell that that by using sortrows they are trying to find the frequency with the largest magnitude.
To answer about the last statement, one has to look into how computeFFT is defined.
Hope it helps

カテゴリ

Help Center および File ExchangeCorrelation and Convolution についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by