Removing square brackets from cell array
7 ビュー (過去 30 日間)
古いコメントを表示
Gopalakrishnan venkatesan
2015 年 5 月 7 日
編集済み: madhan ravi
2018 年 11 月 11 日
I have cell array a = {'[0' ; '[1' ; '[10'}
I need to need remove the square bracket from cell array
my new cell array should be a = {0 ; 1 ; 10}
how can i do this?
Thank you
0 件のコメント
採用された回答
Purushottama Rao
2015 年 5 月 7 日
編集済み: madhan ravi
2018 年 11 月 11 日
a=strrep(a,char(91),'')
use this
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!