how to find subsets
21 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (2 件)
Mischa Kim
2014 年 6 月 2 日
編集済み: Mischa Kim
2014 年 6 月 2 日
Hello, use nchoosek
A = [1,2,3,4,5,6];
subsA = nchoosek(A,4)
for four elements, for example.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!