How do I import a timestamp from Excel/csv?

조회 수: 12 (최근 30일)
Dan Getz
Dan Getz 2017년 7월 6일
댓글: Walter Roberson 2017년 7월 11일
I have a .csv file with 6 columns of data and 14000 or so rows. I attached a file with a screenshot of the spreadsheet. I have tried
data=load('My_Spreadsheet_Name');
timestamp=data(:,1);
and since learned why that won't work. I then tried
xlsread('My_Spreadsheet_Name');
and that worked for everything that wasn't a timestamped piece of data. The 5 columns on the right imported into Matlab just fine but Matlab skipped over the 1st set of data that I needed.
This Link had a similar question but I'm either too dumb to figure out the formatting properly or I'm trying to import differently formatted data.
I'm hoping someone smarter than me will be able to figure out what I'm doing incorrectly.

답변 (2개)

C.J. Harris
C.J. Harris 2017년 7월 6일
Try this:
[NUMERIC, TXT, RAW] = xlsread('My_Spreadsheet_Name');
You'll find the timestamps in both the TXT and RAW outputs. If you call xlsread the way you are, then you'll just get the numeric data.
  댓글 수: 2
Dan Getz
Dan Getz 2017년 7월 6일
편집: Dan Getz 2017년 7월 6일
Thank you so much. That worked for me. Is there a way to import the data as being double? I'm trying to interpolated based on 3 hr data and I can't interpolate with cell data.
Walter Roberson
Walter Roberson 2017년 7월 7일
time_col = raw(:,1)
num_cols = cell2mat( raw(:,2:end) );
Now you can convert time_col with datenum() or (better) datetime()

댓글을 달려면 로그인하십시오.


Peter Perkins
Peter Perkins 2017년 7월 7일
The best way to do this in a recent version of MATLAB is to use readtable, and create datetimes. This will free you from all the issues of converting excel serial dates.
  댓글 수: 4
Peter Perkins
Peter Perkins 2017년 7월 11일
For a CSV, you can also specify the 'Format' parameter in the call to readtable, with something like %{'M/d/yy h:mm a'}D for that field.
Or quick and dirty: t.Date.Year = t.Date.Year + 2000
Walter Roberson
Walter Roberson 2017년 7월 11일
readtable is documented to interpret format strings the same way as textscan, and unless it has recently changed, textscan %D format specifiers cannot handle embedded spaces.
Ah.... testing now, I see that a '%{M/d/yy hh:mm aa}D' format spec can work for textscan, but only if whitespace has been set to exclude spaces.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by