blob: 2431c779a12fa6c3e2585de9be39095109257f26 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Zoc1=2.923;
Zsc1=1.80;
Zi1=sqrt((Zoc1*Zsc1));
disp('i) IMPEDANCE (Zi1) is = '+string (Zi1) +'ohm ');
Zoc2=4.77;
Zsc2=2.95;
Zi2=sqrt((Zoc2*Zsc2));
disp('ii) IMPEDANCE (Zi2) is = '+string (Zi2) +'ohm ');
TETA=1/tanh(0.619);
disp('iii) (TETA) is = '+string (TETA) +'degree ');
|