diff --git a/src/aoa.py b/src/aoa.py index bae2990..7f43a27 100644 --- a/src/aoa.py +++ b/src/aoa.py @@ -37,7 +37,7 @@ class AoA: H_sm_rows = [np.hstack(H_n[i : i + N // 2 + 1]) for i in range(N // 2)] H_sm = np.vstack(H_sm_rows) - logger.info(f"Smoothed: {H_sm.shape}") + logger.debug(f"Smoothed: {H_sm.shape}") return H_sm @@ -65,7 +65,6 @@ class AoA: # The smallest eigenvectors span the noise subspace, # and the largest span the signal subspace. eigvals, eigvecs = np.linalg.eigh(R) - print(eigvals) self.E_n = eigvecs[:, np.abs(eigvals) < config.EIGVAL_THRESHOLD] omega_base = np.exp(-2j * np.pi * config.DELTA_F)