How to calculate the Frequency Centroid and Mean square frequency for the attached dataset in MATLAB?
17 次查看(过去 30 天)
显示 更早的评论
Hi all,
Please explain to me how to calculate the Frequency centroid and Mean square frequency for the attached dataset in MATLAB
My dataset is long having more than 50,000 rows and two columns(time domain and Fx values)
The data set is attached to this question.
In the dataset first column indicates the time in seconds and the second column indicates force in newton.
So, basically, it's a time-domain signal and needs to convert to frequency domain for the calculation of Frequency centroid and Mean square frequency.
0 个评论
回答(1 个)
Rishabh Singh
2022-2-8
Hi,
data = readtable("Data.csv");
t = table2array(data(:,1)); % Time Vector
s = table2array(data(:,2)); % Signal Vector
Ts = mean(diff(t)); % Sampling Interval
Fs = 1/Ts; % Sampling Frequency
Fn = Fs/2; % Nyquist Frequency
L = numel(t); % Signal Length (Number Of Samples)
FTs = fft(s - mean(s))/L; % Fourier Transform
Fv = linspace(0, 1, fix(L/2)+1)*Fn; % Frequency Vector
Iv = 1:numel(Fv); % Index Vector
figure
plot(Fv, abs(FTs(Iv))*2)
grid
xlabel('Frequency')
ylabel('Amplitude')
centroid = spectralCentroid(abs(FTs(Iv))*2 , Fv,'SpectrunType' , 'magnitude');
Hope this helps.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spectral Measurements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!