pointers

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 Commento

Walter Roberson
Walter Roberson il 1 Apr 2012
MATLAB does not have any pointer data type.

Accedi per commentare.

 Risposta accettata

Titus Edelhofer
Titus Edelhofer il 1 Apr 2012

1 voto

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

1 Commento

mallikarjun
mallikarjun il 1 Apr 2012
hi Edelhofer
thank for your answer.

Accedi per commentare.

Più risposte (0)

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by