pointers
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i arranged matrix or array in ascending order, how Establish a set of pointers P to address the start and end of each block of records that have same value.
1 commentaire
Réponse acceptée
Titus Edelhofer
le 1 Avr 2012
Hi,
use the function diff to find the jumps, i.e., the position where the difference is not zero:
p = find(diff(x)~=0);
Titus
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!