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
+22
View File
@@ -0,0 +1,22 @@
function fd = cal_doppler_shift(va, vb, ra, rb, fc)
% va, vb : a, b의 [vx vy vz]
% ra, rb : a, b의 [x y z]
% fc : (Hz)
c = 3e8; % (m/s)
% r_hat
r_ab = rb - ra; % a에서 b로
r_hat = r_ab / norm(r_ab); %
%
v_rel = vb - va;
%
fd = (fc / c) * dot(v_rel, r_hat);
end