I can use the datenum command for individual cells, but can not seem to apply it to a whole column. What am I doing wrong? Thanks, Stephen

 Réponse acceptée

Honglei Chen
Honglei Chen le 15 Mar 2012

0 votes

try cellfun
cellfun(@datenum,...
see the doc
doc cellfun

Plus de réponses (1)

Jan
Jan le 15 Mar 2012

0 votes

datenum does accept a column cell:
datenum({'15-Mar-2012 23:53:23'; '15-Mar-2012 23:53:23'})
>> ans =
7.3494e+005
7.3494e+005

3 commentaires

Stephen Jones
Stephen Jones le 16 Mar 2012
Jan,
Thanks, but I have a long column of dates, in the format of yyyymmdd. Is there a way to use datenum in this situation?
Stephen
Jan
Jan le 16 Mar 2012
I suggest to read the documentation: help datenum, doc datenum
There you find:
datenum({'20120315'; '20120316'}, 'yyyymmdd')
Sara Mendiola
Sara Mendiola le 1 Mar 2017
How about datestr for a column?

Connectez-vous pour commenter.

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by