SFANC_FxNLMS # Description: Using FxNLMS to optimize the control filter, the initial weights come from SFANC #--- class SFANC_FxNLMS(): def __init__(self, MAT_FILE, fs): self.Wc = self.Load_Pretrained_filters_to_tensor(MAT_FILE) # torch.Size([15, 1024]) Len...
A-Hybrid-SFANC-FxNLMS-Algorithm Description: This is the code of SPL paper "A Hybrid SFANC-FxNLMS Algorithm for Active Noise Control based on Deep Learning". You can find the paper at https://arxiv.org/pdf/2208.08082.pdf or at IEEE Xplore. The paper proposes a hybrid SFANC-FxNLMS ap...