Read text without converting to date
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm using both csvread and xlsread to read in a .csv file with hex data as text. Two of the values are '7DEC' and 'FEB6', but they are being auto-converted to '12/7/2023' and '2/6/2023' in the output cell. Is there a way to prevent this?
Antworten (2)
dpb
am 27 Sep. 2023
writematrix(["7DEC","FEB6","FFFE","ABCD"],'test.csv')
type test.csv
data=readcell('test.csv')
fid=fopen('test.csv','r');
data=textscan(fid,'%x','delimiter',',')
fid=fclose(fid)
data{:}
Depending upon whether you want it converted or not on input.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Text Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!