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