How can I get the central frequency out of a fft?
10 次查看(过去 30 天)
显示 更早的评论
For an analysis I have the following script. Everything is fine and working. My Prof now wants to know the central frequeny out of the fft.
How di I get the central frequency?
Fs= 1.9* 10^6 ; %sampling frequency
T = 1/Fs; %sampling period
L = 15000 ; %time in ms
t= (0: L-1) * T; %time vector
% load holz.mat
ti= fliese90cm.time;
a= fliese90cm.ampli;
plot(ti,a)
y=fft(a);
P2 = abs( y /L );
P1 = P2 (1: L /2+1);
P1(2: end-1)=2*P1(2:end-1);
f = Fs*(0:(L/2))/L;
plot(f,P1)
xlim([0 2*10^5])
title ( 'FFT Fliese, 100 cm')
xlabel('Frequency [Hz]')
ylabel('Amplitude [V]')
% stem(f,P1)
Q=trapz(f,P1);
5 个评论
Image Analyst
2020-7-15
OK, so it's the center frequency of the spectrum signal within some particular frequency band. And is defined by the geometric mean of the starting frequency and ending frequency of that particular band.
So I guess you have the spectrum, and now you're needing to find the starting and ending frequency of some "hump" you see in the spectrum, right?
Did you see the answers below?
回答(1 个)
Star Strider
2020-7-14
Not possible to run your code.
1 个评论
dpb
2020-7-14
编辑:dpb
2020-7-15
Or, alternatively, findpeaks optional 'widths' output with the 'WidthReference','halfheight' input named parameter option.
ADDENDUM:
Actually, findpeaks isn't as helpful as could be -- it returns the widths but not the locations of the reference-level crossings. There was another thread just a week or so ago on same issue--I showed there how to find the points.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spectral Estimation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!