Creating a cell and allocation specific text
    4 views (last 30 days)
  
       Show older comments
    
Hello,
My objective is to create an array cell like:
result = {'Intercept','X1','X2','X3',....'X41'}, in the 1st colum I got the word Intercept, and 2nd X1, 3rd X2, so on until reach X41 in the 42th colum
result = cell(1,42);
result{1,1} = 'Intercept';
result_aux = sprintfc('X%d', 1:41);
result{1,2:end} = result_aux; % Here i get the error
From the last code line i get this error message:
Expected one output from a curly brace or dot indexing expression, but there were 41 results.
What am I doing wrong?
Thanks
0 Comments
Accepted Answer
  Alex Mcaulley
      
 on 9 Apr 2019
        result = cell(1,length(beta));
result{1} = {'Intercept'};
result(2:end) = sprintfc('X%d', 1:41);
More Answers (2)
  KSSV
      
      
 on 9 Apr 2019
        result = cell(1,length(beta));
result{1,1} = {'Intercept'};
result_aux = sprintfc('X%d', 1:41);
legend{1,2:end} = legend_aux; % Here i get the error
1 Comment
  madhan ravi
      
      
 on 9 Apr 2019
				
      Edited: madhan ravi
      
      
 on 9 Apr 2019
  
			KSSV isn’t this the exact copy from the question?
  Tiago Dias
      
 on 9 Apr 2019
        2 Comments
  madhan ravi
      
      
 on 9 Apr 2019
				
      Edited: madhan ravi
      
      
 on 9 Apr 2019
  
			That’s exactly how Alex showed in his answer.
See Also
Categories
				Find more on Matrix Indexing 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!


