blob: e6aaba6eab761d9b5dc5629fe689c5f52ce8ae38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//example 2.9//
clc
//clears the screen//
clear
//clears all existing variables//
a=bin2dec('110101')
//binary to decimal conversion//
b=bin2dec('1011')
c=a/b;
//division//
disp(c,'division of given numbers =')
|