diff options
Diffstat (limited to '863/CH14/EX14.5/Ex14_5.sce')
-rw-r--r-- | 863/CH14/EX14.5/Ex14_5.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/863/CH14/EX14.5/Ex14_5.sce b/863/CH14/EX14.5/Ex14_5.sce new file mode 100644 index 000000000..71e828717 --- /dev/null +++ b/863/CH14/EX14.5/Ex14_5.sce @@ -0,0 +1,15 @@ +//Caption:Determine meter indication when time base uses (a)6 decade counter (b)4 decade counter
+//Ex14.5
+clc;
+clear;
+close;
+f=3500//Applied frequency(in hz)
+F=10^6//Clock generator frequency(in hz)
+f1=F/(10^6)
+t1=1/f1
+c1=f*t1
+disp(c1,'Cycles of input counted during t1=')
+f2=F/(10^4)
+t2=1/f2
+c2=f*t2
+disp(c2,'Cycles of input counted during t2=')
\ No newline at end of file |