Given a row vector of integers with repeating values (with all repeating values occuring in a single continuous run), create an array that is the cumulative count of the unique values -
%% Example 1
input = [4 5 5 6 11 11 11 11 20 20 20 20 20 20 20 35 50 50];
output = [1 1 2 1 1 2 3 4 1 2 3 4 5 6 7 1 1 2];
%% Example 2
input = [33 33 33 22 22 11];
output = [1 2 3 1 2 1];
Only vectorized solutions will be accepted. Check the test suite for banned functions.

Solution Stats

17 Solutions

8 Solvers

Last Solution submitted on Dec 14, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...

Problem Recent Solvers8

Suggested Problems

More from this Author44

Community Treasure Hunt

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

Start Hunting!