Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Could anyone help me how to have all rows of matrix to be similar.
조회 수: 1 (최근 30일)
이전 댓글 표시
A=[1 2;
3 4;
5 6]
I want to make all rows of the matrix to be the same in the following manner
[1 2;
1 2;
1 2]
or
[ 3 4;
3 4;
3 4]
or
[5 6;
5 6;
5 6]
Could anyone please help on this.
댓글 수: 1
Adam
2019년 10월 7일
편집: Adam
2019년 10월 7일
doc repmat
The code to do this is obvious but I'll leave it for you to work out from the documentation (though I'm sure there are plenty of other methods too).
And especially since you asked basically the same question last week without bothering to respond to my comment on that one.
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!