show all possible combination

2 vues (au cours des 30 derniers jours)
soni
soni le 3 Oct 2014
Commenté : soni le 3 Oct 2014
dear all.
combination(28,4) is 20475. then how to show all of the 20475 combination. n the output matlab is notpad (dat or txt). i use matlab 2012a.
  • sorry, my englis is not good.
  1 commentaire
soni
soni le 3 Oct 2014
28 is 1,2,3...28

Connectez-vous pour commenter.

Réponse acceptée

José-Luis
José-Luis le 3 Oct 2014
Modifié(e) : José-Luis le 3 Oct 2014
C = nchoosek(1:28,4);
To save please read the documentation on save
doc save %-ascii option
Alternatively
doc dlmwrite
Please accept the answer that best solves your problem.
  3 commentaires
José-Luis
José-Luis le 3 Oct 2014
vals = [0 1 2 3 4 5 6 2 3 4 5 6 7 4 5 6 7 8 6 7 8 9 8 9 10 10 11 12];
result = vals(C);
soni
soni le 3 Oct 2014
problem with my matlab. can u upload txt file(result)

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by