필터 지우기
필터 지우기

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

조회 수: 43 (최근 30일)
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

채택된 답변

Sean de Wolski
Sean de Wolski 2012년 11월 13일
A = repmat(1:3,n,1)
And to learn more:
doc repmat

추가 답변 (3개)

Evan
Evan 2012년 11월 13일
편집: Evan 2012년 11월 13일
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 2012년 11월 13일
I think this is what REPMAT probably is doing behind the scenes:
V = 1:3;
M = V(ones(1,4),:)

Walter Roberson
Walter Roberson 2012년 11월 13일
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

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by