Adding Zeros vectors within a matrix

조회 수: 1 (최근 30일)
Kevin Smith
Kevin Smith 2019년 4월 21일
댓글: Kevin Smith 2019년 4월 22일
I have a 3x3 matrix of values ex
A=[ 1 2 3;
4 5 6;
7 8 9]
I need it to add zeros at certain locations with in the matrix to make a 5x5 with zeros in the 3rd and 4th row and column ex
A2=[1 2 0 0 3;
4 5 0 0 6;
0 0 0 0 0;
0 0 0 0 0;
7 8 0 0 9]
my first attempt was concatenate but I can't figure out how to move the values correctly
newA=[A,zeros(3,2)]
newA_1=[newA;zeros(2,5)]

채택된 답변

Walter Roberson
Walter Roberson 2019년 4월 21일
A2 = zeros(5,5);
A2([1:2, 5], [1:2, 5]) = A;
  댓글 수: 1
Kevin Smith
Kevin Smith 2019년 4월 22일
Thank you so much. I didn't expect that to be simple.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by