From: joseph Frank on
I have dates that have the following format:
20110425 (equivalent to 25th of April 2011). How can I transform these dates to matlab date numbers?
From: Oleg Komarov on
"joseph Frank" <josephfrank1969(a)hotmail.com> wrote in message <i04cmt$oht$1(a)fred.mathworks.com>...
> I have dates that have the following format:
> 20110425 (equivalent to 25th of April 2011). How can I transform these dates to matlab date numbers?

datenum('20110425','yyyymmdd')
doc datenum

Oleg