summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.17/example17.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.17/example17.sce')
-rwxr-xr-x1997/CH11/EX11.17/example17.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1997/CH11/EX11.17/example17.sce b/1997/CH11/EX11.17/example17.sce
new file mode 100755
index 000000000..1d70df124
--- /dev/null
+++ b/1997/CH11/EX11.17/example17.sce
@@ -0,0 +1,15 @@
+//Chapter-11 example 17
+//=============================================================================
+clc;
+clear;
+//input data
+D = 200;//azimuth distance between two radars
+R = 10*10^3;//Range of radar
+
+//Calculations
+BWdB = (D/R)*(180/%pi);//3dB beam width in degrees
+
+//Output
+mprintf('Maximum 3db beamwidth of radar resolving the target is %3.3f degrees',BWdB);
+
+//=============end of the program===============================================