diff options
Diffstat (limited to '2409/CH9/EX9.3/Ex9_3.sce')
-rwxr-xr-x | 2409/CH9/EX9.3/Ex9_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2409/CH9/EX9.3/Ex9_3.sce b/2409/CH9/EX9.3/Ex9_3.sce new file mode 100755 index 000000000..4e4bf0bf3 --- /dev/null +++ b/2409/CH9/EX9.3/Ex9_3.sce @@ -0,0 +1,18 @@ + +//Variable Declaration + +Bs1=4.2 //Signal Bandwidth(MHz) of Example 9.1 +delf=2.56 //Deviation Ratio of Example 9.1 + +delF2=200 //Peak Deviation(kHz) of Example 9.2 +Bs2=0.8 //Test tone frequency (kHz) of Example 9.2 + +//Calculation +delF1=Bs1*delf //Peak Deviation(MHz) of Example 9.1 +BIF1=2*(delF1+2*Bs1) //Signal Bandwidth(MHz) of Example 9.1 according to Carson's rule +BIF2=2*(delF2+2*Bs2) //Signal Bandwidth(kHz) of Example 9.2 according to Carson's rule. + +//Results + +printf("Signal Bandwidth of Example 9.1 by Carsons rule is %.1f MHz",BIF1) +printf("\nSignal Bandwidth of Example 9.2 by Carsons rule is %.1f kHz",BIF2) |