100 permutation
Mostrar comentarios más antiguos
I have the following matrix
x =
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
I would like to have 100 different permutation and in each I change randomly one variable of each row with others like this
1 7 13 4 5
then
11 5 4 19 2
and so on
15 comentarios
Jan
el 9 de Nov. de 2011
What have you tried so far and which specific problem occurred?
Image Analyst
el 9 de Nov. de 2011
In your first example, which row was that? Was it row 1? If so, it looks like 2 numbers got changed, not 1. And the next row does not look like it's only one number different than row 2.
Niki
el 9 de Nov. de 2011
Fangjun Jiang
el 9 de Nov. de 2011
Then you need to clarify your question. You said "change randomly one variable of each row", which does not match your example.
Image Analyst
el 9 de Nov. de 2011
And I consider "x" the variable. The numbers in the rows of x are simply "numbers" or "elements of x" not variables in themselves. At least that's how I think of it. I still have no idea which row got changed (in ANY way at all) to form "11 5 4 19 2"
Niki
el 9 de Nov. de 2011
Niki
el 9 de Nov. de 2011
Daniel Shub
el 9 de Nov. de 2011
In the end are you going to want the solution to be able to extend to a much larger matrix. If this is a simplification, it would help to let us know in advance. Also, like IA, I have no idea what is changing and how in your example.
Dr. Seis
el 9 de Nov. de 2011
Your examples are confusing. Let's say the resulting combination is the general form:
A B C D E
What range of numbers can A, B, C, D, and E be?
At first I thought that:
A can equal 1, 6, 11, or 16
B can equal 2, 7, 12, or 17
C can equal 3, 8, 13, or 18
D can equal 4, 9, 14, or 19
E can equal 5, 10, 15, or 20
But after your first example, that logic breaks down.
Niki
el 9 de Nov. de 2011
Niki
el 9 de Nov. de 2011
Titus Edelhofer
el 9 de Nov. de 2011
Hi Mohammad,
a suggestion: for 6 hours now people try to answer your question (and fail) just because nobody get's from your question a clear impression about what you want to do exactly. Perhaps it's time to elaborate on what you have and what exactly you want to get together with a meaningful (!) example ...??
Titus
Niki
el 9 de Nov. de 2011
Image Analyst
el 9 de Nov. de 2011
It's getting clearer. The above seems clear but I'm not sure where [11 5 4 19 2] comes from in your first post. That is not in your list just now.
Sven
el 10 de Nov. de 2011
Mohommad, have I answered your question on the original thread?
http://www.mathworks.com/matlabcentral/answers/20551-combination
Just set solutionLimit = 100, and it seems to solve this exact same question.
Respuestas (1)
Dr. Seis
el 9 de Nov. de 2011
Stab in the dark:
sizeX = [4,5];
permlimit = 100;
X = reshape(1:prod(sizeX),fliplr(sizeX))';
Y = zeros([permlimit, sizeX(2)]);
for ii = 1 : permlimit
for jj = 1 : sizeX(2)
Y(ii,jj) = X(randi(sizeX(1)),jj);
end
end
disp(Y)
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!