removing elements of cell array
    9 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
say I have a 1 column cell array
 x={'aa';'aal';'aalii';'aam';'aani';'aardvark';'aardwolf';'aaron'}
and word=nanny
how would I remove all words from the cell array that are not equal length to the word. For example. length(word)=5
remove all words from x that are not length 5
0 commentaires
Réponses (2)
  Stephen23
      
      
 le 9 Nov 2015
        >> x = {'aa';'aal';'aalii';'aam';'aani';'aardvark';'aardwolf';'aaron'};
>> word = 'nanny';
>> x(numel(word)~=cellfun(@numel,x)) = []
x = 
    'aalii'
    'aaron'
Use your favorite internet search engine to locate the official MATLAB documentation for the functions that I used. MATLAB has really great documentation, and you will be doing yourself a great favor by learning to use it.
0 commentaires
  William Smith
      
 le 3 Avr 2018
        
      Modifié(e) : William Smith
      
 le 3 Avr 2018
  
      If it's just explicit items you want to remove, rather based on a function, you can simply use 'setdiff'.
e.g.
setdiff({'one', 'two', 'buckle', 'my', 'shoe'},{'boot', 'my', 'shoe'})   
ans =
1×3 cell array
  'buckle'    'one'    'two'
0 commentaires
Voir également
Catégories
				En savoir plus sur Characters and Strings dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


