2

我在 excel 中有时间戳形式的数据,看起来像

30/11/12 12:42 AM
30/11/12 12:47 AM
30/11/12 12:56 AM
30/11/12 1:01 AM

我需要把它放到 matlab 看起来像这样

dateStrings = {...
'30/11/12 12:42 AM' ...
'30/11/12 12:47 AM' ...
'30/11/12 12:56 AM' ...
'30/11/12 1:01 AM' ...
 };

我试过 xlsread 但它没有放入字符串。

4

2 回答 2

0

我设法找到解决方法

1. Copy and paste your dates into Excel in dd-mm-yyyy format
2. In Excel, highlight the data and go Right Click, Format Cells/Number
3. In Matlab go a=xlsread(xlsfile);
4. Type datestr(a+693960)
于 2013-05-02T15:22:39.960 回答
0

以下对我有用(在 Octave 中,但在 MATLAB 中应该相同):

>> [num,txt,raw]=xlsread('dates.xls','A1:A4')
num =

  4.1243e+004
  4.1243e+004
  4.1243e+004
  4.1243e+004

txt = {}(0x0)
raw =
{
  [1,1] = 4.1243e+004
  [2,1] = 4.1243e+004
  [3,1] = 4.1243e+004
  [4,1] = 4.1243e+004
}

>> datestr(num+datenum(1900,1,1,0,0,0)-2)
ans =

30-Nov-2012 00:42:00
30-Nov-2012 00:47:00
30-Nov-2012 00:56:00
30-Nov-2012 01:01:00

>> whos ans
Variables in the current scope:

Attr Name        Size                     Bytes  Class
==== ====        ====                     =====  =====
    ans         4x20                        80  char

Total is 80 elements using 80 bytes

查看datestr各种输出格式选项的功能。

阿尔诺

于 2013-05-02T15:27:37.680 回答