diff options
Diffstat (limited to '2414/CH6/EX6.3/Ex6_3.sce')
-rwxr-xr-x | 2414/CH6/EX6.3/Ex6_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2414/CH6/EX6.3/Ex6_3.sce b/2414/CH6/EX6.3/Ex6_3.sce new file mode 100755 index 000000000..9f7309ddf --- /dev/null +++ b/2414/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,12 @@ +clc;
+//page no 190
+//prob no. 6.3
+//All frequencies in kHz
+fc=1*10^3; //in kHz
+W=15;
+LSBl=fc-W; //lowest freq of LSB
+USBh=fc+W; //highest freq of USB
+disp(fc,'to',LSBl,'(a) The range of freq(in kHz) for LSB is from ');
+disp(USBh,'to',fc,'(b) The range of freq(in kHz) for USB is from ');
+BT=W;
+disp(BT,'(b) Transmission bandwidth is ');
|