how to remove an entire column in a cell array
    13 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I have a cell array of ca and I need to be able to remove an entire column. So far I am able to delete the last column 'Final', but not sure how to delete the middle columns since its a mixed cell array of char and doubles.
ca = {'Name','Test1','Test2','Test3','Final';
      'A', 70 , 80 , 100, 99;
      'B', 30 , 90, 95, 90;
      'C', 100, 70, 85, 90}
newCa = ca(:,2:end)
0 commentaires
Réponse acceptée
  Voss
      
      
 le 26 Oct 2022
        ca = {'Name','Test1','Test2','Test3','Final';
      'A', 70 , 80 , 100, 99;
      'B', 30 , 90, 95, 90;
      'C', 100, 70, 85, 90};
% delete the third column, say:
ca(:,3) = []
0 commentaires
Plus de réponses (1)
  David Hill
      
      
 le 26 Oct 2022
        ca = {'Name','Test1','Test2','Test3','Final';
      'A', 70 , 80 , 100, 99;
      'B', 30 , 90, 95, 90;
      'C', 100, 70, 85, 90};
newCa=ca;newCa(:,3)=[]
0 commentaires
Voir également
Catégories
				En savoir plus sur Multidimensional Arrays 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!