MATLAB Function Reference | Search  Help Desk |
randperm | Examples See Also |
p = randperm(n)
p = randperm(n)
returns a random permutation of the integers 1:n
.
The randperm
function calls rand
and therefore changes rand
's seed value.
randperm(6)
might be the vector
[3 2 6 4 1 5]or it might be some other permutation of
1:6
.
permute
Rearrange the dimensions of a multidimensional array