summaryrefslogtreecommitdiff
path: root/2498/CH5/EX5.15/ex5_15.sce
blob: b5278d585b4445e17b28499d9af49ca1af86f2e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Exa 5.15
clc;
clear;
close;
format('v',6)
// Given data
Af = 100;
Vi = 0.6;// in V
Vo =Af*Vi;// in V
Vi = 50;// in mV
Vi = Vi * 10^-3;// in V
// Internal gain of amplifier,
A = Vo/Vi;
disp(A,"The value of A is : ");
B= ((A/Af)-1)/A;
disp(B,"The value of B is");