diff options
Diffstat (limited to '992/CH3/EX3.11/ex3_11.txt')
-rwxr-xr-x | 992/CH3/EX3.11/ex3_11.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/992/CH3/EX3.11/ex3_11.txt b/992/CH3/EX3.11/ex3_11.txt new file mode 100755 index 000000000..f4ca34997 --- /dev/null +++ b/992/CH3/EX3.11/ex3_11.txt @@ -0,0 +1,19 @@ +//Caption:Program to determine realtive amplitude of each sideband.
+//Exa:3.11
+clc;
+clear;
+close;
+//Given:
+mf=1.0;
+fc=1;//in MHz
+fm=10;//in KHz
+//According the bessels Function table
+j0=0.22
+j1=0.58;
+j2=0.35;
+j3=0.13;
+j4=0.03
+printf("\n Firstsideband pairs :J1 = %f",j1);
+printf("\n Secondsideband pairs :J2 = %f",j2);
+printf("\n Thirdsideband pairs :J3 = %f",j3);
+printf("\n Forthsideband pairs :J4 = %f",j4);
\ No newline at end of file |