blob: 9b21d82554b7b8607f357a301c28c992561e6562 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Determine the voltage gain Av
//Example 6.8 page no 179
clear
clc
vl=1.1528 //output voltage
vi=0.250 //input voltage
Av=-(vl/vi) //voltage gain
printf("\n The value of Av=%0.3f " ,Av)
|