Permutation of array elements

14 次查看(过去 30 天)
Hi, I have 3 array with different number of cells and a matrix of 1 row and 3 columns composed by the arrays.
ACTIVITY_WAKE = {'awake_in_bed','out_of_bed','out_bedroom'};
ACTIVITY_MORNING_TOILET = {'enter_toilet','sit_WC','wash','exit_toilet'};
ACTIVITY_BREAKFAST = {'prepare_breakfast','have_breakfast','wash_dishes'};
WAKE_UP = [ACTIVITY_WAKE ACTIVITY_MORNING_TOILET ACTIVITY_BREAKFAST];
I would like to generate WAKE_UP with random order, but when I use randperm command I have permutation of the element in single array, I only need to permute the array, like:
WAKE_UP = [ACTIVITY_WAKE ACTIVITY_BREAKFAST ACTIVITY_MORNING_TOILET] or
WAKE_UP = [ACTIVITY_MORNING_TOILET ACTIVITY_WAKE ACTIVITY_BREAKFAST ]

采纳的回答

Matz Johansson Bergström
编辑:Matz Johansson Bergström 2015-1-28
This seems to work
A = {'test a 1', 'test a 2'};
B = {'test b 1', 'test b 2'};
WAKE = [A',B'] %see below for explanation
WAKE(:, randperm(2))
If we simply write WAKE = [A,B], the vector will become
'test a 1' 'test a 2' 'test b 1' 'test b 2'
instead I write transpose the A and B elements, so WAKE = [A',B'] which gives
'test a 1' 'test b 1'
'test a 2' 'test b 2'
This should work in a similar way in your case, but I have not tested this.
  7 个评论
Sam Ferguson
Sam Ferguson 2018-8-21
Would there be a way to prevent repeats of the same combination?
Paolo
Paolo 2018-8-21
@Sam, please open a new question.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by