Removing square brackets from cell array

조회 수: 15 (최근 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 CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by