Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Ho to reduce the table to 1dim?

1 visualización (últimos 30 días)
Nimrodb
Nimrodb el 13 de Feb. de 2013
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I use the GUIDE option and placed a table.
The table size is 4×6.
I want to have it 1×6 -> I tried to delete the extra rows with no success. It keep on returning them when I press Apply/OK
  2 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 13 de Feb. de 2013
How did you do that?
Nimrodb
Nimrodb el 13 de Feb. de 2013
I added a table with the GUI tool - the default is 4x2
How do i reduce it to 1x2 for ex.?

Respuestas (1)

Sean de Wolski
Sean de Wolski el 13 de Feb. de 2013
A uitable's size is determined by the size of its 'Data' property. So change that:
h = uitable('Data',rand(4,6));
%%To Reduce it:
set(h,'Data',1:6)
  7 comentarios
Nimrodb
Nimrodb el 20 de Feb. de 2013
Sean - because I wanted to reduce a table - not add cells to it. As you can see from my prev' comment - the cell type when using your format gave me NaN values ([]) and not cell ('') or whatever this format is
Sean de Wolski
Sean de Wolski el 20 de Feb. de 2013
So
repmat({''},1,6)
?

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by