Files
RADAR_system_analysis/Functions/03. FMCW radar design/rng2time.m
T
2025-07-29 21:45:44 +09:00

11 lines
186 B
Matlab

function [t] = rng2time(r, c0)
% Objective : Calculating the time that a signal takes to propagate given range, r
if isempty(c0)
c0 = physconst('LightSpeed');
end
t = r / c0;
end