Write Data to txt file from Excel
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rounak Saha Niloy
le 17 Mar 2022
Modifié(e) : Arif Hoq
le 17 Mar 2022
I have some data in cell D3:D10 in an excel file. I want to write these particular data in a txt file. How do I do that?
2 commentaires
Walter Roberson
le 17 Mar 2022
Modifié(e) : Walter Roberson
le 17 Mar 2022
Is it numeric data?
Is it required that the MATLAB program instruct Excel to write the data, or would it instead be acceptable to read the data into MATLAB and have MATLAB write the data?
Réponse acceptée
Arif Hoq
le 17 Mar 2022
Modifié(e) : Arif Hoq
le 17 Mar 2022
try this:
A=readtable('data.xlsx','ReadvariableName',false);
writetable(A,'myfile.txt')
or
B=readmatrix('data.xlsx');
writematrix(B,'myfile2.txt')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!