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!