Removing square brackets from cell array
    12 views (last 30 days)
  
       Show older comments
    
    Gopalakrishnan venkatesan
 on 7 May 2015
  
    
    
    
    
    Edited: madhan ravi
      
      
 on 11 Nov 2018
            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 Comments
Accepted Answer
  Purushottama Rao
      
 on 7 May 2015
        
      Edited: madhan ravi
      
      
 on 11 Nov 2018
  
      a=strrep(a,char(91),'')
use this
0 Comments
More Answers (0)
See Also
Categories
				Find more on Data Types in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!