summaryrefslogtreecommitdiff
path: root/3754/CH29/EX29.1/29_1.sce
blob: adc28dfd8ec9fa549e1c64f1fa2799a8f79acf4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clear//

//Variables

Av = 400.0                     //Voltage gain
beta = 0.1                     //feedback ratio

//Calculation

A1v = Av / (1 + beta * Av)     //Voltage gain with negative feedback

//Result

printf("\n The voltage gain of an amplifier with negative feedback is  %0.2f .",A1v)