Read text without converting to date
10 visualizaciones (últimos 30 días)
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?
2 comentarios
Respuestas (2)
dpb
el 27 de Sept. de 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 comentarios
Ver también
Categorías
Más información sobre Text Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!