summaryrefslogtreecommitdiff
path: root/728/CH6/EX6.11/Ex6_11.txt
blob: 9b9bc1b54dff7d7ccc6f038c135433d1f5ec51ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
 //Caption:Calculate (i)-directivity ,(ii)-coupling, (iii)-isolation
//Exa:6.11
clc;
clear;
close;
S_13=0.1;
S_14=0.05;
C=-20*log(S_13)/log(10);
D=20*log(S_13/S_14)/log(10);
I=C+D;
disp(C,'Coupling (in dB) =');
disp(D,'Directivity (in dB)) =');
disp(I,'Isolation (in dB) =');