Efficient way to count the number of times a value changes to a particular value in an array
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
What is the best way to do the following:
count=0;  
for i=2:length(x)
  if x(i)==1 && x(i-1)~=1
     count=count+1;
  end
end
0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Cell Arrays in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!