Example 1
These time and frequency localizations can be evaluated thanks to the
M-files
loctime.m and
locfreq.m of the Toolbox. The first one gives the
average time center (

) and the duration (

) of a signal, and the
second one the average normalized frequency (

) and the normalized
bandwidth (

). For example, for a linear chirp with a gaussian amplitude
modulation, we obtain (see fig.
2.1):
>> sig=fmlin(256).*amgauss(256);
>> [tm,T]=loctime(sig) ---> tm=128 T=32
>> [num,B]=locfreq(sig) ---> num=0.249 B=0.0701
Figure 2.1:
Linear chirp with a gaussian amplitude modulation
 |
One interesting property of this product
is that it is lower
bounded :
This constraint, known as the
Heisenberg-Gabor inequality, illustrates the fact that a signal can not
have simultaneously an arbitrarily small support in time and in
frequency. This property is a consequence of the definition of the Fourier
transform. The lower bound

is reached for gaussian
functions :
with

,

. Therefore, the
gaussian signals are those which minimize the time-bandwidth product
according to the Heisenberg-Gabor inequality.
Eric Chassande-Mottin
2005-10-26