diff options
Diffstat (limited to '1997/CH11/EX11.28/example28.sce')
-rwxr-xr-x | 1997/CH11/EX11.28/example28.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1997/CH11/EX11.28/example28.sce b/1997/CH11/EX11.28/example28.sce new file mode 100755 index 000000000..89ec6e832 --- /dev/null +++ b/1997/CH11/EX11.28/example28.sce @@ -0,0 +1,16 @@ +//Chapter-11 example 28
+//=============================================================================
+clc;
+clear;
+//input data
+BW = 100//band width in Mhz
+PW = 4;//pulse width in us
+//Calculations
+CPW = 1/BW;//compressed pulse width in us
+CR = PW/CPW;//compression ratio
+
+//output
+mprintf('compressed pulse width is %g us\n compression ratio is %g\n',CPW,CR);
+mprintf(' Note: In textbook compression ratio is wrongly printed as 40');
+
+//====================end of the program=======================================
|