Files
RADAR_system_analysis/Functions/03. FMCW radar design/dechirping.m
T
2025-07-29 21:45:44 +09:00

10 lines
235 B
Matlab

function [sig_out] = dechirping(sig_in, sig_ref)
% Objecrtive : Mixing the incoming signal, sig_in, with the reference
% signal, sig_ref.
sig_ref = cast(sig_ref, class(sig_in));
sig_out = bsxfun(@times, conj(sig_ref), sig_in);
end