About matrix: how to make matrix binary (0 and 1)
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I need write the matrix (0 0 0 0 0), (1 0 0 0 0), (1 1 0 0 0), (1 1 1 0 0),..., (1 1 1 1 1) with 32 possibilities of zero and one using the matlab, and don´t hand.
Thanks.
0 commentaires
Réponses (1)
Matt Fig
le 17 Déc 2012
Modifié(e) : Matt Fig
le 17 Déc 2012
S = dec2bin((1:32).') % If a string is o.k.
N = S - '0' % If you need a numeric matrix.
Voir également
Catégories
En savoir plus sur Numeric Types dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!