converion of a date

hi, how can i convert this date Thu, Sep-24-15 to a serial date number.
thanks

 Accepted Answer

This should work:
date_num = cellfun(@(x)datenum(x, 'ddd, mmm-DD-YY'), check123);

2 Comments

cellfun(@(x)datenum(x, 'ddd, mmm-DD-YY'), check123(~cellfun('isempty',check123)));
with empty lines u can use the above, thanks bro
My pleasure.

Sign in to comment.

More Answers (2)

datenum('Thu, Sep-24-15', 'ddd, mmm-DD-YY')
AA
AA on 26 Sep 2015
i used this code
>> date_num = cellfun(@datenum, check123, 'ddd, mmm-DD-YY');
check 123 is a cell array with one column of the dates in the format 'ddd, mmm-DD-YY'. I get the error message Input #3 expected to be a cell array, was char instead.
how can i correct this error?

Categories

Asked:

AA
on 25 Sep 2015

Commented:

on 26 Sep 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!