Effacer les filtres
Effacer les filtres

How can I generate a matrix with the same vector in all the lines?

43 vues (au cours des 30 derniers jours)
Lorenz
Lorenz le 13 Nov 2012
Hello,
I'd like to generate a matrix with the same vector n times. What I can choose. For example:
A= [ 1 2 3; 1 2 3; 1 2 3; .....n times......; 1 2 3]
Thank You

Réponse acceptée

Sean de Wolski
Sean de Wolski le 13 Nov 2012
A = repmat(1:3,n,1)
And to learn more:
doc repmat

Plus de réponses (3)

Evan
Evan le 13 Nov 2012
Modifié(e) : Evan le 13 Nov 2012
Another option:
V = [1:3];
n = 4; % desired number of rows
M = ones(n,1) * V
Returns
M = [1 2 3
1 2 3
1 2 3
1 2 3]

Matt Fig
Matt Fig le 13 Nov 2012
I think this is what REPMAT probably is doing behind the scenes:
V = 1:3;
M = V(ones(1,4),:)

Walter Roberson
Walter Roberson le 13 Nov 2012
t = 1:3;
A = t(ones(n,1), :); %what repmat will do internally so faster than repmat
or
kron(1:3, ones(n,1)); %slower than repmat but kron() has some good uses

Catégories

En savoir plus sur Multidimensional Arrays 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