summaryrefslogtreecommitdiff
path: root/1511/CH7/EX7.1/ex7_1.sce
blob: bb07ecf564923b9298eb5d23ac971a1134e3a1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Example 7.1 page no-402
clear
clc

Av=-100
B=0.01
Avd=Av/(1-B*Av)
v1d=10^-3 //1mV
V0=Avd*v1d*1000
Vx=B*V0
V1=v1d+Vx
printf("V1=%.3f\nV1d=%.3f\n This is negative feedback because, v1<v1_dash\n", V1,v1d)