blob: 50c9b0187d28e364d977580545eb427d4fd79384 (
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('AF1')
b=hex2dec('FFF')
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 = ')
|