blob: 89d3b95e7a0e4dc105b607a135bbac83ae196fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//example 2.1(b)//
clc
//clears the screen//
clear
//clears all existing variables//
a=hex2dec('1E')
b=hex2dec('F3')
c=a+b;
d=dec2bin(c);
e=dec2hex(c);
disp(c, ' addition of given numbers in decimal form = ')
disp(d, ' addition of given numbers in binary form = ')
disp(e, ' addition of given numbers in hexadecimal form = ')
|