summaryrefslogtreecommitdiff
path: root/992/CH7/EX7.1/ex7_1.txt
blob: fbcb702e73022725b7b52b5c9fe027214c261f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Caption:Program to determine slope detector.
//Exa:7.1
clc;
clear;
close;
//Given:
deviation=3;//in KHz
roll_off=6;//in KHz
full_dev=deviation*roll_off;
half_dev=full_dev/2;
printf("\n full deviation = %f dB\tcorresponds to 12.6mV",-full_dev);
printf("\n half deviation = %f dB\tcorresponds to 35.5mV",-half_dev);