randperm

How can I use randperm for a nx2 matrix?

댓글 수: 1

Dr. Seis
Dr. Seis 2011년 11월 11일
"randperm" only takes 1 scalar input argument. Can you give a sample of an input nx2 matrix AND what you would expect the output to be?

댓글을 달려면 로그인하십시오.

답변 (3개)

Jonathan
Jonathan 2011년 11월 11일

0 개 추천

If you want to randomly permute the rows, do something like the following.
n = 5;
A = reshape(1:2*n, n, 2)
B = A(randperm(n), :)
If you want to randomly permute all elements, do something like this instead.
C = reshape(A(randperm(2*n)), n, 2)

댓글 수: 1

Jonathan
Jonathan 2011년 11월 11일
@Miriam, to permute the columns separately do this.
D = A;
D(:,1) = D(randperm(n),1);
D(:,2) = D(randperm(n),2);

댓글을 달려면 로그인하십시오.

Miriam
Miriam 2011년 11월 11일

0 개 추천

I see, hmm.. actually I wanted to permute the two columns seperately, but I guess this will not work with randperm. But the suggestions were very helpful anyway! Thanks!
Jan
Jan 2011년 11월 11일

0 개 추천

You can use FEX: Shuffle:
A = rand(100, 2);
Dim = 1;
B = Shuffle(A, Dim);

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

태그

질문:

2011년 11월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by