Median Frequency(Fmed)
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
shez96
el 9 de Abr. de 2012
Comentada: krn99
el 5 de Abr. de 2017
I need help finding the Median frequency of a power spectram. (Fmed), I am new to matlab so any helo will be really appreciated.
0 comentarios
Respuesta aceptada
Wayne King
el 9 de Abr. de 2012
Hi Shenal, you can do the following:
t = 0:0.001:1-0.001;
x = cos(2*pi*50*t-pi/4)+0.5*sin(2*pi*100*t)+randn(size(t));
psdest = psd(spectrum.periodogram,x,'Fs',1000,'NFFT',length(x));
normcumsumpsd = cumsum(psdest.Data)./sum(psdest.Data);
Ind = find(normcumsumpsd <=0.5,1,'last');
fprintf('Median frequency is %2.3f Hz\n',psdest.Frequencies(Ind));
2 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Spectral Measurements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!