summaryrefslogtreecommitdiff
path: root/2882/CH10/EX10.1/Ex10_1.sce
blob: 7eaf231bc0c6084a4097c129b1b7bd8e5fd3443b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Tested on Windows 7 Ultimate 32-bit
//Chapter 10 Feedback in Amplifiers Pg no. 330
clear;
clc;

//Given

Vi=2D-3;//input voltage in volts
Vo_dash=10;//output voltage with feedback in volts
BVo_dash=200D-3;//feedback voltage in volts

//Solution

A=Vo_dash/Vi;//open loop gain
Afb=Vo_dash/(Vi+BVo_dash);//closed loop gain
B=1/Afb-1/A;//feedback gain beta
printf("β = %.2f",B);