problem with Read excel file

3 Ansichten (letzte 30 Tage)
tara es
tara es am 20 Okt. 2022
Beantwortet: VBBV am 21 Okt. 2022
I have an excel file like below.
when I read it using
fid = xlsread('P645.cwu.igs14.csv');
the first column(Date) didnt read and it just give
what is the problem?

Antworten (2)

Marcel Kreuzberg
Marcel Kreuzberg am 20 Okt. 2022
xlsread read numeric values by default check out readtable
regards
Marcel
  2 Kommentare
tara es
tara es am 20 Okt. 2022
Thanks, but when I use readtable its problem is the conversion between table & matric. It makes an error for first part.
Marcel Kreuzberg
Marcel Kreuzberg am 21 Okt. 2022
after reading the file with readtable (and the 'NumHeaderLines',11 option) you should get an table. the problem is now, that the tirst column 'Date' is not numeric. to get an matrix you have to convert the Date to numeric value first.

Melden Sie sich an, um zu kommentieren.


VBBV
VBBV am 21 Okt. 2022
You can try using a readmatrix function. https://in.mathworks.com/help/matlab/ref/readmatrix.html

Community Treasure Hunt

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

Start Hunting!

Translated by