Creating a "triangular" matrix

조회 수: 2 (최근 30일)
Radhika Kulkarni
Radhika Kulkarni 2021년 2월 9일
댓글: Walter Roberson 2021년 2월 9일
Hello,
I have a 17 x 75 matrix A, and have created a copy of the same matrix (B) for making changes. I want to manipulate this matrix by adding a column of 0's in between each column now. Furthermore, I want to shift the numbers in the ODD rows to the right by 1. In the end, I will have a "triangular" matrix. I have added a picture for visual reference.
Any help would be appreciated.
  댓글 수: 2
Walter Roberson
Walter Roberson 2021년 2월 9일
Numeric matrices can never have empty holes.
Radhika Kulkarni
Radhika Kulkarni 2021년 2월 9일
Can it be done if there are 0's in the empty cells?

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

답변 (1개)

Walter Roberson
Walter Roberson 2021년 2월 9일
B = reshape([A;zeros(size(A))], size(A, 1),[]);
B(1:2:end, 2:end) = B(1:2:end, 1:end-1) ;
  댓글 수: 2
Radhika Kulkarni
Radhika Kulkarni 2021년 2월 9일
Hi Walter, thank you for your quick response! May I know why the numbers repeat on the first and and second column for the ODD rows? Is there a way to have the first number be 0 so there aren't repeats?
Walter Roberson
Walter Roberson 2021년 2월 9일
Oh, right, I forgot to account for that.
B = reshape([A;zeros(size(A))], size(A, 1),[]);
B(1:2:end, 2:end) = B(1:2:end, 1:end-1);
B(1:2:end, 1) = 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