blob: e08110c47f70c0f84cbb7e615cda45c8fc7ee041 (
plain)
1
2
3
4
5
6
7
8
|
//Ex:9
clc;
clear;
close;
v_tr=6.354;//Velocity component of satellite
y=0.015// wavelength for Ka band tx with frequency 20 gega hertz in meter
d_s=v_tr/y;//Doppler shift in khz
printf("Doppler shift =%f kHz",d_s);
|