[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Tftb-help] problem with TFTB
From: |
Eric Chassande-Mottin |
Subject: |
Re: [Tftb-help] problem with TFTB |
Date: |
Thu, 23 Mar 2006 13:21:34 +0100 (CET) |
> I use Matlab Version 7.1.0.183 (R14) Service Pack 3 and, of course,
> tftb-0.1.
I could not reproduce your problem with
MATLAB Version 7.0.4.352 (R14) Service Pack 2.
could you check whether the y axis of the time-frequency
image is reversed by default with your version
of Matlab?
you can check this looking at Edit > Axes Properties... > Y Axis
from the scrolling menu, or looking directly at the properties with
get(gca,'Ydir');
the answer should be:
ans =
normal
if not, the following command should solve the problem.
set(gca,'Ydir','normal');
eric.