summaryrefslogtreecommitdiff
path: root/728/CH3/EX3.1/EX3_1.sce
blob: 362dd1ce9a5fa396ebc6802e7132e2a2d7f5b55c (plain)
1
2
3
4
5
6
7
8
9
10
//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);