how to move a row

14 visualizzazioni (ultimi 30 giorni)
Miri
Miri il 9 Giu 2022
Commentato: Jeffrey Clark il 9 Giu 2022
I have a 802x1. I would like to move/insert row 801 right after 400. so that 801 is the new 401.
  2 Commenti
Jeffrey Clark
Jeffrey Clark il 9 Giu 2022
If m is a matrix m = [m(1:400,:);m(801,:);m(401:800);m(802:end,:)];
If m is a row vector remove the ,: in each above.
If m is a column vector or otherwise I don't understand the question.
Jeffrey Clark
Jeffrey Clark il 9 Giu 2022
@Miri you could do this implace if you are concerned with the memory associated with creating another array/matrix:
m801 = m(801,:);
m(402:801,:) = m(401:800,:);
m(401,:) = m801;

Accedi per commentare.

Risposta accettata

James Tursa
James Tursa il 9 Giu 2022
result = M([1:400,801,401:800,802])

Più risposte (0)

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by