blob: 839c67bd422a22c22b4b2bbad72c0989f0d7f1b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
disp('chapter 5 ex5.6')
disp('given')
disp('741 op-amp is used to design an noninverting amplifier')
disp('voltage gain Av=100')
Av=100
disp("F2 occurs at")
M=20*log10(Av)
disp('db',M)
disp("from the graph")
disp("from the intersection of the line and open loop frequency responce")
disp("F2 occurs at" )
F2=8000
disp('Hz',F2)
disp('709 op-amp is used design an noninverting amplifier')
disp("from the graph")
disp("from the intersection of the line and open loop frequency responce")
disp("F2 occurs at" )
F2=6000
disp('Hz',F2)
|