pointers

13 views (last 30 days)
mallikarjun
mallikarjun on 1 Apr 2012
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 Comment
Walter Roberson
Walter Roberson on 1 Apr 2012
MATLAB does not have any pointer data type.

Sign in to comment.

Accepted Answer

Titus Edelhofer
Titus Edelhofer on 1 Apr 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
  1 Comment
mallikarjun
mallikarjun on 1 Apr 2012
hi Edelhofer
thank for your answer.

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!