blob: 4dffb1cd57be9fa3566bca812b2878df70c903e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Page Number: 26
//Example 1.12
clc;
//Given
Z0=50; //ohm
T=2.23;
//From chart
zl=2+%i;
ZLd=Z0*zl;
disp('ohm',ZLd,'Normalized impedance:');
//Impedance of device is by negating the real part
imp=-real(ZLd)+(imag(ZLd)*%i);
disp('ohm',imp,'Impedance of device:');
|