11 lines
198 B
Matlab
11 lines
198 B
Matlab
function [rng] = beat2rng(f_beat, f_slope, c0)
|
|
|
|
% Objective : Converting beat frequency [Hz] to range [m]
|
|
|
|
if isempty(c0)
|
|
c0 = physconst('LightSpeed');
|
|
end
|
|
|
|
rng = c0 * f_beat / f_slope / 2;
|
|
|
|
end |