How to append a new element to a cell object A?
    232 views (last 30 days)
  
       Show older comments
    
>>A={'a';'b'};
I want to append a new element,say 'c', to A, how could I do?
I would appreciate if you could help me.
0 Comments
Accepted Answer
  Walter Roberson
      
      
 on 8 Jun 2015
        A{end+1} = c;
6 Comments
  Christopher Davis
 on 10 Jan 2021
				That's really helpful, not sure if it's proper terminology but I've heard this refered to as prepend
  Pedro Miranda Pinheiro
 on 14 Sep 2021
				Thank you, @Walter Roberson! @Christopher Davis, prepend is used for insertion of an element in the begining of a data structure. Append is the one used for end insertion as mentioned above.
More Answers (1)
See Also
Categories
				Find more on Logical in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!







