Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Date(class:cell) type problem
    2 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I have cell array containing only dates(imported from excel) I want to change them into YYYYMMDD type. Datestr doesn't work and I tried cell2mat then datestr, but the result is quite wierd since many of the dates are missing from the result. I tried to export to excel to set the date type but some of them remain the same. So I am wondering how can I deal with this? driving me nuts. Thank you so much!
0 Commenti
Risposte (2)
  Anthony Smith
 il 17 Giu 2011
        datestr seems to only operate on strings so you probably need to access the contents of each cell individually rather than using an array operation. Using datestr format 29 for example:
for i=1:size(cellArray,1)
    for j=1:size(cellArray,2)
        newFormattedString = datestr(cellArray{i,j} ,29);
    end
end
1 Commento
Questa domanda è chiusa.
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


