Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@math/getfftfreq.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% % GETFFTFREQ: get frequencies for fft %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Luigi Ferraioli 04-02-2011 % % % $Id: getfftfreq.m,v 1.1 2011/02/04 11:11:29 luigi Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function f = getfftfreq(nfft,fs,type) switch lower(type) case 'plain' f = (0:nfft-1).*fs./nfft; case 'one' f = (0:floor(nfft/2)).*fs./nfft; case 'two' if rem(nfft,2) % odd number of data f = fftshift([0:floor(nfft/2) -(floor(nfft/2)):-1].*fs./nfft); else % even number of data f = fftshift([0:floor(nfft/2)-1 -floor(nfft/2):-1].*fs./nfft); end end end