Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

1 visualizzazione (ultimi 30 giorni)
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'}

Risposte (1)

Walter Roberson
Walter Roberson il 6 Nov 2015
D = cell(16,11);
D(1,:) = {'a','b','c','d','e','f','g','h','i','j','k'}
  2 Commenti
me
me il 6 Nov 2015
Modificato: me il 6 Nov 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 il 6 Nov 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.

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by