Convert propagation time to propagation distance
r = time2range(t)
r = time2range(t,c)
example
r = time2range(t) returns the distance a signal propagates during t seconds. The propagation is assumed to be two-way, as in a monostatic radar system.
r
t
r = time2range(t,c) specifies the signal propagation speed.
c
collapse all
Calculate the minimum detectable range for a monostatic radar system where the pulse width is 2 ms.
t = 2e-3; r = time2range(t)
r = 2.9979e+05
Propagation time in seconds, specified as an array of positive numbers.
Signal propagation speed, specified as a positive scalar in meters per second.
Data Types: double
double
Propagation distance in meters, returned as an array of positive numbers. The dimensions of r are the same as those of t.
The function computes c*t/2.
c*t/2
[1] Skolnik, M. Introduction to Radar Systems, 3rd Ed. New York: McGraw-Hill, 2001.
Usage notes and limitations:
Does not support variable-size inputs.
phased.FMCWWaveform | range2bw | range2time
phased.FMCWWaveform
range2bw
range2time
You have a modified version of this example. Do you want to open this example with your edits?