Files
RADAR_system_analysis/Functions/01. Direction finding/df_Phase_monopulse.m
T
2025-07-29 21:45:44 +09:00

5 lines
155 B
Matlab

function [esti_ang_deg] = df_Phase_monopulse(ch1_phase, ch2_phase, ch_distance)
esti_ang_deg = asind((ch1_phase - ch2_phase) / 2 / pi / ch_distance);
end