could anyone help me to rearrange the matrix in the required manner.

1 view (last 30 days)
I ma having a matrix A=[ 1 0 0 0;
2 0 0 0;
3 4 0 0;
5 6 7 0]
i need to rearrange the matrix in the following manner
A=[1 2 3 5;
0 0 4 6;
0 0 0 7;
0 0 0 0]

Accepted Answer

Bruno Luong
Bruno Luong on 11 Sep 2019
  4 Comments
Bruno Luong
Bruno Luong on 12 Sep 2019
Edited: Bruno Luong on 12 Sep 2019
I can only see one thing that you want beside A.' (but why don't you tell use what is the desired output)?
x = 1:min(size(A));
A(x,x) = A(x,x).'

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!