How to count the number of times that values changes?
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
A=[1 1 1 2 1 3 3 1 1]' I want to get:
B=[NaN 0 0 1 2 3 3 4 4]'
The second and third values of B are 0 because A doesn't change value. Fourth value is 1 because A changes value. Fifth value is 2 because A changes value again. And so on...
0 commentaires
Réponse acceptée
Plus de réponses (1)
Mario Malic
le 9 Jan 2021
Modifié(e) : Mario Malic
le 9 Jan 2021
Hello,
This should do the trick.
B = [NaN; cumsum(diff(A) ~= 0)]';
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!