diff options
Diffstat (limited to '2219/CH9/EX9.5/Ex9_5.sce')
-rwxr-xr-x | 2219/CH9/EX9.5/Ex9_5.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2219/CH9/EX9.5/Ex9_5.sce b/2219/CH9/EX9.5/Ex9_5.sce new file mode 100755 index 000000000..89f8b36d9 --- /dev/null +++ b/2219/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,15 @@ +// Chapter 9 example 5
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given Data
+CRR = 100; // Cross range resolution in m
+R = 3000; // radial range
+
+// Calculations
+// CRR = (R*theta3)*(%pi/180);
+theta3 = (180*CRR)/(%pi*R) // 3 dB beamwidth
+
+// Output
+mprintf('3 dB beamwidth = %3.2f°',theta3);
+//------------------------------------------------------------------------------
|