This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MMWAVE-SDK: Phase difference for finding Z-axis and X-axis

Part Number: MMWAVE-SDK

I have two questions below.

(1) When finding the Z axis
The following modules are used when obtaining the Z axis, but the values of the peakAzim and peakElev series are
Is it possible to check without visualizer?

Wz = atan2(peakAzimIm * peakElevRe - peakAzimRe * peakElevIm,
peakAzimRe * peakElevRe + peakAzimIm * peakElevIm)/PI_ + (2 * Wx);

(2) When obtaining the X-axis
The following modules are used when obtaining the X axis, but sMaxIdx and DPU_AOAPROCDSP_NUM_ANGLE_BINS
Is it possible to check the value?

Wx = 2 * (float) sMaxIdx / DPU_AOAPROCDSP_NUM_ANGLE_BINS

(* Lines 379 and 367 of aoaprocdsp.c, respectively.)