Rearrange matrix rows in specific order

25 次查看(过去 30 天)
I have a matrix whose rows I would like to re-order in a specific order
e.g.,) I need the order of the rows to go from [1 2 3 4 5 6 7] to lets say [2 3 4 5 1 6 7] ?

回答(1 个)

C B
C B 2021-11-9
Matrix_A = [1 1 1;2 2 2;3 3 3 ; 4 4 4; 5 5 5; 6 6 6; 7 7 7]
Matrix_A = 7×3
1 1 1 2 2 2 3 3 3 4 4 4 5 5 5 6 6 6 7 7 7
Inp = [2 3 4 5 1 6 7];
Output = Matrix_A(Inp,:)
Output = 7×3
2 2 2 3 3 3 4 4 4 5 5 5 1 1 1 6 6 6 7 7 7

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by