Read text without converting to date
Mostrar comentarios más antiguos
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?
Respuestas (2)
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.
Categorías
Más información sobre Text Files en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!