How to import date time format from excel?

I am trying to import excel data that has a date and time stamp, but MATLAB is ignoring it. The date and time is in the A column of excel, and when I use the import data button in MATLAB it only imports the data in the B column. In the excel cell it looks like this:
2016/03/11 15:50:47.689
But the actual data in the cell is:
3/11/2016 3:50:48 PM
This also doesn't make sense because in a slightly different file with the same date format is working.

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 3 月 25 日
編集済み: Azzi Abdelmalek 2016 年 3 月 25 日

3 投票

Use xlsread function
[num,text,both]=xlsread('yourfile.xlsx')

2 件のコメント

Evan Chou
Evan Chou 2016 年 3 月 27 日
Thank you! That has worked.
Peter Perkins
Peter Perkins 2017 年 11 月 16 日
In recent versions of MATLAB, you are better off using readtable rather than xlsread.

サインインしてコメントする。

その他の回答 (1 件)

mantu babu
mantu babu 2017 年 11 月 6 日

0 投票

I also have problem like this and when is use " * _Use xlsread function
[num,text,both]=xlsread('yourfile.xlsx')_** "
function i get the time and date stamp but with 1 day delay. please help

カテゴリ

ヘルプ センター および File ExchangeData Import from MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by