blob: 0d76906d315a21fc03f387b7364362dff2df4411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//example 9.2//
clc
//clears the screen//
clear
//clears all existing variables//
close
//closes all other files//
a=log(6000)
//from the data//
b=log(2)
c=a/b;
N=round(c)
disp('Minimum number of flip flops=')
disp(N)
|