diff options
Diffstat (limited to '2414/CH8/EX8.9/Ex8_9.sce')
-rwxr-xr-x | 2414/CH8/EX8.9/Ex8_9.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2414/CH8/EX8.9/Ex8_9.sce b/2414/CH8/EX8.9/Ex8_9.sce new file mode 100755 index 000000000..35e05e0d7 --- /dev/null +++ b/2414/CH8/EX8.9/Ex8_9.sce @@ -0,0 +1,15 @@ +clc;
+close();
+clear();
+//page no 290
+//prob no. 8.9
+//All frequencies in kHz
+W=10;
+fs=2*W;
+Tf=1/fs;
+mprintf('(a) The minimum sampling rate is %i kHz\n',fs);
+mprintf('The frame time is %i micro second\n',Tf*10^3);
+tr=0.01*Tf //ms
+Bt=0.5/tr;
+mprintf('The maximum rise time is %.1f micro second\n',tr*10^3);
+mprintf('The approximate transmission bandwidth is %i kHz\n',Bt);
|