Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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]

Risposta accettata

Bruno Luong
Bruno Luong il 11 Set 2019
  4 Commenti
Bruno Luong
Bruno Luong il 12 Set 2019
Modificato: Bruno Luong il 12 Set 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).'

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Particle & Nuclear Physics in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by