Effacer les filtres
Effacer les filtres

how to generate 2^16 different combinations of a vector containing 0 and 1 only?

1 vue (au cours des 30 derniers jours)
Hello all,
I would like to generate 2^16 different combinations of 16 bits containing 0s and 1s. I have tried different ways like using nchoosek,... but I have the out of memory error. Could somebody please propose a more efficient way? Thank you!
  1 commentaire
James Tursa
James Tursa le 9 Déc 2015
Please explain the problem you are working and why you think you need this matrix in memory all at once.

Connectez-vous pour commenter.

Réponse acceptée

the cyclist
the cyclist le 9 Déc 2015
As a character array:
dec2bin(0:2^15-1)
As a numeric matrix of 1s and 0s:
dec2bin(0:2^15-1) - '0'

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by