Xlswrite and copy&paste uitable column names

1 visualización (últimos 30 días)
as hz
as hz el 17 de Feb. de 2013
Hi,
I have a uitable which I copy&paste and export. It does not paste the uitable column names to Excel. How can I do it?. Do I have to change something in the property inspector?
In addition, how do I also export also the uitable column names when I am saving the uitable data (using xlswrite).
Thanks

Respuesta aceptada

Jan
Jan el 17 de Feb. de 2013
Copy&Paste duplicates the marked contents, but the headers are not selected. Therefore I'd suggest am extra button or adding a context menu on the Java level. From there you can apply a method similar to Azzi's suggestion considering if the Data are stored as cell or double matrix.

Más respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 17 de Feb. de 2013
Editada: Azzi Abdelmalek el 17 de Feb. de 2013
col=get(t,'columnname')' % t is the handle of your table
data=get(t,'data')
num=[col;data]
xlswrite('file.xls',num)
  5 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 17 de Feb. de 2013
You can delete your file before saving again.
delete([pathname filename])
as hz
as hz el 17 de Feb. de 2013
Thanks.

Iniciar sesión para comentar.

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by