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

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

RUN-Length

  • This document is an operation guide for the MPC8XXFADS board. It contains operational, functional a

    This document is an operation guide for the MPC8XXFADS board. It contains operational, functional and general information about the FADS. The MPC8XXFADS is meant to serve as a platform for s/ w and h/w development around the MPC8XX family processors. Using its on-board resources and its associated debugger, a developer is able to download his code, run it, set breakpoints, display memory and registers and connect his own proprietary h/w via the expansion connectors, to be incorporated to a desired system with the MPC8XX processor.

    標(biāo)簽: operational MPC8XXFADS functional operation

    上傳時(shí)間: 2014-03-10

    上傳用戶(hù):zsjinju

  • OFDM Signal generation and decoding using 16-QAM .64QAM as the modulation technique. This type of OF

    OFDM Signal generation and decoding using 16-QAM .64QAM as the modulation technique. This type of OFDM is particularly useful for WiMAX and other Wireless and Multimedia Standards. Just run the Model and with different SNRs in the AWGN Channel Block observe the performance of the OFDM.

    標(biāo)簽: generation modulation QAM technique

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

    上傳用戶(hù):lps11188

  • 編譯的關(guān)于LL(1)詞法分析的小程序

    編譯的關(guān)于LL(1)詞法分析的小程序,適合在VC下運(yùn)行-compiled on LL (1) Morphological analysis of the small programs, for the VC teachers to run the operation no problem

    標(biāo)簽: LL 編譯 程序

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

    上傳用戶(hù):sjyy1001

  • 首先通過(guò)解壓縮

    首先通過(guò)解壓縮,再導(dǎo)入Myeclipse后,通過(guò)Deploy和Run,然后在瀏覽器中即可測(cè)試。

    標(biāo)簽: 解壓

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

    上傳用戶(hù):鳳臨西北

  • 兩種解決方案 Richard just finished building his new house. Now the only thing the house misses is a cute l

    兩種解決方案 Richard just finished building his new house. Now the only thing the house misses is a cute little wooden fence. He had no idea how to make a wooden fence, so he decided to order one. Somehow he got his hands on the ACME Fence Catalogue 2002, the ultimate resource on cute little wooden fences. After reading its preface he already knew, what makes a little wooden fence cute. A wooden fence consists of N wooden planks, placed vertically in a row next to each other. A fence looks cute if and only if the following conditions are met: ?The planks have different lengths, namely 1, 2, . . . , N plank length units. ?Each plank with two neighbors is either larger than each of its neighbors or smaller than each of them. (Note that this makes the top of the fence alternately rise and fall.)

    標(biāo)簽: house the finished building

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

    上傳用戶(hù):541657925

  • 為QQ2440的示例程序

    為QQ2440的示例程序,請(qǐng)使用ADS編譯。 簡(jiǎn)單使用說(shuō)明: 使用H-Jtag或者更高級(jí)的仿真器調(diào)試,也可以不使用仿真器,借助supervivi的Download & Run功能測(cè)試, 下載的時(shí)候把DNW的下載地址設(shè)置為 0x3000000 即可。

    標(biāo)簽: 2440 QQ 程序

    上傳時(shí)間: 2016-02-26

    上傳用戶(hù):siguazgb

  • 壓縮解壓算法LZ77算法有許多派生算法(這里面包括 LZSS算法)。它們的算法原理上基本都相同

    壓縮解壓算法LZ77算法有許多派生算法(這里面包括 LZSS算法)。它們的算法原理上基本都相同,無(wú)論是哪種派生算法,LZ77算法總會(huì)包含一個(gè)動(dòng)態(tài)窗口(Sliding Window)和一個(gè)預(yù)讀緩沖器(Read Ahead Buffer)。動(dòng)態(tài)窗口是個(gè)歷史緩沖器,它被用來(lái)存放輸入流的前n個(gè)字節(jié)的有關(guān)信息。一個(gè)動(dòng)態(tài)窗口的數(shù)據(jù)范圍可以從 0K 到 64K,而LZSS算法使用了一個(gè)4K的動(dòng)態(tài)窗口。預(yù)讀緩沖器是與動(dòng)態(tài)窗口相對(duì)應(yīng)的,它被用來(lái)存放輸入流的前n個(gè)字節(jié),預(yù)讀緩沖器的大小通常在0 – 258 之間。這個(gè)算法就是基于這些建立的。用下n個(gè)字節(jié)填充預(yù)讀緩存器(這里的n是預(yù)讀緩存器的大小)。在動(dòng)態(tài)窗口中尋找與預(yù)讀緩沖器中的最匹配的數(shù)據(jù),如果匹配的數(shù)據(jù)長(zhǎng)度大于最小匹配長(zhǎng)度 (通常取決于編碼器,以及動(dòng)態(tài)窗口的大小,比如一個(gè)4K的動(dòng)態(tài)窗口,它的最小匹配長(zhǎng)度就是2),那么就輸出一對(duì)〈長(zhǎng)度(length),距離(distance)〉數(shù)組。長(zhǎng)度(length)是匹配的數(shù)據(jù)長(zhǎng)度,而距離(distance)說(shuō)明了在輸入流中向后多少字節(jié)這個(gè)匹配數(shù)據(jù)可以被找到。

    標(biāo)簽: 算法 LZSS LZ 77

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

    上傳用戶(hù):tzl1975

  • At the heart of Java technology lies the Java virtual machine--the abstract computer on which all Ja

    At the heart of Java technology lies the Java virtual machine--the abstract computer on which all Java programs run. Although the name "Java" is generally used to refer to the Java programming language, there is more to Java than the language. The Java virtual machine, Java API, and Java class file work together with the language to make Java programs run.

    標(biāo)簽: the Java technology abstract

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

    上傳用戶(hù):離殤

  • lpd6803是深圳英盛美半導(dǎo)體公司出品的一款高性能led驅(qū)動(dòng)芯片

    lpd6803是深圳英盛美半導(dǎo)體公司出品的一款高性能led驅(qū)動(dòng)芯片,該芯片具有如下特點(diǎn): 三路輸出,恒流驅(qū)動(dòng):每路各有一個(gè)外掛電阻調(diào)整電流:Iout(max)=30mA, Vout(max)=12V。 兼容恒壓模式,可直接替換ZQL9712等常規(guī)芯片。 直接PWM輸出,無(wú)亮度損失,降低數(shù)據(jù)傳輸量,有效減少電磁干擾(EMI)。 支持32級(jí)灰度/256級(jí)灰度(內(nèi)置反伽碼校正邏輯)兩種模式,掃描頻率高(>4000HZ)。 僅需時(shí)鐘線/數(shù)據(jù)線的兩線傳輸結(jié)構(gòu),級(jí)聯(lián)能力超強(qiáng)。 內(nèi)建振蕩器,支持FREE-RUN模式,降低控制電路成本。 內(nèi)置LDO穩(wěn)壓電路,電源適應(yīng)范圍寬(4.8-8V),輸出耐壓高(LED燈供電電壓可達(dá)12V)。 簡(jiǎn)化外圍配套,可擴(kuò)充性好,也可作為PWM發(fā)生器控制大電流器件驅(qū)動(dòng)大功率LED燈。 該芯片特別適合用于led幕墻燈、led全彩點(diǎn)光源、廣告字、異型屏等產(chǎn)品,相對(duì)于9712/6106/595/5026/62726等芯片來(lái)說(shuō),外圍器件少,電路簡(jiǎn)單, 布線容易,使用電線節(jié)省,控制器也簡(jiǎn)單。

    標(biāo)簽: 6803 lpd led 盛美半導(dǎo)體

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

    上傳用戶(hù):trepb001

  • 計(jì)算電磁學(xué)的3維矢量有限元程序 EMAP-3 is a vector (edge element) code. Vector codes are generally not affected

    計(jì)算電磁學(xué)的3維矢量有限元程序 EMAP-3 is a vector (edge element) code. Vector codes are generally not affected by spurious modes and have other inherent advantages. The code is written in the C programming language and can be compiled and run on PCs, workstations, or mainframes.

    標(biāo)簽: generally affected element Vector

    上傳時(shí)間: 2016-04-03

    上傳用戶(hù):1583060504

主站蜘蛛池模板: 阿拉善左旗| 宜君县| 桑植县| 油尖旺区| 南通市| 五寨县| 江源县| 广平县| 南溪县| 绍兴县| 邵阳县| 东明县| 象州县| 昆明市| 离岛区| 和平县| 稷山县| 石棉县| 克什克腾旗| 大兴区| 罗甸县| 麻江县| 墨竹工卡县| 夹江县| 永仁县| 阿克| 响水县| 商南县| 石渠县| 永宁县| 永平县| 图们市| 鱼台县| 惠安县| 永济市| 和硕县| 屏南县| 浏阳市| 宾川县| 河北区| 塔城市|