blob: a72d5e6299917a8d1b10e62b4fa7a8db094d20a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Example 8.4
//Program to find the Voltage Gain of the Amplifier
clear;
clc ;
close ;
//Given Circuit Data
u=20;
Rl=10*10^3; //Ohms
rp=10*10^3; //Ohms
//Calculation
A=u*Rl/(rp+Rl);
//Displaying The Results in Command Window
printf("\n\t The Voltage Gain of the Amplifier is A = %f with phase of 180 degrees .",A);
|