Initial Commit.

This commit is contained in:
2025-07-29 21:45:44 +09:00
parent a69350b86e
commit 90231d49ae
38 changed files with 2051 additions and 0 deletions
@@ -0,0 +1,11 @@
function [rng_sep] = bw2rngsep(TxBw, rb, c0)
% Objective : Converting range resolution to required 3-dB bandwidth needed to distinguish two targets separated by the range specified in r [m]
if isempty(c0)
c0 = physconst('LightSpeed');
end
rng_sep = (c0 * rb) ./ (2*TxBw);
end