Borrar filtros
Borrar filtros

Info

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

If i have an empty pre-allocated 16x11 matrix how can i add headers across the first row?

1 visualización (últimos 30 días)
I tried this but it didn't work
D = cell(16,11);
d{1}{:} = {'a','b','c','d','e','f','g','h','i','j','k'}

Respuestas (1)

Walter Roberson
Walter Roberson el 6 de Nov. de 2015
D = cell(16,11);
D(1,:) = {'a','b','c','d','e','f','g','h','i','j','k'}
  2 comentarios
me
me el 6 de Nov. de 2015
Editada: me el 6 de Nov. de 2015
Thank you that works great; Do you know if there is a way I can do this with out the heading coming out with the '.... as in the heading being just a instead of 'a' in the matrix?
Walter Roberson
Walter Roberson el 6 de Nov. de 2015
You would have to create a new data class in which each element had an associated flag (or deducible property) that indicated whether it should be output as numeric or as a string without quotes when data of the class was to be displayed. You might be able to subclass it from cell so that you do not have to duplicate all of the other behaviours.
It is the display() method of a class that is called when an element of the class is to be output normally.
Usually you would find it considerably less work to instead write code that displayed the headers and the data and to call the routine at need. Or if you are writing to a file, xlswrite() knows to not put in the quotes.

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by