pseudorandomise vectors in an array

1 view (last 30 days)
I'd like to pseudorandomise vectors in an array to produce all possible combinations of an initial sequence without repetition. For example, a 2x2 array containing combinations of -1 and 1 would be [-1 1; 1 -1]. A 4x4 array of the same values would be [-1 -1 1 1; 1 -1 1 -1; -1 1 -1 1; 1 1 -1 -1].
I can evaluate equality using 'isequal' and shuffle elements on a vector or array basis using 'reshape(randperm(numel(array)), size(array))' but I'm not sure how to do this iteratively to psuedorandomise the elements in each vector.
Any help or advice would be much appreciated!
Doug.

Accepted Answer

Craig Cowled
Craig Cowled on 25 Apr 2013
Doug, I use a function that was developed by Jos, called allcomb. You can find it at the following link http://www.mathworks.com.au/matlabcentral/fileexchange/10064-allcomb.
This function has one drawback though. allcomb will give you all possible combinations, including repetitions. You could use this function to find all possible combinations, then write your own code to eliminate repetitions.
I have used allcomb to populate an array containing all possible combinations, then I applied a test to identify repeats and eliminated these results from the array.
I hope this helps.
  1 Comment
Doug Barrett
Doug Barrett on 26 Apr 2013
Craig, thanks for pointing me in the right direction, I've used another of Jos' functions, 'combn', which outputs all the possible permutations of my ([-1 1],n) vector.
In terms of eliminating repeats, I've just found 'unique', which is very handy Matlab function for the job!
Doug.

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!