summaryrefslogtreecommitdiff
path: root/2444/CH8/EX8.2/ex8_2.sce
blob: 6b35abc5e3b30fb6beba118305f5dc310f236a1a (plain)
1
2
3
4
5
6
7
8
9
10
// Exa 8.2
clc;
clear;
close;
format('v',6)
// Given data
Av = 80;// overall voltage gain in dB
Av2 = 20*log10(150);// voltage gain of second stage in dB
Av1= Av-Av2;//voltage gain of first stage in dB
disp(Av1,"The voltage gain of first stage in dB is");