Specification:
- Calculated slope should be approximately 2e13.
RangeMax = 200;
RangeResolution = 1;
VelocityMax = 70;
VelocityResolution = 3;
c = 3e8;
% Initial position and velocity of the Target
R0_target = 100;
V0_target = 20;
Calculated Slope:
- Slope = 2.05e+13 Hz/s
Specification:
-
Generate a beat signal to accurately determine target range within +/- 10 meters.
-
Lines 74-97 in the script.
Specification:
- The peak should indicate the correct range with an error margin of +/- 10 meters.
Implementation Details:
- Lines 99-137 in the script, output plot is shown below.
Specification:
- 2D CFAR should suppress noise and clearly separate target signal, matching the walkthrough image.
- Lines 169-259 in the script.
- Initialize
CFAR
as a zero matrix sized as RDM. - Slide window across RDM, excluding Training and Guard Cells.
- Compute noise level from training cells and determine threshold.
- Compare CUT signal with the threshold.
- Mark target presence in
CFAR
.
- Training Cells (Tr, Td) and Guard Cells (Gr, Gd) are chosen as recommended in the lesson, proving effective.
- Offset set to 1.3, optimized through experiments.
- Zero out non-thresholded edge cells to maintain the size of the RDM.