pointers
13 views (last 30 days)
Show older comments
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
Accepted Answer
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
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!