How to convert the following hexa decimal to binary array ?
Mostrar comentarios más antiguos
a = base2dec(6A09E667F3BCC908,16);
Respuestas (1)
Azzi Abdelmalek
el 22 de Oct. de 2014
b='6A09E667F3BCC908'
a = base2dec(b,16);
out=dec2bin(a)
1 comentario
yogya
el 26 de Oct. de 2014
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!