strings function not available on MATLAB 2013
显示 更早的评论
Since strings function was introduced in MATLAB 2016, how can one create a m by n array of empty strings in MATLAB 2013? Any suggestions?
回答(2 个)
Geoff Hayes
2017-12-19
Said - you could try something like
stringArray = repmat({''},10,2)
We use repmat to repeat copies of our cell array which has an empty string. In the above example, a 10x2 cell array of empty strings is created.
Fangjun Jiang
2017-12-19
编辑:Fangjun Jiang
2017-12-19
s=cell(3,2);
s(:)={''}
ischar(s{3,1})
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!