Decimal to Binary converter (Configurable)

Versión 1.0.0.0 (16.8 KB) por James
Convert Decimal to Binary number up to 4 bits
1.1K descargas
Actualizado 7 Jul 2015

Ver licencia

This Simulink model shows a simple code to convert decimal to binary numbers up to 8 bits (0 to 255 dec). It is easily configurable however, e.g if 9 bits is required, simply change 2 lines of the codes int he Matlab function block as shown below:
1)
a=zeros(1,8);
to
a=zeros(1,9);

2)
x=[a(8),a(7),a(6),a(5),a(4),a(3),a(2),a(1)];
to
x=[a(9),a(8),a(7),a(6),a(5),a(4),a(3),a(2),a(1)];

The code was modified to remove the bug during conversion at decimal 0.

Citar como

James (2024). Decimal to Binary converter (Configurable) (https://www.mathworks.com/matlabcentral/fileexchange/52006-decimal-to-binary-converter-configurable), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2015a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Logical en Help Center y MATLAB Answers.
Agradecimientos

Inspirado por: Decimal to Binary in SIMULINK

Inspiración para: Binary Stopwatch with Arduino

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0