|
| |||
What about multi-component non-stationary signals ?The notion of instantaneous frequency implicitly assumes that, at each time instant, there exists only a single frequency component. A dual restriction applies to the group delay : the implicit assumption is that a given frequency is concentrated around a single time instant. Thus, if these assumptions are no longer valid, which is the case for most of the multi-component signals, the result obtained using the instantaneous frequency or the group delay is meaningless.Example For example, let us consider the superposition of two linear frequency modulations :
>> N=128; x1=fmlin(N,0,0.2); x2=fmlin(N,0.3,0.5);
>> x=x1+x2;
At each time instant
>> ifr=instfreq(x); subplot(211); plot(ifr);
>> fn=0:0.01:0.5; gd=sgrpdlay(x,fn);
>> subplot(212); plot(gd,fn);
To have an idea of what can be made with a time-frequency decomposition, let us anticipate the following and have a look at the result obtained on this signal with the Short Time Fourier Transform (see fig. 2.11):
>> tfrstft(x);
Eric Chassande-Mottin 2005-10-26 | |||