How to get permutation of two halves of given numbers range 1 to n separately and then concatenate.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
chandra Naik
el 26 de Jul. de 2019
Respondida: Bruno Luong
el 26 de Jul. de 2019
Ex:
suppose
n=10,
n1=1:5
perm(n1)=1,3,4,2,5
n2=6:10
perm(n2)=6,8,7,10,9
perm(n)=concatenate(n1,n2)=1,3,4,2,5,6,8,7,10,9
0 comentarios
Respuesta aceptada
Bruno Luong
el 26 de Jul. de 2019
>> n=10
n =
10
>> [randperm(n/2), n/2+randperm(n/2)]
ans =
5 3 4 2 1 7 9 10 8 6
>>
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!