How to constructing a matrix of repeated rows v?
    조회 수: 10 (최근 30일)
  
       이전 댓글 표시
    
If I have an arbitrary matrix A  and a row vector v of 1 row and the same number of columns as A.
Suppose I want to construct a matrix Q of the same size as A where every row in Q is the vector v.
Illustrative example:
A=[ 1 1 1; 2 2 2; 3 3 3; 4 4 4]; v=[5 5 5];
%I want to create Q s.t
Q=[5 5 5; 5 5 5 5; 5 5 5 5; 5 5 5 5];
Thanks
댓글 수: 0
채택된 답변
  Matt J
      
      
 2020년 3월 7일
        
      편집: Matt J
      
      
 2020년 3월 7일
  
      Either of the following would work
>> Q=repelem(v,size(A,1),1)
>> Q=repmat(v,size(A,1),1)
but note that it's not normally something you need or want to do. Matlab has deliberately provided  implicit expansion,
or for older Matlab versions bsxfun,
to avoid such copying in many common situations.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

