blob: e6f01d4ae29a819062500a8db3c60f47e55be326 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
caption://To determine if there is interference.
clc;
clear;
//given:
spacing=20//in Hz
bg=100//in Hz
bw=5//modulated by a signal Hz
printf("\n\n\t first sideband pair %d to 100Hz and 100Hz to %d",(bg-bw),(bg+bw) );
//For second pair
bg2=120// in Hz
bw=5//modulated by a signal Hz
printf("\n\n\t second sideband pair %d to 120Hz and 120Hz to %d",(bg2-bw),(bg2+bw) );
printf("No overlap occurs");
|