How can i change excel file extension into .DAT or .rd file?
Mostrar comentarios más antiguos
I tried to change the excel file extension using notepad, but DAT&.rd extensions are not available there, may someone tell me another method to do that?
3 comentarios
Walter Roberson
el 31 de Oct. de 2020
rdfile as described in chapter 8, page 47? https://www.daylight.com/meetings/mug05/Kappler/ctfile.pdf
Ahmed Elsayed
el 1 de Nov. de 2020
Walter Roberson
el 1 de Nov. de 2020
Is that the correct rdfile format? Or are you using Adobe Creative, which creates .rd files that are completely different?
Respuestas (1)
Ameer Hamza
el 31 de Oct. de 2020
Try using readtable() and writetable() to convert the data to .dat format
T = readtable('filename.xlsx')
writetable(T, 'filename.dat')
2 comentarios
Ahmed Elsayed
el 1 de Nov. de 2020
Ameer Hamza
el 1 de Nov. de 2020
I am glad to be of help!!!
Categorías
Más información sobre Spreadsheets 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!