blob: e483bf2124dd0c46d4f6851d521237cf1edababd (
plain)
1
2
3
4
5
6
7
8
9
|
//Chapter 3
//Example 3-6
//ProbonOutputVoltage
//Page 51
clear;clc;
Ei=-5;//input voltage
Acl=-2;//Voltage Gain
Vout=Ei*Acl;//output voltage
printf("\n\n Value of Output Voltage = %.4f V \n\n",Vout)
|