Rotate vector in row
Mostrar comentarios más antiguos
Hi, i have an array
n= [1,19,15,18,21,10,16,2,7,3,17,6,1;
1,14,20,8,4,13,9,5,1,0,0,0,0;
1,11,12,1,0,0,0,0,0,0,0,0,0];
What i need to do is to randomly choose 2 elements of each row (but not the ones and the zeros) and rotate the vector in between them .
For example new_n= [ 1,19,15,17,3,7,2,16,10,21,18,6,1;
1,14,13,4,8,20,9,5,1,0,0,0,0;
1,12,11,1,0,0,0,0,0,0,0,0,0]
If it is possible i would like to be able to do it for any array i might have. (the thing is that 1-etc-1 in each row are non equal paths that start at depot 1 and end at it after they go through the other nodes, so i want the rearrangement to happen between the depots)
4 comentarios
Adam Danz
el 12 de En. de 2020
You lost me at "rotate the vector in between them".
Adam Danz
el 12 de En. de 2020
I see. The next point that needs clarifying is ,"'randomly choose 2 elements of each row (but not the ones and the zeros) ",
Does that mean that any value can be chosen except 1s and 0s or does it mean that the vector between the two end points must not include any 1s and 0s?
For example, is it OK if these two points are chosen?
[0 0 0 0 9 8 7 6 5 4 3 2 1 1 1 1 2 3 4]
% ^...........^
Nikoleta
el 12 de En. de 2020
Respuesta aceptada
Más respuestas (1)
Simpler
n= [1,19,15,18,21,10,16,2,7,3,17,6,1;
1,14,20,8,4,13,9,5,1,0,0,0,0;
1,11,12,1,0,0,0,0,0,0,0,0,0];
% randomly choose 2 elements of each row
% (but not the ones and the zeros)
randIdx = arrayfun(@(i)sort(randsample(find(~ismember(n(i,:),[1,0])),2)),1:size(n,1),'UniformOutput',false);
% rotate the vector in between each index, per row
for i = 1:size(n,1)
n(i, randIdx{i}) = fliplr(n(i, randIdx{i}));
end
Categorías
Más información sobre Hierarchical Clustering 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!