Clear Filters
Clear Filters

How to make vector increasing same value??

1 view (last 30 days)
For example, I have a vector [1,2,3,4]
But, I want to increase this like
[1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4]
I tried to if and for. But it doesn't work well.
Could you recommend something?

Accepted Answer

Stephen23
Stephen23 on 19 Dec 2018
repelem([1,2,3,4],4)

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!