decrease verbosity

This commit is contained in:
Christos Falas 2024-12-29 12:41:46 +00:00
parent 3826f40f6a
commit 537da2c160
No known key found for this signature in database

View File

@ -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)