How to generate repeat column labels
Mostrar comentarios más antiguos
Hi
I'm looking to create column labels for my table:
array2table(data,'VariableNames',{'FirstName' 'Height' 'Weight' 'BloodPressure'})
I want the variable names to be Cell 1, Cell 2, Cell 3, Cell 4, etc. until Cell 100. How can I generate these repeat character strings without typing it out manually? Thanks.
Respuesta aceptada
Más respuestas (1)
text = sprintf('Cell %d\n',1:100);
text(end) = []; % to avoid an empty cell at the end
labels = splitlines(text);
array2table(1:100,'VariableNames',labels)
Categorías
Más información sobre Characters and Strings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!