Effacer les filtres
Effacer les filtres

XLS file with a date column, the date column cannot be read correctly with MATLAB 2016a in os x (10.11.5)

1 vue (au cours des 30 derniers jours)
I have a Excel file with a date column, the date column can be read correctly with Numbers in os x (10.11.5) . However, when I open the file with 2016a, the date column is change to be 5 consecutive digits, it supposed to be mm/dd/yy. Please advise how to resolve the problem.
REMARK
=================
I open the file with MATLAB 2016a(double click with filename in MATLAB) and I did't call any command in the window.
Please refer the Excel file (the author name for documents, Dr. E.P.Chan) https://github.com/burakbayramli/kod/blob/master/books/Quantitative_Trading_Chan/IGE.xls

Réponse acceptée

Walter Roberson
Walter Roberson le 1 Juin 2016
t = readtable('IGE.xls');
t.Date = datetime(t.Date, 'ConvertFrom', 'excel', 'Format', 'MM/dd/yy');
  3 commentaires
Walter Roberson
Walter Roberson le 1 Juin 2016
You do not need datenum, datestr, or x2mdate() if you have R2014b or later.
t = readtable('IGE.xls');
t.Date = char( datetime(t.Date, 'ConvertFrom', 'excel', 'Format', 'yyyyMMdd') );
Nelson Mok
Nelson Mok le 2 Juin 2016
Dear Walter, According to your suggestions, I did the code-fixing. Thank you.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by