MATLAB: Converion of a date

conversion serial date number

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

Best Answer

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