help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Problem plotting time on X axis


From: Fritz Sonnichsen
Subject: Problem plotting time on X axis
Date: Wed, 14 Feb 2018 14:00:14 -0500
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0

Octave 4.0.0
I am trying to plot a time series data. I found some examples and tried them but they don't seem to work. I have data as shown:
9:00:38      23.9
9:00:39      23.9
.....

My code looks like this:
[dtmeT, T] = textread (filenameT, "%s %f");  %read in the data
   timeFormat='HH:MM:SS';
  ser_date=datenum(dtmeT,timeFormat); %serial date is secs since 1/1/0000
  plot(ser_date,T ,'color','k'  );
  datetick('x',timeFormat,'keepticks')
  xlen = length(dtmeT)  ;
  axis([0 xlen 20 35])

I get a time labeled axis as expected, but I do not see the plot of T. The data is valid-if I plot it without time formatting it works fine.

thanks
fritz




reply via email to

[Prev in Thread] Current Thread [Next in Thread]