HOW TO SHIFT COLUMN AND ROW MATRIX

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

Wahyu A
Wahyu A el 19 de En. de 2021
Cool. Its works. Thanks a lot😀
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 Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Productos

Preguntada:

el 19 de En. de 2021

Comentada:

el 19 de En. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by