diff options
Diffstat (limited to '728/CH6/EX6.11/Ex6_11.sce')
-rwxr-xr-x | 728/CH6/EX6.11/Ex6_11.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/728/CH6/EX6.11/Ex6_11.sce b/728/CH6/EX6.11/Ex6_11.sce new file mode 100755 index 000000000..9b9bc1b54 --- /dev/null +++ b/728/CH6/EX6.11/Ex6_11.sce @@ -0,0 +1,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) =');
\ No newline at end of file |