HOW TO SHIFT COLUMN AND ROW MATRIX

16 visualizaciones (últimos 30 días)
Wahyu A
Wahyu A el 19 de En. de 2021
Comentada: Wahyu A el 19 de En. de 2021
hy guys. please help me, I dont know to shift column and row in matlab. please see image below. thanks. :)

Respuesta aceptada

Matt J
Matt J el 19 de En. de 2021
Editada: Matt J el 19 de En. de 2021
x=repmat([1 2 3 4],4,1); x(6,6)=0
x = 6×6
1 2 3 4 0 0 1 2 3 4 0 0 1 2 3 4 0 0 1 2 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0
perm=[1,2,5,6,3,4];
x(perm,perm),
ans = 6×6
1 2 0 0 3 4 1 2 0 0 3 4 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 3 4 1 2 0 0 3 4
  3 comentarios
Matt J
Matt J el 19 de En. de 2021
You're welcome, but please Accept-click the answer to indicate that it worked.
Wahyu A
Wahyu A el 19 de En. de 2021
Noted sir, thanks for the answer

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by