国产aaaa级全身裸体精油片_337p人体粉嫩久久久红粉影视_一区中文字幕在线观看_国产亚洲精品一区二区_欧美裸体男粗大1609_午夜亚洲激情电影av_黄色小说入口_日本精品久久久久中文字幕_少妇思春三a级_亚洲视频自拍偷拍

首頁 > 行業(yè)資訊 > 【信號(hào)去噪】基于快速子帶自適應(yīng)濾波 (FSAF)實(shí)現(xiàn)信號(hào)去噪處理附matlab代碼

【信號(hào)去噪】基于快速子帶自適應(yīng)濾波 (FSAF)實(shí)現(xiàn)信號(hào)去噪處理附matlab代碼

時(shí)間:2022-09-22 來源: 瀏覽:

【信號(hào)去噪】基于快速子帶自適應(yīng)濾波 (FSAF)實(shí)現(xiàn)信號(hào)去噪處理附matlab代碼

天天Matlab 天天Matlab
天天Matlab

TT_Matlab

博主簡(jiǎn)介:擅長(zhǎng)智能優(yōu)化算法、神經(jīng)網(wǎng)絡(luò)預(yù)測(cè)、信號(hào)處理、元胞自動(dòng)機(jī)、圖像處理、路徑規(guī)劃、無人機(jī)等多種領(lǐng)域的Matlab仿真,完整matlab代碼或者程序定制加qq1575304183。

收錄于合集 #信號(hào)處理應(yīng)用matlab源碼 298個(gè)

1 內(nèi)容介紹

This book describes a few [sub]optimal adaptive filtration algorithms for solving various room acoustic related audio / speech processing problems such as Adaptive Echo / Noise / Feedback / Reverberation Cancellation, etc. If you are reading this text, you most likely already know what AEC / ANC / AFC are about. Other applications may exist but I am not an expert in other fields. Sub-optimal algorithms are a can of worms, you can start working on them but you can never finish. Thus, there is nothing conclusive nor final in this publication, it is a set of intermediate results for the next researcher(s) to pick up and evolve further, and I would like to pre-emptively apologize for the lengthy explanation in the “ We shall tell it at length, thoroughly, in detail – for when did a narrative seem too long or too short by reason of actual time of space it took up? We do not fear being called meticulous, inclining as we do to the view that only the exhaustive can be truly interesting ” style instead of “ For every complex problem there is an answer that is clear, simple, and wrong ”. The main problem addressed here is the curse of dimensionality and close-to-singular spectra, in the context of real-time low latency slightly nonlinear, both stationary and non-stationary FIR system identification of Room Impulse Response (RIR). The base is the well-developed theory of adaptive control. The proposed Fast(er) Subband Adaptive Filtering (FSAF) is an evolution of the Subband Adaptive Filtering (SAF) approach originally proposed by Prof. Dr.-Ing. Walter Kellermann in “Analysis and design of multirate systems for the cancellation of acoustical echoes” at ICASSP-1988. Although the text below is full of comparisons with the original proposal by Dr. W. Kellerman and demonstrations of the superiority of the new approach, these comparisons shall not be considered as belittling of the original approach in any respect. The set of new techniques, summarily named FSAF, is faster in all respects: converging faster, taking less MIPS, having lower processing latency, etc. But it’s NOT as “fast” as FFT where all opportunities have been exploited. The proposed technology is not THE fastest adaptive technology but a step towards it, one of infinitely many. FSAF, besides usual per-subband processing, can be used to solve very high dimension system identification problems in a divide and conquer style. For any predefined precision δ, FSAF solves M much smaller, ~1/(M + o(1/δ p )), better-conditioned problems in subbands, using either RLS or diagonal / scalar step-size algorithms like Kaczmarz a.k.a. [N]LMS, and converts them back to the fullband time domain, which is Perfect Reconstruction Open-Loop Delay-less SAF. Note that FSAF allows nesting / recomposing of the subband architecture, thus allowing efficient fast converging low-latency low MIPS application for A#C. In 2001, yours truly left his job and went home, to work on the theoretical background of subband adaptive filtering. It was obvious that all low-hanging fruits have already been harvested, and I needed years of concentration on research to achieve anything of value. Alas, there was not a single employer around willing to wait an undetermined number of years for unpredictable results. Most of the groundwork was done in the early 2000s while working on AEC. By 2004...2005, good understanding of the core problems crystallized. It looked so obvious that I could not believe it had not been found by somebody else… but I could not find a relevant publication. 15 years later, I am still puzzled. In 2019, I decided to “pass the torch” to somebody else 1 .

2 部分代碼

clear all;

close all

[x,FS]=audioread(’wav/spk.wav’);

lenin=length(x);

%t=(1:lenin)*1e3/FS;plot(t,x);

W=FS*100e-3;

[s,f,t]=spectrogram(x,W,W*0.9,W,FS);

S=db(s);

%S=S’;

S=S-max(max(S));

S=max(S,-80);

%S=flipud(S);

fsaf.fig(1);

%legend(’off’);

colormap jet

imagesc(’XData’,t,’YData’,f,’CData’,S);colorbar;

axis([0 max(t) 0 max(f)])

grid on;

xlabel(’time, s’);

ylabel(’freq, Hz’);

title(’speech spectrogram’);

N=4;

SF=length(f)-1;

sf=SF/20;

fsaf.fig(2);

for idx=1:N

    subplot(N,1,N-idx+1);

    ii=idx*3-0;

    idx1=(ii-2)*sf+0;

    idx2=ii*sf+1;

    si=S(idx1:idx2,:);

    si=si-max(max(si));

    colormap jet

    imagesc(’XData’,t,’YData’,f(idx1:idx2),’CData’,si);

    xlim([0 max(t)]);

    ylim([f(idx1) f(idx2)])

    grid on;

end

title(’speech spectrogram in subbands’);

3 運(yùn)行結(jié)果

4 參考文獻(xiàn)

[1]王秀麗, 郭改枝, 宋鑫夢(mèng),等. 基于自適應(yīng)濾波地下管道漏水信號(hào)去噪處理研究[J]. 內(nèi)蒙古師范大學(xué)學(xué)報(bào):自然科學(xué)漢文版, 2015, 44(5):4.

博主簡(jiǎn)介:擅長(zhǎng) 智能優(yōu)化算法 神經(jīng)網(wǎng)絡(luò)預(yù)測(cè) 、 信號(hào)處理 元胞自動(dòng)機(jī) 、 圖像處理 、 路徑規(guī)劃 、 無人機(jī) 、 雷達(dá)通信 無線傳感器 等多種領(lǐng)域的Matlab仿真,相關(guān)matlab代碼問題可私信交流。

部分理論引用網(wǎng)絡(luò)文獻(xiàn),若有侵權(quán)聯(lián)系博主刪除。

版權(quán):如無特殊注明,文章轉(zhuǎn)載自網(wǎng)絡(luò),侵權(quán)請(qǐng)聯(lián)系cnmhg168#163.com刪除!文件均為網(wǎng)友上傳,僅供研究和學(xué)習(xí)使用,務(wù)必24小時(shí)內(nèi)刪除。
相關(guān)推薦