blob: 0488d459fa482c97402963f6e1f52c0cd9f651f0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
//page no 167
//prob no. 5.10
//All frequencies in MHz
fc=40;
fIF=5
fLO=fc+fIF;
disp(fLO,'(a) The LO frequency is ');
fImage=fLO+fIF;
disp(fImage,'(b) The image frequency is ');
|