blob: 8e73e530a2cbd2acef1d7e4b46a25d86f4e0b94a (
plain)
1
2
3
4
5
6
7
8
9
|
//Chapter 2, Problem 15
clc
Zl=20 //load impedance in ohm
Z0=90 //characteristic impedance in ohm
l=1/4 //electrical length
//calculation of input impedance
Zin=(Z0)^2/Zl
printf("Input impedance = %d ohm ",Zin);
|