blob: 1e567f70dfad926b353c7c996fda8a5aef4b7bda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// example 2.5.a//
clc
//clears the screen//
clear
//clears all existing variables//
a=-64;
//given numbers//
b=32;
c=b-a;
d=dec2bin(c,8)
disp(c,'subtraction of given numbers in decimal form = ')
disp(d,'subtraction of given numbers in binary form = ')
|