How to generate repeat column labels
    4 views (last 30 days)
  
       Show older comments
    
    Aaron Ouyang
 on 21 May 2022
  
    
    
    
    
    Answered: Walter Roberson
      
      
 on 21 May 2022
            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. 
0 Comments
Accepted Answer
More Answers (1)
  Atsushi Ueno
      
 on 21 May 2022
        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)
0 Comments
See Also
Categories
				Find more on Characters and Strings in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

