diff options
Diffstat (limited to '1997/CH11/EX11.29/example29.sce')
-rwxr-xr-x | 1997/CH11/EX11.29/example29.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1997/CH11/EX11.29/example29.sce b/1997/CH11/EX11.29/example29.sce new file mode 100755 index 000000000..599c3eb2e --- /dev/null +++ b/1997/CH11/EX11.29/example29.sce @@ -0,0 +1,16 @@ +//Chapter-11 example 29
+//=============================================================================
+clc;
+clear;
+//input data
+CR = 50;//compression ratio
+PW = 2;//pulse width in us
+//Calculations
+CPW = PW/CR //compression pulse width in us
+BW = 1/CPW //compression band width in Mhz
+
+//output
+mprintf('compressed pulse width is %g us\n compression Bandwidth is %g MHz\n',CPW,BW);
+
+
+//====================end of the program=======================================
|