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

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

SORT

  • this is source code for counting SORT algorith in c language

    this is source code for counting SORT algorith in c language

    標簽: algorith counting language source

    上傳時間: 2017-09-24

    上傳用戶:asdkin

  • A SORT of PacMan game wirtten in Visual Basic 6.0

    A SORT of PacMan game wirtten in Visual Basic 6.0

    標簽: wirtten PacMan Visual Basic

    上傳時間: 2014-01-24

    上傳用戶:牧羊人8920

  • 基于CPLD的QDPSK調制解調電路設計

    為了在CDMA系統中更好地應用QDPSK數字調制方式,在分析四相相對移相(QDPSK)信號調制解調原理的基礎上,設計了一種QDPSK調制解調電路,它包括串并轉換、差分編碼、四相載波產生和選相、相干解調、差分譯碼和并串轉換電路。在MAX+PLUSⅡ軟件平臺上,進行了編譯和波形仿真。綜合后下載到復雜可編程邏輯器件EPM7128SLC84-15中,測試結果表明,調制電路能正確選相,解調電路輸出數據與QDPSK調制輸入數據完全一致,達到了預期的設計要求。 Abstract:  In order to realize the better application of digital modulation mode QDPSK in the CDMA system, a SORT of QDPSK modulation-demodulation circuit was designed based on the analysis of QDPSK signal modulation-demodulation principles. It included serial/parallel conversion circuit, differential encoding circuit, four-phase carrier wave produced and phase chosen circuit, coherent demodulation circuit, difference decoding circuit and parallel/serial conversion circuit. And it was compiled and simulated on the MAX+PLUSⅡ software platform,and downloaded into the CPLD of EPM7128SLC84-15.The test result shows that the modulation circuit can exactly choose the phase,and the output data of the demodulator circuit is the same as the input data of the QDPSK modulate. The circuit achieves the prospective requirement of the design.

    標簽: QDPSK CPLD 調制解調 電路設計

    上傳時間: 2014-01-13

    上傳用戶:qoovoop

  • 基于CPLD的QDPSK調制解調電路設計

    為了在CDMA系統中更好地應用QDPSK數字調制方式,在分析四相相對移相(QDPSK)信號調制解調原理的基礎上,設計了一種QDPSK調制解調電路,它包括串并轉換、差分編碼、四相載波產生和選相、相干解調、差分譯碼和并串轉換電路。在MAX+PLUSⅡ軟件平臺上,進行了編譯和波形仿真。綜合后下載到復雜可編程邏輯器件EPM7128SLC84-15中,測試結果表明,調制電路能正確選相,解調電路輸出數據與QDPSK調制輸入數據完全一致,達到了預期的設計要求。 Abstract:  In order to realize the better application of digital modulation mode QDPSK in the CDMA system, a SORT of QDPSK modulation-demodulation circuit was designed based on the analysis of QDPSK signal modulation-demodulation principles. It included serial/parallel conversion circuit, differential encoding circuit, four-phase carrier wave produced and phase chosen circuit, coherent demodulation circuit, difference decoding circuit and parallel/serial conversion circuit. And it was compiled and simulated on the MAX+PLUSⅡ software platform,and downloaded into the CPLD of EPM7128SLC84-15.The test result shows that the modulation circuit can exactly choose the phase,and the output data of the demodulator circuit is the same as the input data of the QDPSK modulate. The circuit achieves the prospective requirement of the design.

    標簽: QDPSK CPLD 調制解調 電路設計

    上傳時間: 2013-10-28

    上傳用戶:jyycc

  • 產品檢測中裕度和校準的樂趣

    Abstract: This application note presents an overview of electronic margining and its value in detectingpotential system failures before a product ships from the factory. It is a calibration method that effectivelypredicts and allows adjustments to improve product quality. Margining also can be used to SORT productsinto performance levels, allowing premium products to be sold at premium prices. We discuss thedownside of SORTing and suggest alternative ways to segregate products.

    標簽: 產品檢測 校準

    上傳時間: 2014-01-22

    上傳用戶:lhw888

  • 插入算法

    插入算法,英文叫作insertion SORT

    標簽: 算法

    上傳時間: 2015-01-29

    上傳用戶:英雄

  • Addressbook using double-linked list. This example shows the use of a double-linked list by implemen

    Addressbook using double-linked list. This example shows the use of a double-linked list by implementing an addressbook for the console. It has features like inserting, searching(linear), SORTing(bubble SORT), deleting and load/save to a file. I wrote this during my study of Applied Computer Science so it s intended mainly for students who want to know about some advanced programming techniques in C. The Code was compiled with MSVC++ 6.0 but it should compile with any ANSI-compliant compiler.

    標簽: double-linked list Addressbook implemen

    上傳時間: 2014-01-24

    上傳用戶:asddsd

  • Use the verilog language write a MIPS CPU code, and have additional instruction, for example: select

    Use the verilog language write a MIPS CPU code, and have additional instruction, for example: selection SORT instruction. The code has contain combination circuit and sequenial circuit. CPU have contain ALU, ADD, ALU_CONTROL, DATA_MEMORY, INST_MEMORY, REGISTER, PC, and TESTBRANCH.

    標簽: instruction additional language example

    上傳時間: 2014-01-17

    上傳用戶:yyyyyyyyyy

  • 分而治之方法還可以用于實現另一種完全不同的排序方法

    分而治之方法還可以用于實現另一種完全不同的排序方法,這種排序法稱為快速排序(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的排序結果進行合并。m i d d l e中的元素被稱為支點( p i v o t )。圖1 4 - 9中給出了快速排序的偽代碼

    標簽: 排序

    上傳時間: 2015-04-27

    上傳用戶:kristycreasy

  • VC常用數值算法集C7 ECLASS.CPP ECLAZZ.CPP INDEXX.CPP PIKSR2.CPP PIKSRT.CPP QCKSRT.CPP RANK.CPP SHELL

    VC常用數值算法集\C7 ECLASS.CPP ECLAZZ.CPP INDEXX.CPP PIKSR2.CPP PIKSRT.CPP QCKSRT.CPP RANK.CPP SHELL.CPP SORT2.CPP SORT3.CPP SORT.C

    標簽: CPP ECLASS ECLAZZ INDEXX

    上傳時間: 2015-05-28

    上傳用戶:yuzsu

主站蜘蛛池模板: 河东区| 吉木萨尔县| 延津县| 澄城县| 晋城| 凤山县| 南汇区| 呼图壁县| 张家界市| 古交市| 上犹县| 民和| 肥乡县| 拜泉县| 海安县| 务川| 广水市| 醴陵市| 都安| 天等县| 镇原县| 乌恰县| 阜新| 太仓市| 巩义市| 赤水市| 肇庆市| 克什克腾旗| 乐都县| 扶沟县| 墨竹工卡县| 青川县| 衡水市| 绍兴市| 昌吉市| 龙岩市| 当涂县| 苍溪县| 老河口市| 潍坊市| 汝州市|