How to get specified values in vector?
    2 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Hi,
I need some help on this.
Lets say i have a vector of: a= [1.1 1.3 1.5 1.8 2.5 3.4 6.7 6.9 8.0 10.2 15.0 17.8 21.0 23.4]
However, i only want the values of not exceeding 10 in one of my vector, which is something like that: b= [1.1 1.3 1.5 1.8 2.5 3.4 6.7 6.9 8.0]
and another vector which has values of more than 10 in it: c= [10.2 15.0 17.8 21.0 23.4]
How do i do these?
Thank you so much.
0 commentaires
Réponses (1)
  the cyclist
      
      
 le 20 Juin 2013
        
      Modifié(e) : the cyclist
      
      
 le 20 Juin 2013
  
      idx = a<=10;
b = a(idx);
c = a(not(idx));
2 commentaires
  Iain
      
 le 20 Juin 2013
				Almost the same method:
 i = find(a > 10,1);
 b = a(1:i);
 c = a((i+1):end);
Voir également
Catégories
				En savoir plus sur Logical 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!


