diff options
Diffstat (limited to '3446/CH10/EX10.4/Ex10_4.sce')
-rw-r--r-- | 3446/CH10/EX10.4/Ex10_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3446/CH10/EX10.4/Ex10_4.sce b/3446/CH10/EX10.4/Ex10_4.sce new file mode 100644 index 000000000..773987478 --- /dev/null +++ b/3446/CH10/EX10.4/Ex10_4.sce @@ -0,0 +1,11 @@ +// Exa 10.4
+// To calculate the 3-dB beam width of a linear element antenna.
+
+clc;
+clear all;
+
+G=12; //Gain of antenna in dBi
+
+//solution
+Theta=101.5/10^(G/10);
+printf('The 3-dB beam width of a linear element antenna is %.1f degrees',Theta);
|