problem with Read excel file
이전 댓글 표시
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?
답변 (2개)
Marcel Kreuzberg
2022년 10월 20일
0 개 추천
xlsread read numeric values by default check out readtable
regards
Marcel
댓글 수: 2
tara es
2022년 10월 20일
Marcel Kreuzberg
2022년 10월 21일
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.
VBBV
2022년 10월 21일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!