summaryrefslogtreecommitdiff
path: root/1997/CH11/EX11.32/example32.sce
diff options
context:
space:
mode:
Diffstat (limited to '1997/CH11/EX11.32/example32.sce')
-rwxr-xr-x1997/CH11/EX11.32/example32.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1997/CH11/EX11.32/example32.sce b/1997/CH11/EX11.32/example32.sce
new file mode 100755
index 000000000..08abd93cd
--- /dev/null
+++ b/1997/CH11/EX11.32/example32.sce
@@ -0,0 +1,18 @@
+//Chapter-11 example 32
+//=============================================================================
+clc;
+clear;
+//input data
+F1 = 490;//freq shift lower limit in Mhz
+F2 = 510;//freq shift upper limit in Mhz
+
+//calculations
+
+SC = (F1+F2)/2;//Spectrum Centre in Mhz
+BW = F2-F1;//bandwidth in Mhz
+CPW = 1/BW;//compressed bandwidth in us
+
+//Output
+mprintf('Spectrum centre is %g MHz\n BandWidth is %g MHz\n Compressed pulse Width is %g us',SC,BW,CPW);
+
+//============end of the program===============================================