How to add an element to cell?
1 次查看(过去 30 天)
显示 更早的评论
There is an existing cell like:
the_cell={'January','March','April'}
the_cell =
1×3 cell array
{'January'} {'March'} {'April'}
How to add an element into this 1x3 cell to make it 1x4 cell like:
the_cell =
1×4 cell array
{'January'} {'February'} {'March'} {'April'}
Thanks.
0 个评论
采纳的回答
per isakson
2021-1-19
One way
>> the_cell={'January','March','April'};
>> the_cell = cat( 2, the_cell(1), {'February'}, the_cell(2:end ) )
the_cell =
1×4 cell array
{'January'} {'February'} {'March'} {'April'}
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!