Rename Excel column heading to MATLAB
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello everybody question is in the heading
0 commentaires
Réponse acceptée
Bhaskar R
le 12 Fév 2020
Modifié(e) : Bhaskar R
le 12 Fév 2020
data = readtable('<your xlsx file name>'); % read your file as table
data.Properties.VariableNames = {'Var1', 'Var2', ..... so on as your data and required column names}
writetable(data, '<your xlsx file name>') % write back modified data to excel file
3 commentaires
Bhaskar R
le 12 Fév 2020
"What do I have to wirte instead of 'Var1'? The variable names of my Excel (KB61_10) or the renamed version (like_01)?" -Yes
"Is it possible do input a csv file?" -Yes
You got error because data in csv file is in not proper way, to avoid error/get data give appropriate inputs to the readtable
for more details
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import from MATLAB 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!