Azzera filtri
Azzera filtri

converion of a date

1 visualizzazione (ultimi 30 giorni)
AA
AA il 25 Set 2015
Commentato: Star Strider il 26 Set 2015
hi, how can i convert this date Thu, Sep-24-15 to a serial date number.
thanks

Risposta accettata

Star Strider
Star Strider il 26 Set 2015
This should work:
date_num = cellfun(@(x)datenum(x, 'ddd, mmm-DD-YY'), check123);
  2 Commenti
AA
AA il 26 Set 2015
cellfun(@(x)datenum(x, 'ddd, mmm-DD-YY'), check123(~cellfun('isempty',check123)));
with empty lines u can use the above, thanks bro
Star Strider
Star Strider il 26 Set 2015
My pleasure.

Accedi per commentare.

Più risposte (2)

Walter Roberson
Walter Roberson il 25 Set 2015
datenum('Thu, Sep-24-15', 'ddd, mmm-DD-YY')

AA
AA il 26 Set 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?

Categorie

Scopri di più su Dates and Time in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by