pointers
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Respuesta aceptada
Titus Edelhofer
el 1 de Abr. de 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
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!