Initial Commit.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user