blob: 236ebf043976dba38632ce460a88362ae3f3d7bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//EXAMPLE 8-35 PG NO-552
R1=200;
R2=200;
R3=100;
Zoc=[R1*(R2+R3)/(R1+R2+R3)];
disp('i) IMPEDANCE (Zoc) is = '+string (Zoc) +' ohm ');
Zsc=(R1*R3)/(R1+R3);
disp('ii) IMPEDANCE (Zsc) is = '+string (Zsc) +' ohm ');
Zo=[Zoc*Zsc]^0.5;
disp('iii) IMPEDANCE (Zo) is = '+string (Zo) +' ohm ');
N=2.618;
D=20*log10(N)
disp('ii) (D) is = '+string (D) +' dB ');
|