Inserting a row and moving other rows down
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Liam Sullivan
am 29 Jan. 2020
Kommentiert: Liam Sullivan
am 29 Jan. 2020
I am trying to insert a row of ones as the new 2nd row to my matrix, but i want ot move the other rows down. My matrix is defined as A =
3 7 6 0
8 2 5 0
0 1 9 0
0 Kommentare
Akzeptierte Antwort
Ajay Kumar
am 29 Jan. 2020
Bearbeitet: Ajay Kumar
am 29 Jan. 2020
A = [A(1,:);[1,1,1,1];A(2,:);A(3,:)]
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!