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

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

Encoding

Encoding意思是編碼,是將信息分類的結果用一種易于被計算機和人識別的符號體系表示出來的過程,是人們統一認識、統一觀點、相互交換信息的一種技術手段。編碼的直接產物是代碼。
  • This packet is a IS-95 baseband simulation for 1 data channel of 9.6 KBps rate. The simulation is

    This packet is a IS-95 baseband simulation for 1 data channel of 9.6 KBps rate. The simulation is written for static channel and AWGN noise. The packet include: 1) Packet Builder (Viterbi Encoding, Interleaver, PN generation) 2) Modulator (RRC filter) 3) Demodulator (Matched Filter, RAKE receiver) 4) Receiver (HD or SD) (Deinterleaver, Viterbi Decoder).

    標簽: simulation baseband channel packet

    上傳時間: 2014-12-20

    上傳用戶:ukuk

  • The UCL common multimedia library implements a number of algorithms and protocols needed by a number

    The UCL common multimedia library implements a number of algorithms and protocols needed by a number of our applications. It compiles standalone on a range of Unix systems (Solaris, Linux, Irix, FreeBSD, MacOSX) and on Windows 95/98/NT/XP. The following protocols/algorithms are included in the library: Base64 Encoding/decoding Binary tree Random number HMAC authentication MD5 DES RTP MBus SAP

    標簽: number algorithms multimedia implements

    上傳時間: 2014-11-16

    上傳用戶:hoperingcong

  • 赫夫曼編譯碼器: 用哈夫曼編碼進行通信可以大大提高信道利用率

    赫夫曼編譯碼器: 用哈夫曼編碼進行通信可以大大提高信道利用率,縮短信息傳輸時間,降低傳輸成本。但是,這要求在發送端通過一個編碼系統對待傳數據預先編碼,在接收端將傳來的數據進行譯碼(復原)。對于雙工信道(即可以雙向傳輸信息的信道),每端都需要一個完整的編/譯碼系統。試為這樣的信息收發站寫一個哈夫曼碼的編/譯碼系統。 [基本要求]一個完整的系統應具有以下功能: (1)I:初始化(Initialization)。從終端讀入字符集大小n,以及n個字符和n個權值,建立哈夫曼樹,并將它存于文件hfmTree中。 (2)E:編碼(Encoding)。利用已建好的哈夫曼樹(如不在內存,則從文件hfmTree中讀入),對文件ToBeTran中的正文進行編碼,然后將結果存入文件CodeFile中。 (3)D:譯碼(Decoding)。利用已建好的哈夫曼樹將文件CodeFile中的代碼進行譯碼,結果存入文件TextFile中。 (4)P:印代碼文件(Print)。將文件CodeFile以緊湊格式顯示在終端上,每行50個代碼。同時將此字符形式的編碼文件寫入文件CodePrin中。 (5)T:印哈夫曼樹(Tree printing)。將已在內存中的哈夫曼樹以直觀的方式(樹或凹入表形式)顯示出,同時將此字符形式的哈夫曼樹寫入文件TreePrint中。

    標簽: 赫夫曼編譯碼 編碼 信道 利用率

    上傳時間: 2016-04-17

    上傳用戶:zaizaibang

  • This package provides a complete http client library. It currently implements most of the relevant p

    This package provides a complete http client library. It currently implements most of the relevant parts of the HTTP/1.0 and HTTP/1.1 protocols, including the request methods HEAD, GET, POST and PUT, and automatic handling of authorization, redirection requests, and cookies. Furthermore the included Codecs class contains coders and decoders for the base64, quoted-printable, URL-Encoding, chunked and the multipart/form-data Encodings. The whole thing is free, and licenced under the GNU Lesser General Public License (LGPL) (note that this is not the same as the GPL).

    標簽: implements currently complete provides

    上傳時間: 2014-01-16

    上傳用戶:siguazgb

  • vhdl編寫

    vhdl編寫,8b—10b 編解碼器設計 Encoder: 8b/10b Encoder (file: 8b10b_enc.vhd) Synchronous clocked inputs (latched on each clock rising edge) 8-bit parallel unencoded data input KI input selects data or control Encoding Asynchronous active high reset initializes all logic Encoded data output 10-bit parallel encoded output valid 1 clock later Decoder: 8b/10b Decoder (file: 8b10b_dec.vhd) Synchronous clocked inputs (latched on each clock rising edge) 10-bit parallel encoded data input Asynchronous active high reset initializes all logic Decoded data, disparity and KO outputs 8-bit parallel unencoded output valid 1 clock later

    標簽: vhdl 編寫

    上傳時間: 2016-05-05

    上傳用戶:gundamwzc

  • C++實現的哈弗曼編碼

    C++實現的哈弗曼編碼,并有流程圖(1)I:初始化(Initialization)。從指定的英文文件中Sourcefile.txt讀取數據,根據文件內容統計的字符的頻度,建立哈夫曼樹。 (2)E:編碼(Encoding)。利用已經建好的哈夫曼樹進行編碼,并將每個字符的編碼寫入文件HuffCode.txt中保存。 (3)C:壓縮(Compress)。根據HuffCode.txt中編碼對文件Sourcefile.txt進行重新編碼,并將重新編碼后的內容寫入文件CodeFile.txt中。 (4)D:譯碼(Decoding)。利用已經建好的哈夫曼樹將文件CodeFile.txt中的代碼進行譯碼,結果存入文件TextFile中。 (5)P:打印代碼文件(Print)。將文件CodeFile.txt的內容顯示在終端上,每行50個代碼。 (6)T:顯示哈夫曼樹(Treeprinting)。將已經在內存中的哈夫曼樹以直觀的方式(樹或凹入表形式)顯示在終端上。

    標簽: 編碼

    上傳時間: 2013-12-24

    上傳用戶:gxrui1991

  • 輸入一段英文字符

    輸入一段英文字符,試為該文中的每個字符編制相應的哈夫曼碼。 (1)I:初始化(Initialization)。對輸入的一段英文中的每個字符統計其權值,建立哈夫曼樹; (2)E:編碼(Encoding)。利用已建好的哈夫曼樹,對每個字符進行編碼。 (3)D:譯碼(Decoding)。利用已建好的每個編碼,對輸入的一個由0、1組成的序列進行譯碼; (4)P:印代碼文件(Print)。將每個字符編的哈夫曼碼和譯碼結果顯示在終端上。

    標簽: 輸入 英文 字符

    上傳時間: 2013-12-16

    上傳用戶:lizhen9880

  • Peers is a very minimalistic SIP User-Agent. It s a softphone, written in java, and it has been test

    Peers is a very minimalistic SIP User-Agent. It s a softphone, written in java, and it has been tested on linux and windows. It allows a user to call from one PC to another on a local area network, using SIP/SDP/RTP with Ulaw Encoding for voice.

    標簽: minimalistic User-Agent softphone written

    上傳時間: 2014-12-02

    上傳用戶:cainaifa

  • 多目標遺傳算法程序 to run Demo files, is to run SGALAB_demo_*.m what s new: 1) Multiple-Objective GAs

    多目標遺傳算法程序 to run Demo files, is to run SGALAB_demo_*.m what s new: 1) Multiple-Objective GAs VEGA NSGA NPGA MOGA 2) More TSP mutation and Crossover methods PMX OX CX EAX Boolmatrix 3) More selection methods Truncation tornament stochastic 4) mutation methods binary single point int/real single point 5) Encoding/decoding methods binary integer/real messy gray DNA permuation to fix the plot bugs for 4001 , download this file and replace old files.

    標簽: Multiple-Objective SGALAB_demo run files

    上傳時間: 2013-12-21

    上傳用戶:mhp0114

  • 主題 : Low power Modified Booth Multiplier 介紹 : 為了節省乘法器面積、加快速度等等

    主題 : Low power Modified Booth Multiplier 介紹 : 為了節省乘法器面積、加快速度等等,許多文獻根據乘法器中架構提出改進的方式,而其中在1951年,A. D. Booth教授提出了一種名為radix-2 Booth演算法,演算法原理是在LSB前一個位元補上“0”,再由LSB至MSB以每兩個位元為一個Group,而下一個Group的LSB會與上一個Group的MSB重疊(overlap),Group中的位元。 Booth編碼表進行編碼(Booth Encoding)後再產生部分乘積進而得到最後的結果。 Radix-2 Booth演算法在1961年由O. L. Macsorley教授改良後,提出了radix-4 Booth演算法(modified Booth algorithm),此演算法的差異為Group所涵括的位元由原先的2個位元變為3個位元。

    標簽: Multiplier Modified Booth power

    上傳時間: 2016-09-01

    上傳用戶:stewart·

主站蜘蛛池模板: 集安市| 灵丘县| 星子县| 吴旗县| 昌图县| 曲阜市| 康平县| 英吉沙县| 姜堰市| 临澧县| 玉山县| 和田县| 长宁县| 庐江县| 从江县| 瑞昌市| 安岳县| 娱乐| 齐齐哈尔市| 呼图壁县| 鄂尔多斯市| 信阳市| 密山市| 秭归县| 辉县市| 湖州市| 福州市| 景宁| 南康市| 开鲁县| 南城县| 建平县| 永春县| 东方市| 白河县| 昌平区| 扎兰屯市| 淮滨县| 上虞市| 晋中市| 红河县|