Effacer les filtres
Effacer les filtres

How reapeat a series in a matrix?

2 vues (au cours des 30 derniers jours)
Enrico Azzini
Enrico Azzini le 9 Nov 2019
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

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by