How can i change excel file extension into .DAT or .rd file?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Walter Roberson
il 1 Nov 2020
Is that the correct rdfile format? Or are you using Adobe Creative, which creates .rd files that are completely different?
Risposte (1)
Ameer Hamza
il 31 Ott 2020
Try using readtable() and writetable() to convert the data to .dat format
T = readtable('filename.xlsx')
writetable(T, 'filename.dat')
2 Commenti
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!