On 02/15/2018 09:34 AM, Fritz
Sonnichsen wrote:
thanks
for responding--See Ian's post--that fixed the problem-I was not
seeing any plot line despite the fact that the X labels looked
appropriate.
Right---Ian removed the large integer number by rem(), and I did the
same thing by subtracting the midnight date. Numerically, in our
simple example they amount to the same thing, except that if your
data covered several days, rem() would collapse them onto each
other, whereas subtracting the midnight would allow you to plot more
than one day.
plot(ser_date-datenum("00:00:00"),T
,'color','k' )
|