summaryrefslogtreecommitdiff
path: root/2492/CH6/EX6.1/ex6_1.sce
blob: d1f3c73d5aa111cb1aa2aee0b33ba4f891df3a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Exa 6.1
format('v',6)
clc;
clear;
close;
// Given data
BWf = 5;// in MHz
BWf= BWf * 10^6;// in Hz
Av = 100;
BW = 500;// in kHz
BW = BW * 10^3;// in Hz
// BWf = (1+(B*Av))*BW;
B = ((BWf/BW)-1)/Av;
disp(B,"The amount of negative feed back is");
Avf = Av/(1+(Av*B));
disp(Avf,"The new gain after negative feed back is");