Clear Filters
Clear Filters

How reapeat a series in a matrix?

2 views (last 30 days)
Hi, is one of my first tme that I use matlab. I'd like to know how can do if I have a matrix (6,120) and I want to fill the first row with a sequence of numbers from 1 to 10, that repeats until the end of the row.
Thankyou

Accepted Answer

Walter Roberson
Walter Roberson on 9 Nov 2019
YourMatrix = zeros(6,120);
YourMatrix(1,:) = repmat(1:10, 1, 12);

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!