blob: af36c993cce33d973fe413995c2cb85558c741ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc;
clear;
//example 25.6
//binary substraction
format('v',8);//changing the default precision to 8
a=1001.01;//first number
b=0011.10;//second number
A=bin21dec(a);//converting a in to decimal number
B=bin21dec(b);//converting b in to decimal number
S=A-B; //multiply the two decimal numbers
temp=dec21bin(S);//converting the decimal product back to binary
disp(temp,'difference is');//displaying the final output
|