blob: dae54831914db490fd883163d0f8dfb568ec427d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//example 1.13.b//
clc
//clears the screen//
clear
//clears all existing variables//
t=9999+1;
//total numbers//
x=log2(t);
//taking out power//
y=round(x)+3;
//no of bits required for BCD encoding//
disp(y,'no of bits required for BCD encoding = ')
|