MATLAB: Creating a vector with a pattern of numbers

patternsvectors

Hello,
I want to create a vector with numbers that follow this pattern:
1 4 5 6 7 10 11 12 13 16 17 18 19 22 23 24 25 28 29 30 31 … with a given maximum number m. Anyone has an idea how to do that ?

Best Answer

Try this pattern
a1 = [1 3 1 1];
use repmat and cumsum