亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

c-u-boot

  • 語音uA率壓縮算法,但是不是c語言,有誰有c語言編寫的?

    語音u\A率壓縮算法,但是不是c語言,有誰有c語言編寫的?

    標(biāo)簽: c語言 語音 壓縮算法 編寫

    上傳時(shí)間: 2014-01-17

    上傳用戶:水中浮云

  • System.out.print(s) System.out.println(t) System.out.print(u) System.out.println(v) System.o

    System.out.print(s) System.out.println(t) System.out.print(u) System.out.println(v) System.out.print(a) System.out.print(b) System.out.print(c) System.out.println(d) x=0x5f20 y=0x5f35 z=0xffff System.out.print(x) System.out.print(y) System.out.println(z)

    標(biāo)簽: System out println print

    上傳時(shí)間: 2016-07-01

    上傳用戶:日光微瀾

  • 利用51單片機(jī)+sl811芯片實(shí)現(xiàn)對(duì)u盤的讀寫功能

    利用51單片機(jī)+sl811芯片實(shí)現(xiàn)對(duì)u盤的讀寫功能,代碼為C++實(shí)現(xiàn),可供大家參考使用

    標(biāo)簽: 811 sl 51單片機(jī) 芯片

    上傳時(shí)間: 2014-01-16

    上傳用戶:fxf126@126.com

  • === ==== 關(guān)于本光盤 ========== Tinix: 書中所附代碼 其中很多目錄中除了包含源代碼(*.asm, *.inc, *.c, *.h)外

    === ==== 關(guān)于本光盤 ========== \Tinix: 書中所附代碼 其中很多目錄中除了包含源代碼(*.asm, *.inc, *.c, *.h)外,還有這樣一些文件: boot.bin 引導(dǎo)扇區(qū)(Boot Sector),可通過 FloppyWriter 寫入軟盤(或軟盤映像)。 loader.bin LOADER,直接拷貝至軟盤(或軟盤映像)根目錄。 kernel.bin 內(nèi)核(Kernel),直接拷貝至軟盤(或軟盤映像)根目錄。 bochsrc.bxrc Bochs 配置文件,如果系統(tǒng)中安裝了 Bochs-2.1.1 可直接雙擊之運(yùn)行。其它細(xì)節(jié)請(qǐng)見書第 2.7 節(jié)。 godbg.bat 調(diào)試時(shí)可使用此批處理文件。它假設(shè) Bochs-2.1.1 安裝在 D:\Program Files\Bochs-2.1.1\ 中。 TINIX.IMG 軟盤映像。可直接通過 Bochs 或者 Virtual PC 運(yùn)行。 *.com 可以在 DOS (必須為純 DOS) 下運(yùn)行的文件。 \Tools: 一些小工具 (在 VC6 下編譯通過) DescParser 描述符分析器,輸入描述符的值,可以得出起基址、界限、屬性等信息。 ELFParser ELF 文件分析器,可以列出一個(gè) ELF 文件的 ELF Header、 Program Header、Section Header 等信息。 FloppyWriter 用以寫引導(dǎo)扇區(qū),支持軟盤和軟盤映像。 KrnlChecker 用以檢查一個(gè) Tinix 內(nèi)核加載后位置是否正確。

    標(biāo)簽: Tinix asm inc 光盤

    上傳時(shí)間: 2014-01-26

    上傳用戶:TF2015

  • 硬盤安裝Linux系統(tǒng)方法 boot.init 使用方法:顯示所有隱藏和受保護(hù)文件

    硬盤安裝Linux系統(tǒng)方法 boot.init 使用方法:顯示所有隱藏和受保護(hù)文件,把c盤下的boot.ini文件的只讀屬性改掉,然后打開,在最后加上如下一行字:c:\grldr=安裝Linux

    標(biāo)簽: Linux boot init 硬盤安裝

    上傳時(shí)間: 2016-10-10

    上傳用戶:cjl42111

  • The files in this directory comprise ANSI-C language reference implementations of the CCITT (Intern

    The files in this directory comprise ANSI-C language reference implementations of the CCITT (International Telegraph and Telephone Consultative Committee) G.711, G.721 and G.723 voice compressions. They have been tested on Sun SPARCstations and passed 82 out of 84 test vectors published by CCITT (Dec. 20, 1988) for G.721 and G.723. [The two remaining test vectors, which the G.721 decoder implementation for u-law samples did not pass, may be in error because they are identical to two other vectors for G.723_40.]

    標(biāo)簽: implementations directory reference comprise

    上傳時(shí)間: 2014-01-22

    上傳用戶:Breathe0125

  • function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent fo

    function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent for U max_iter = 100 % Max. iteration min_impro =1e-5 % Min. improvement c=3 [center, U, obj_fcn] = fcm(data, c) for i=1:max_iter if F(U)>0.98 break else w_new=eye(in_n,in_n) center1=sum(center)/c a=center1(1)./center1 deta=center-center1(ones(c,1),:) w=sqrt(sum(deta.^2)).*a for j=1:in_n w_new(j,j)=w(j) end data1=data*w_new [center, U, obj_fcn] = fcm(data1, c) center=center./w(ones(c,1),:) obj_fcn=obj_fcn/sum(w.^2) end end display(i) result=zeros(1,data_n) U_=max(U) for i=1:data_n for j=1:c if U(j,i)==U_(i) result(i)=j continue end end end

    標(biāo)簽: data function Exponent obj_fcn

    上傳時(shí)間: 2013-12-18

    上傳用戶:ynzfm

  • I2C程序函數(shù)是采用軟件延時(shí)的方法產(chǎn)生SCL脈沖,對(duì)高晶振頻率要作一定的修改 C%NG#A1e0(本例是3us機(jī)器周期,如果系統(tǒng)對(duì)時(shí)間要求不是很重要的話,最好在每個(gè)單元讀寫結(jié)束時(shí)加個(gè)延時(shí)

    I2C程序函數(shù)是采用軟件延時(shí)的方法產(chǎn)生SCL脈沖,對(duì)高晶振頻率要作一定的修改 C%NG\#A1e0(本例是3us機(jī)器周期,如果系統(tǒng)對(duì)時(shí)間要求不是很重要的話,最好在每個(gè)單元讀寫結(jié)束時(shí)加個(gè)延時(shí), $`Z(Un+b0Tm0測試有子地址器件函數(shù),未測試無地址的器件,適合器件地址和子地址小于256的器件, 大于256的單元的器件可以自己改寫)。 td`U4A!~,L C0

    標(biāo)簽: I2C 3us SCL 延時(shí)

    上傳時(shí)間: 2017-01-01

    上傳用戶:wmwai1314

  • 44b0迷你boot

    44b0迷你boot,省去了中斷向量和C的初始化,用匯編初始化了串口0并顯示一個(gè)字符“3”,本例子的意圖在于讓您從一個(gè)全新的角度去理解44b0,激發(fā)您用ARM匯編的興趣,把44b0當(dāng)單片機(jī)用吧,讓困擾初學(xué)者的bootloader gundan 吧

    標(biāo)簽: 44b0 boot

    上傳時(shí)間: 2014-01-14

    上傳用戶:stampede

  • learningMatlab PhÇ n 1 c¬ së Mat lab Ch­ ¬ ng 1:

    learningMatlab PhÇ n 1 c¬ së Mat lab Ch­ ¬ ng 1: Cµ i ® Æ t matlab 1.1.Cµ i ® Æ t ch­ ¬ ng tr×nh: Qui tr×nh cµ i ® Æ t Matlab còng t­ ¬ ng tù nh­ viÖ c cµ i ® Æ t c¸ c ch­ ¬ ng tr×nh phÇ n mÒ m kh¸ c, chØ cÇ n theo c¸ c h­ íng dÉ n vµ bæ xung thª m c¸ c th« ng sè cho phï hî p. 1.1.1 Khë i ® éng windows. 1.1.2 Do ch­ ¬ ng tr×nh ® ­ î c cÊ u h×nh theo Autorun nª n khi g¾ n dÜ a CD vµ o æ ® Ü a th× ch­ ¬ ng tr×nh tù ho¹ t ® éng, cö a sæ

    標(biāo)簽: learningMatlab 172 199 173

    上傳時(shí)間: 2013-12-20

    上傳用戶:lanwei

主站蜘蛛池模板: 平昌县| 潜山县| 荥阳市| 连江县| 广宁县| 罗源县| 镇安县| 武冈市| 林周县| 洛浦县| 盐边县| 两当县| 两当县| 松原市| 曲靖市| 洮南市| 绥宁县| 宿松县| 双辽市| 洪雅县| 贞丰县| 交口县| 司法| 平利县| 昭平县| 遵义县| 霍城县| 喀什市| 宝应县| 博湖县| 盐山县| 长岭县| 库尔勒市| 大渡口区| 周至县| 三穗县| 肥乡县| 临泉县| 健康| 左权县| 正定县|