blob: 49b4e2bb31d721fc26d69eda705a184e692a0fc8 (
plain)
1
2
3
4
5
|
//Example 1.6 Conversion from decimal number to binary number.
clc; //clears the console
x = dec2bin(746); // binary equivalent of decimal number
disp('The binary number is = ');
disp(x) // answer in binary form
|