How to add rows and colums of zero?

조회 수: 2 (최근 30일)
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar 2019년 1월 3일
편집: madhan ravi 2019년 1월 3일
I want to compare two matrices for that the number of rows and columns should be similar
The two matrices to be compared are as follows
A=[3 4 5; 3 4 5; 3 4 5]
B=[1 2 3 4 5 ; 1 2 3 4 5; 1 2 3 4 5]
Consider the numbers also as their position in the matrix for ease of understanding
That means we need two rows and two colums of zero at the start
the expected matrix of is as follows
A=[0 0 3 4 5;0 0 3 4 5;0 0 3 4 5]
P.S. The number of colums and rows of zero are not always the same. that could be varying like 3 colums and 1 rows and further

채택된 답변

madhan ravi
madhan ravi 2019년 1월 3일
편집: madhan ravi 2019년 1월 3일
A = padarray(A,[abs(size(B,1)-size(A,1)) abs(size(B,2)-size(A,2))],0,'pre') % requires image processing toolbox
Gives:
A =
0 0 3 4 5
0 0 3 4 5
0 0 3 4 5
  댓글 수: 3
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar 2019년 1월 3일
But i dont know about the rows or a code with wich i can add both rows and colums of zero
madhan ravi
madhan ravi 2019년 1월 3일
편집: madhan ravi 2019년 1월 3일
Did you try my answer?
n=2; % no of zeros(rows & columns) to be padded
A=[zeros(n,size(B,2));zeros(size(A,1),n) A]
Gives:
A =
0 0 0 0 0
0 0 0 0 0
0 0 3 4 5
0 0 3 4 5
0 0 3 4 5

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by