summaryrefslogtreecommitdiff
path: root/2219/CH7/EX7.9/Ex7_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH7/EX7.9/Ex7_9.sce')
-rwxr-xr-x2219/CH7/EX7.9/Ex7_9.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2219/CH7/EX7.9/Ex7_9.sce b/2219/CH7/EX7.9/Ex7_9.sce
new file mode 100755
index 000000000..99bea2c42
--- /dev/null
+++ b/2219/CH7/EX7.9/Ex7_9.sce
@@ -0,0 +1,13 @@
+// chapter 7 example 9
+//-----------------------------------------------------------------------------
+clc;
+clear;
+// given data
+Beam_w_3db = 0.4;
+
+// Calculations
+N2N_Beam_w = 2*Beam_w_3db; // Null to Null beamwidth
+
+// output
+mprintf('Null to Null Beam width = %3.1f degrees',N2N_Beam_w);
+//------------------------------------------------------------------------------