summaryrefslogtreecommitdiff
path: root/992/CH3/EX3.11/ex3_11.txt
blob: f4ca34997d7318fe19df9bfecd6763a77fdea70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);