summaryrefslogtreecommitdiff
path: root/2414/CH9/EX9.7
diff options
context:
space:
mode:
Diffstat (limited to '2414/CH9/EX9.7')
-rwxr-xr-x2414/CH9/EX9.7/Ex9_7.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2414/CH9/EX9.7/Ex9_7.sce b/2414/CH9/EX9.7/Ex9_7.sce
new file mode 100755
index 000000000..e44c0e901
--- /dev/null
+++ b/2414/CH9/EX9.7/Ex9_7.sce
@@ -0,0 +1,20 @@
+clc;
+close();
+clear();
+//page no 319
+//prob no. 9.7
+//all time in ms
+//all frequencies in kHz
+W=5;
+N=8; //bits
+k=19+1; //word
+fs=2*W;
+mprintf('fs=%i kHz\n',fs);
+Tf=1/fs;
+mprintf(' Tf=%.1f ms\n',Tf);
+Tw=Tf/k;
+mprintf(' Tw=%i micro second\n',Tw*10^3);
+tau=Tw/N;
+mprintf(' tau=%.3f micro second\n',tau*10^3);
+Bt=0.5/tau;
+mprintf(' Bt=%ikHz',Bt);