How to add header row to cell array?

212 visualizaciones (últimos 30 días)
Mariagrazia Ambrosino
Mariagrazia Ambrosino el 12 de Mayo de 2022
Comentada: Mariagrazia Ambrosino el 12 de Mayo de 2022
Hi everyone.
I have a cell array like this:
I would like to add a header row with the following fields: ['Type' 'Latency' 'Description'].
I've tried the reshape function but can't get good results. Can anyone help me please?

Respuestas (1)

dpb
dpb el 12 de Mayo de 2022
A cell array doesn't have the facility for headers, per se; if you add to it you've effectively created more data -- and when you go to use the data, then you have to remove or not reference that row to operate on the data alone. This is a lot of effort.
I'd suggest to use a table instead; you get the header effectively for free from the column/variable names.
tC=cell2table(C,'VariableNames',{'Type','Latency','Description'});
  5 comentarios
dpb
dpb el 12 de Mayo de 2022
See writetable It'll do whatever you need...
Mariagrazia Ambrosino
Mariagrazia Ambrosino el 12 de Mayo de 2022
thanks you !!

Iniciar sesión para comentar.

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by