blob: d7926693d3f5c5f9e10df41166e80d9e7d015d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc;clear;
//Example 25.4
//calculation of difference of two binary numbers
//given values
X='1011';//first binary number
Y='0101';//second binary number
//calculation
x=bin2dec(X);//decimal equivalent
y=bin2dec(Y);//decimal equivalent
z=x-y;
Z=dec2bin(z);
disp(Z,'difference of the given binary numbers ');
|