summaryrefslogtreecommitdiff
path: root/2330/CH16/EX16.5/ex16_5.sce
blob: 041e21f71c539b2e8c927ee4f02440955c661ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Example 16.5
format('v',6)
clc;
clear;
close;
// given data
R_F= 22*10^3;// in Ω
R_S= 1*10^3;// in Ω
A= 100000;// unit less
// The closed-loop voltage gain
A_CL= R_F/R_S;
// The desensitivity
desensitivity= A/A_CL;
disp(A_CL,"The closed-loop voltage gain is : ")
disp(desensitivity,"The desensitivity is : ")