Scale Matrix Dimensions by Factor
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a matrix that needs to be scaled in the horizontal, copying each row.
Ex:
[1 2 3]
[4 5 6]
Scale Columns only by Factor 3
[1 1 1 2 2 2 3 3 3]
[4 4 4 5 5 5 6 6 6]
How can I write a simple loop to perform this. Thanks!
댓글 수: 0
채택된 답변
Bruno Luong
2018년 11월 16일
>> repelem([1 2 3],3)
ans =
1 1 1 2 2 2 3 3 3
>>
댓글 수: 4
Bruno Luong
2018년 11월 16일
I think I understand now your incorrect MATLAB notation
>> repelem([1 2 3; 4 5 6],1,3)
ans =
1 1 1 2 2 2 3 3 3
4 4 4 5 5 5 6 6 6
>>
추가 답변 (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!