Removing square brackets from cell array

7 ビュー (過去 30 日間)
Gopalakrishnan venkatesan
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

採用された回答

Purushottama Rao
Purushottama Rao 2015 年 5 月 7 日
編集済み: madhan ravi 2018 年 11 月 11 日
a=strrep(a,char(91),'')
use this

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by