How to append a new element to a cell object A?
2,009 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
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 Data Type Identification 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!