How to shuffle randomly first raw of a matrix so its corresponding value in the column shuffles with it

1 次查看(过去 30 天)
I have a matrix
X=[N1...N5 ; M1...M5];
I want to shuffle the N values so they have their corresponding M values in the second row.
For example:
If N values are shuffled as: N3, N1, N5, N4, N2
then, the new vector will be:
X=[N3, N1, N5, N4, N2 ; M3, M1, M5, M4, M2]
** This matrix is just an example, I will have to shuffle a much larger matrix a several times (each time shuffles randomly)
Help please

回答(1 个)

Matt J
Matt J 2022-6-26
编辑:Matt J 2022-6-26
X=rand(2,5)
X = 2×5
0.1792 0.3018 0.7249 0.2244 0.7763 0.9590 0.4391 0.9836 0.8612 0.9649
X=X(:,[3,1,5,4,2])
X = 2×5
0.7249 0.1792 0.7763 0.2244 0.3018 0.9836 0.9590 0.9649 0.8612 0.4391

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by