summaryrefslogtreecommitdiff
path: root/1238/CH8/EX8.21/8_21.sce
blob: 6146fb71c34aed12febe440e9c1518ac898820d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
//finding maximum conversion time//
//example 21//
clc
//clears the command window//;
clear
//clears//
c=2^10;//maximum no of counts//
f=2*10^-6;//counter advance rate of 1 count per second//
T=c*f;//conversion time//
disp('maximum conversion time:')
disp(T);//displaying result//