Welch法:Welch法對(duì)Bartlett法進(jìn)行了兩方面的修正:一是選擇適當(dāng)?shù)拇昂瘮?shù)w(n),并在周期圖計(jì)算前直接加進(jìn)去,加窗的優(yōu)點(diǎn)是無(wú)論什么樣的窗函數(shù)均可使譜估計(jì)非負(fù)。二是在分段時(shí),可使各段之間有重疊,這樣會(huì)使方差減小。
上傳時(shí)間: 2016-03-03
上傳用戶:xcy122677
X(t)=Asin(2*pi *f *t+ q)+n(t) 估計(jì)其中的參數(shù)為A,f, q。n(t)為隨機(jī)噪聲,服從正態(tài)分布。 其他的具體見(jiàn)附件中的程序
上傳時(shí)間: 2013-12-18
上傳用戶:225588
編寫具有如下函數(shù)原型的遞歸與非遞歸兩種函數(shù)f,負(fù)責(zé)判斷數(shù)組a的前n個(gè)元素是否從大到小完全有序了,是則返回true,否則返回false。并編制主函數(shù)對(duì)它們進(jìn)行調(diào)用,以驗(yàn)證其正確性。 bool f(int a[], int n) 提示: (1)非遞歸函數(shù)中只需逐對(duì)地判斷各a[i]與a[i+1]是否都已從大到小有序排列(i = 0,1,…,n-2)。 (2)遞歸函數(shù)中將問(wèn)題分解處理為:若n=1(即只有1個(gè)元素時(shí))則返回true而遞歸出口;n>1時(shí),若最后一對(duì)元素不順序則返回false,否則進(jìn)行遞歸調(diào)用(傳去實(shí)參a與 n-1,去判斷前n-1個(gè)元素的順序性),并返回遞歸調(diào)用的結(jié)果(與前n-1個(gè)元素的是否順序性相同)。
上傳時(shí)間: 2017-01-02
上傳用戶:清風(fēng)冷雨
動(dòng)態(tài)連結(jié)程式庫(kù) (DLL) 一直以來(lái)都是Windows的重要基礎(chǔ),Windows CE也不例外。DLL對(duì)作業(yè)系統(tǒng)十分重要,本節(jié)的內(nèi)容主要是分析loader.c中的程式碼,它負(fù)責(zé)載入EXE和DLL。這裏要討論的是關(guān)於DLL的部分
上傳時(shí)間: 2015-07-01
上傳用戶:vodssv
設(shè)有一個(gè)背包可以放入的物品重量最重為s,現(xiàn)有n件物品,它們的重量分別為w[0]、 w[1]、w[2]、…、w[n-1]。問(wèn)能否從這n件物品中選擇若干件放入此背包中,使得放入的重量之和正好為s。如果存在一種符合上述要求的選擇,則稱此背包問(wèn)題有解(或稱其解為真);否則稱此背包問(wèn)題無(wú)解(或稱其解為假)。試用遞歸方法設(shè)計(jì)求解背包問(wèn)題的算法。
標(biāo)簽:
上傳時(shí)間: 2016-03-15
上傳用戶:bcjtao
對(duì)圖像進(jìn)行斑點(diǎn)噪聲的添加,用方程f=f+n*f將乘性噪音添加到圖像f上,其中n是均值為零,方差為var的均勻分布的隨機(jī)噪聲。
標(biāo)簽: 圖像
上傳時(shí)間: 2014-01-23
上傳用戶:xjz632
The Window Design Method The basic idea behind the design of linear-phase FIR filters using the window method is to choose a proper ideal frequency-selective filter [which always has a noncausal, infinite duration impulse response] and then truncate its impulse response hd[n] to obtain a linear-phase and causal FIR filter h[n]. To truncate the impulse response of the ideal filter a time window w[n] is used. Available windows in Matlab are rectangular [or boxcar in Matlab], bartlett, hamming, hanning
標(biāo)簽: linear-phase The the filters
上傳時(shí)間: 2017-03-20
上傳用戶:PresidentHuang
The code performs a number (ITERS) of iterations of the Bailey s 6-step FFT algorithm (following the ideas in the CMU Task parallel suite). 1.- Generates an input signal vector (dgen) with size n=n1xn2 stored in row major order In this code the size of the input signal is NN=NxN (n=NN, n1=n2=N) 2.- Transpose (tpose) A to have it stored in column major order 3.- Perform independent FFTs on the rows (cffts) 4.- Scale each element of the resulting array by a factor of w[n]**(p*q) 5.- Transpose (tpose) to prepair it for the next step 6.- Perform independent FFTs on the rows (cffts) 7.- Transpose the resulting matrix The code requires nested Parallelism.
標(biāo)簽: iterations performs Bailey number
上傳時(shí)間: 2014-01-05
上傳用戶:libenshu01
替代加密: A B C D E F G H I J K L M N O P Q R S T U V W 密文 Y Z D M R N H X J L I O Q U W A C B E G F K P 明文 X Y Z T S V I HAVE A DREAM!# 密文?? 用ARM編程實(shí)現(xiàn)替代加密。
標(biāo)簽: 加密
上傳時(shí)間: 2016-07-17
上傳用戶:qq521
實(shí)現(xiàn)最優(yōu)二叉樹(shù)的構(gòu)造;在此基礎(chǔ)上完成哈夫曼編碼器與譯碼器。 假設(shè)報(bào)文中只會(huì)出現(xiàn)如下表所示的字符: 字符 A B C D E F G H I J K L M N 頻度 186 64 13 22 32 103 21 15 47 57 1 5 32 20 57 字符 O P Q R S T U V W X Y Z , . 頻度 63 15 1 48 51 80 23 8 18 1 16 1 6 2 要求完成的系統(tǒng)應(yīng)具備如下的功能: 1.初始化。從終端(文件)讀入字符集的數(shù)據(jù)信息,。建立哈夫曼樹(shù)。 2.編碼:利用已建好的哈夫曼樹(shù)對(duì)明文文件進(jìn)行編碼,并存入目標(biāo)文件(哈夫曼碼文件)。 3.譯碼:利用已建好的哈夫曼樹(shù)對(duì)目標(biāo)文件(哈夫曼碼文件)進(jìn)行編碼,并存入指定的明文文件。 4.輸出哈夫曼編碼文件:輸出每一個(gè)字符的哈夫曼編碼。
上傳時(shí)間: 2014-11-23
上傳用戶:shanml
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1