how to find subsets
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, if we have a set A={1,2,3,4,5,6} how can we find its subsets with four and five elements.
0 comentarios
Respuestas (2)
Mischa Kim
el 2 de Jun. de 2014
Editada: Mischa Kim
el 2 de Jun. de 2014
Hello, use nchoosek
A = [1,2,3,4,5,6];
subsA = nchoosek(A,4)
for four elements, for example.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!