Effacer les filtres
Effacer les filtres

pseudorandomise vectors in an array

1 vue (au cours des 30 derniers jours)
Doug Barrett
Doug Barrett le 25 Avr 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.

Réponse acceptée

Craig Cowled
Craig Cowled le 25 Avr 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 commentaire
Doug Barrett
Doug Barrett le 26 Avr 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by