how to extend a cell array?
显示 更早的评论
i have a 1D cell array . i wish to increase its size by adding zeros to its right . i think i can use pad array with LOC as 'b' but i dont know the synax. help me with this please.
采纳的回答
更多回答(2 个)
>> ca{1} = 'abc'
>> ca(2:15) = {0}; % put whatever value you want in this scalar cell
Just one line of code and no loops are required to extend a cell array. Note that that curly brackets and parentheses are deliberate!
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!