summaryrefslogtreecommitdiff
path: root/728/CH3/EX3.1/Ex3_1.txt
blob: f2235deb1029c6e790dc16995d56048c291b2735 (plain)
1
2
3
4
5
6
7
8
9
10
11
//Caption:Program to find value of terminating impedance of lossless transmission line.
//Exa:3.1
clc;
clear;
close;
//Given:
Z_ch=100;//in ohms
S=5;//VSWR (unitless)
Z=Z_ch*S;
printf("\n\n\t The terminating impedence = %d ohms ",Z);