summaryrefslogtreecommitdiff
path: root/2219/CH3/EX3.2/Ex3_2.sce
blob: a836920563a670762eb6449cc39db91bc692870a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Chapter 3 example 2
//------------------------------------------------------------------------------
clc;
clear;
// Given data
Lr      = 18;       // return loss in db
// Calculations
// Lr   = 20*log(1/p);      
p       = 1/10^(Lr/20);     // reflection co-efficient
swr     = (1 + p)/(1 - p);      // standing wave ratio
// Output
mprintf('Reflection co-efficient is %3.3f\n SWR = %3.2f',p,swr);
//------------------------------------------------------------------------------