How to add a first row and a first column of zeros in a matrix?
33 次查看(过去 30 天)
显示 更早的评论
hi,
i have a matrix, for example
A=[1 2 3; 4 5 6; 7 8 9]
how can i add a first row of zeros and a first colum of zeros to reach the following results?
B=[0 0 0 0; 0 1 2 3; 0 4 5 6; 0 7 8 9]
and how can i delete the last row and the last column of a matrix to reach this second results?
C=[0 0 0; 0 1 2; 0 4 5]
thank you very much matlab users!
0 个评论
采纳的回答
Arif Hoq
2022-2-14
A=[1 2 3; 4 5 6; 7 8 9];
AA=[zeros(1,3);A];
AAA=zeros(4,1);
B=[AAA AA];
B(:,end)=[];
B(end,:)=[]
0 个评论
更多回答(2 个)
Star Strider
2022-2-14
A=[1 2 3; 4 5 6; 7 8 9];
B = zeros(size(A,1)+1,size(A,2)+1);
B(2:end,2:end) = A
C = B(1:end-1,1:end-1)
Four lines of code to do everything!
.
0 个评论
Simon Dengler
2022-2-14
编辑:Simon Dengler
2022-2-14
bit more general and faster?
A=[1 2 3; 4 5 6; 7 8 9];
B=zeros(size(A)+1);
B(2:end,2:end)=A
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!