Hi everyone, I have a vector of 5 columns, x=[1 2 3 4 5]; i want to create all possible combinations of first element with the other remaining.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Maimoona Asad
el 11 de Abr. de 2022
Comentada: Walter Roberson
el 11 de Abr. de 2022
Hi everyone, I have a vector of 5 columns, x=[1 2 3 4 5]; i want to create all possible combinations of first element with the other remaining and then all possible combinations of 2nd element with the other 4 and so on all the combinations of the remaining elements with the other remaining in the vector.
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Abr. de 2022
x = 1:5
nchoosek(x, 2)
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Math 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!