repeat last column and last row of a matrix
조회 수: 3 (최근 30일)
이전 댓글 표시
i have a matrix of 63*64.i want to repeat the last colum and get a matrix of 63*65? my next matrix is 62*65. I want to repeat the last row and get the matrix of 63*65?
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 9월 13일
편집: Azzi Abdelmalek
2013년 9월 13일
A(:,end+1)=A(:,end)
For the second matrix
A(end+1,:)=A(end,:)
댓글 수: 3
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!