Change Column Names in Excel to Text
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have an excel file:
California Texas Florida
123 333 234
222 567 123
234 324 334
I want to CREATE or write to a text file with the change column names but yet keep the same data.
So the desire output is:
CA TX FL
123 333 234
222 567 123
234 324 334
Thanks, Amanda
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 15 Fév 2013
Modifié(e) : Azzi Abdelmalek
le 15 Fév 2013
y= {'California' 'Texas' 'Florida'
[123] [333 ] [234]
[222 ] [567] [123]
[234] [324 ] [334]}
h={'CA' 'TX' 'FL'}
y(1,:)=h
0 commentaires
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!