11 lines
234 B
Matlab
11 lines
234 B
Matlab
function [deltaR] = cal_rdcoupling(dop, f_slope, c0)
|
|
|
|
% Objective : Calculating range offset [m] due to Doppler shift [Hz] in a LFM signal
|
|
|
|
if isempty(c0)
|
|
c0 = physconst('LightSpeed');
|
|
end
|
|
|
|
deltaR = -c0 * dop / (2 * f_slope);
|
|
|
|
end |