Borrar filtros
Borrar filtros

Change Column Names in Excel to Text

2 visualizaciones (últimos 30 días)
Amanda
Amanda el 15 de Feb. de 2013
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

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 15 de Feb. de 2013
Editada: Azzi Abdelmalek el 15 de Feb. de 2013
y= {'California' 'Texas' 'Florida'
[123] [333 ] [234]
[222 ] [567] [123]
[234] [324 ] [334]}
h={'CA' 'TX' 'FL'}
y(1,:)=h

Más respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by