How to change element in base 10 to base 2 in a matrix, with loops and while
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Suppose i have a matrix called A,the elements ib base 10,how do i convert to base 2 .with conditions and loops.
14 comentarios
yuval ohayon
el 24 de Sept. de 2017
Editada: Walter Roberson
el 24 de Sept. de 2017
Walter Roberson
el 24 de Sept. de 2017
variable(count) = lastbit;
Yes, mod(current_num,2) is fine to extract the last bit.
Respuestas (1)
Jose Marques
el 9 de Sept. de 2017
A = magic(5) %generating a matrix 5x5
A = (A<10) %suppose you want the elements in A < 10
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!