How can I add new data to specific row and colum of a matrix
이전 댓글 표시
Eg: A = [1 2 5; 3 4 6; 7 8 9];
i want to make it
A = [1 0 2 5; 3 0 4 6; 0 0 0 0; 7 0 8 9];
Thank you
채택된 답변
추가 답변 (1개)
Andrei Bobrov
2013년 7월 17일
편집: Andrei Bobrov
2013년 7월 17일
A = [1 2 5; 3 4 6; 7 8 9]
B = zeros(size(A) + 1)
B([1 1 0 1]>0,[1 0 1 1]>0) = A
OR
A = reshape(1:9,3,[])';
B = zeros(size(A)+1);
m = 3;
n = 2;
ii = ones(size(B));
ii(m,n) = 0;
B((+all(ii,2))*(+all(ii)) > 0) = A;
or just
B(all(ii,2),all(ii)) = A;
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!