Borrar filtros
Borrar filtros

pseudorandomise vectors in an array

1 visualización (últimos 30 días)
Doug Barrett
Doug Barrett el 25 de Abr. de 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.

Respuesta aceptada

Craig Cowled
Craig Cowled el 25 de Abr. de 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 comentario
Doug Barrett
Doug Barrett el 26 de Abr. de 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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by