How do I import a timestamp from Excel/csv?

13 visualizzazioni (ultimi 30 giorni)
Dan Getz
Dan Getz il 6 Lug 2017
Commentato: Walter Roberson il 11 Lug 2017
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.

Risposte (2)

C.J. Harris
C.J. Harris il 6 Lug 2017
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 Commenti
Dan Getz
Dan Getz il 6 Lug 2017
Modificato: Dan Getz il 6 Lug 2017
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 il 7 Lug 2017
time_col = raw(:,1)
num_cols = cell2mat( raw(:,2:end) );
Now you can convert time_col with datenum() or (better) datetime()

Accedi per commentare.


Peter Perkins
Peter Perkins il 7 Lug 2017
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 Commenti
Peter Perkins
Peter Perkins il 11 Lug 2017
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 il 11 Lug 2017
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.

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by