ADC的源程式,把51的正負極接至ADC,再將ADC.asm檔compile後,ACD便會產(chǎn)生將類比轉(zhuǎn)成數(shù)位訊號的效果
上傳時間: 2013-12-31
上傳用戶:569342831
世界名牌專業(yè)音響網(wǎng)址大全,由東方網(wǎng)絡(luò)收集整理,是目前世界音響燈光行業(yè)著名公司及名牌產(chǎn)品網(wǎng)址的最新匯編,每一頁的網(wǎng)址都按照公司或產(chǎn)品英文字母的第一個字母而排列,您可以按照公司或名牌產(chǎn)品中英文名稱的關(guān)鍵詞進行查找(Ctrl+F快捷鍵),如果沒有搜索結(jié)果,您可以直接到東方論壇詢問,我們將幫助您查找。該程序由原來的<世界名牌音響網(wǎng)址>現(xiàn)更名為<世界名牌專業(yè)音響網(wǎng)址> ,已從新調(diào)整,添加了一些新的網(wǎng)址,刪除了死鍵接,然后再作美化!該電子程序升級為9IASP Audio web V2.8
上傳時間: 2015-04-22
上傳用戶:stvnash
prolog 找路例子程序: === === === === === === Part 1-Adding connections Part 2-Simple Path example | ?- path1(a,b,P,T). will produce the response: T = 15 P = [a,b] ? Part 3 - Non-repeating path As an example, the query: ?- path2(a,h,P,T). will succeed and may produce the bindings: P = [a,depot,b,d,e,f,h] T = 155 Part 4 - Generating a path below a cost threshold As an example, the query: ?- path_below_cost(a,[a,b,c,d,e,f,g,h],RS,300). returns: RS = [a,b,depot,c,d,e,g,f,h] ? RS = [a,c,depot,b,d,e,g,f,h] ? no ==================================
標簽: Part connections example prolog
上傳時間: 2015-04-24
上傳用戶:ljt101007
分而治之方法還可以用于實現(xiàn)另一種完全不同的排序方法,這種排序法稱為快速排序(quick sort)。在這種方法中, n 個元素被分成三段(組):左段l e f t,右段r i g h t和中段m i d d l e。中段僅包含一個元素。左段中各元素都小于等于中段元素,右段中各元素都大于等于中段元素。因此l e f t和r i g h t中的元素可以獨立排序,并且不必對l e f t和r i g h t的排序結(jié)果進行合并。m i d d l e中的元素被稱為支點( p i v o t )。圖1 4 - 9中給出了快速排序的偽代碼
上傳時間: 2015-04-27
上傳用戶:kristycreasy
A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.
標簽: instruction specifying operation performed
上傳時間: 2014-01-11
上傳用戶:yiwen213
A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.
標簽: instruction specifying operation performed
上傳時間: 2015-05-02
上傳用戶:daoxiang126
A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.
標簽: instruction specifying operation performed
上傳時間: 2015-05-02
上傳用戶:shawvi
A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.
標簽: instruction specifying operation performed
上傳時間: 2013-12-12
上傳用戶:朗朗乾坤
設(shè)計說明:1。數(shù)據(jù)結(jié)構(gòu)和表示:程序用1、2、3、4分別表示將右、上、左、下的數(shù)字塊移動到空格之中。采用典型的樹+鏈表結(jié)構(gòu),每種局面產(chǎn)生一個BoardState類。出于避免走法順序列表被過多復(fù)制的考慮,在樹結(jié)構(gòu)中保存局面的繼承關(guān)系。每種新的局面產(chǎn)生后,引用估值函數(shù)產(chǎn)生f的值,再根據(jù)大小將其插入鏈表之中,以便實現(xiàn)“優(yōu)先展開f值小的節(jié)點”。Solve()函數(shù)在成功解決問題之后保存一個走法序列供輸出并返回零,而失敗則返回失敗處的節(jié)點層數(shù)。(具體的判斷方法見后文)
標簽: 數(shù)據(jù)結(jié)構(gòu) 分 典型 數(shù)字
上傳時間: 2015-05-02
上傳用戶:xieguodong1234
本程序用資源分配網(wǎng)(Resource_Allocation Network,簡稱RAN)實現(xiàn)了Hermit多項式在線學(xué)習(xí)問題。訓(xùn)練樣本產(chǎn)生方式如下,樣本數(shù)400,每個樣本輸入Xi在區(qū)間[-4,4]內(nèi)隨機產(chǎn)生(均勻分布),相關(guān)樣本輸出為F(Xi) = 1.1(1-Xi + Xi2)exp(-Xi2/2),測試樣本輸入在[-4,+4]內(nèi)以0.04為間隔等距產(chǎn)生,共201個樣本。訓(xùn)練結(jié)束后的隱節(jié)點為:11個,訓(xùn)練結(jié)束后的平均誤差可達:0.03
標簽: Resource_Allocation Network Hermit RAN
上傳時間: 2014-01-14
上傳用戶:pompey
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1