Filter löschen
Filter löschen

pseudorandomise vectors in an array

1 Ansicht (letzte 30 Tage)
Doug Barrett
Doug Barrett am 25 Apr. 2013
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.

Akzeptierte Antwort

Craig Cowled
Craig Cowled am 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 Kommentar
Doug Barrett
Doug Barrett am 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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by