How to make a={'1','2','3','4'} to b={'1234'}
8 次查看(过去 30 天)
显示 更早的评论
a={'1','2','3','4'}
make to b={'1234'}
0 个评论
采纳的回答
Wan Ji
2021-9-1
The simple way is
a={'1','2','3','4'};
b = {[a{:}]}
Answer
b =
1×1 cell array
{'1234'}
0 个评论
更多回答(2 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!