can any one help me on this how to convert this text file into excel sheet..
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
surya pramod Jalakam
il 20 Lug 2020
Commentato: Star Strider
il 22 Lug 2020
this is my text file
0 Commenti
Risposta accettata
Star Strider
il 20 Lug 2020
Try this:
T = readtable('RD-120101-031900.txt', 'PreserveVariableNames',1);
FirstFiveRows = T(1:5,:); % Sample Input Result
writetable(T, 'RD-120101-031900.xlsx'); % Write Excel File
T2 = readtable('RD-120101-031900.xlsx', 'PreserveVariableNames',1); % Read Excel File
FirstFiveRows2 = T2(1:5,:); % Sample Input Result
See the documentation for the various functions for details on their use.
.
6 Commenti
Più risposte (0)
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!