diff options
Diffstat (limited to '1997/CH11/EX11.39/example39.sce')
-rwxr-xr-x | 1997/CH11/EX11.39/example39.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1997/CH11/EX11.39/example39.sce b/1997/CH11/EX11.39/example39.sce new file mode 100755 index 000000000..44183f7bd --- /dev/null +++ b/1997/CH11/EX11.39/example39.sce @@ -0,0 +1,17 @@ +//Chapter-11 example 39
+//=============================================================================
+clc;
+clear;
+//Given data
+lamda = 0.06; // wavelength in m
+Vr = 100 ; // Radial velocity of target in kmph
+
+//Calculations
+Vr1 = Vr*(5/18); //Radial vel. in m/s
+fd = (2*Vr1)/lamda; //doppler shift
+
+//output
+
+mprintf('Doppler Shift is %3.3f Khz',fd/1000);
+
+//==============================================================================
|