[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Tftb-help] Changing axes of frequency
From: |
Eric Chassande-Mottin |
Subject: |
Re: [Tftb-help] Changing axes of frequency |
Date: |
Thu, 20 Mar 2008 18:39:33 +0100 (CET) |
User-agent: |
Alpine 1.00 (DEB 882 2007-12-20) |
I need to represent time-frequency diagram using
a personalized frequency scale and not the one by defalut.
How I could do?
you can do :
s=fmlin(128);
[tfr, t, f]=tfrsp(s);
pcolor(t,f(1:64).^2,tfr(1:64,:));
shading("flat");
which produces a spectrogram with the frequency remapped
to frequency squared.
eric.