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

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

sphere-decoding

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

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

    標(biāo)簽: 赫夫曼編譯碼 編碼 信道 利用率

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

    上傳用戶:zaizaibang

  • PlotSphereIntensity(azimuth, elevation) PlotSphereIntensity(azimuth, elevation, intensity) h = Plo

    PlotSphereIntensity(azimuth, elevation) PlotSphereIntensity(azimuth, elevation, intensity) h = PlotSphereIntensity(...) Plots the intensity (as color) of a number of points on a unit sphere. Input: azimuth (phi), in degrees elevation (theta), in degrees intensity (optional, if not provided, a green sphere is produced) All inputs must be vectors or matrices of the same size. Data does not have to be evenly spaced. When there aren t enough points to draw a smooth sphere, additional points (with color) are interpolated. Output: h - a handle to the patch object The axes are also plotted: positive x axis is red positive y axis is green positive z axis is blue

    標(biāo)簽: PlotSphereIntensity elevation azimuth intensity

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

    上傳用戶:ruan2570406

  • A collection of LDPC(Low-Density Parity-Codes) tools. Including: Code construction Density Evolution

    A collection of LDPC(Low-Density Parity-Codes) tools. Including: Code construction Density Evolution Decoding Algorithm Girth average Counter Stopping set and error Floor,etc

    標(biāo)簽: Parity-Codes construction Low-Density collection

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

    上傳用戶:liglechongchong

  • C++實(shí)現(xiàn)的哈弗曼編碼

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

    標(biāo)簽: 編碼

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

    上傳用戶:gxrui1991

  • 輸入一段英文字符

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

    標(biāo)簽: 輸入 英文 字符

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

    上傳用戶:lizhen9880

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

    多目標(biāo)遺傳算法程序 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.

    標(biāo)簽: Multiple-Objective SGALAB_demo run files

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

    上傳用戶:mhp0114

  • 1)I:初始化(Initialization)。從終端讀入電文

    1)I:初始化(Initialization)。從終端讀入電文,寫(xiě)到tobetrans文件中,統(tǒng)計(jì)電文的字符集合和對(duì)應(yīng)的權(quán)值集合,建立哈夫曼樹(shù),并將哈夫曼樹(shù)存于文件hfmtree中。 (2)C:編碼(Coding )。利用已建好的哈夫曼樹(shù)(如不在內(nèi)存,則從文件hfmtree中讀入),對(duì)文件tobetrans中的正文進(jìn)行編碼,然后將結(jié)果存入文件codefile中。 (3)D:譯碼(Decoding)。利用已建好的哈夫曼樹(shù)將文件codefile中的代碼進(jìn)行譯碼,結(jié)果存入文件textfile中。 (4)P:印代碼文件(Print)。將文件codefile以緊湊格式顯示在終端上,每行50個(gè)代碼。同時(shí)將此字符形式的編碼文件寫(xiě)入文件codeprint中。 (5)T:印哈夫曼樹(shù)(Tree printing)。將已在內(nèi)存中的哈夫曼樹(shù)以直觀的方式(樹(shù)或凹入表形式)顯示在終端上,同時(shí)將此字符形式的哈夫曼樹(shù)寫(xiě)入文件treeprint中。 用戶界面要求設(shè)計(jì)為“菜單”方式。 修改你的系統(tǒng),實(shí)現(xiàn)對(duì)你的系統(tǒng)的源程序的編碼和譯碼(主要是將行尾符編/譯碼問(wèn)題)。實(shí)現(xiàn)各個(gè)轉(zhuǎn)換操作的源/目標(biāo)文件,均由用戶在選擇此操作時(shí)指定。

    標(biāo)簽: Initialization 初始化

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

    上傳用戶:windwolf2000

  • This a very simple baseband simulator for SC-FDMA system. This simulator is part of the upcoming boo

    This a very simple baseband simulator for SC-FDMA system. This simulator is part of the upcoming book “Single Carrier FDMA: A New Air Interface for Long Term Evolution” (Wiley, Nov. 2008) which I co-authored with professor David J. Goodman at Polytechnic University. The purpose of this simulator is to give some concrete idea of how SC-FDMA system works. It does lack many realistic and sophisticated features such as channel coding, time-varying fading channel model, soft decision decoding, etc. Regardless, I am hoping that it will help you understand SC-FDMA which is a fairly new development in 3GPP LTE.

    標(biāo)簽: simulator This baseband upcoming

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

    上傳用戶:小草123

  • 小波神經(jīng)網(wǎng)絡(luò)的源程序: 1.構(gòu)造的非線性函數(shù): 位于nninit_test.m 2.直接用WNN逼近非線性:Wnn_test.m, (內(nèi)部調(diào)用小波函數(shù)) 3.遺傳算法優(yōu)化后逼近 :GA_Wnn_tes

    小波神經(jīng)網(wǎng)絡(luò)的源程序: 1.構(gòu)造的非線性函數(shù): 位于nninit_test.m 2.直接用WNN逼近非線性:Wnn_test.m, (內(nèi)部調(diào)用小波函數(shù)) 3.遺傳算法優(yōu)化后逼近 :GA_Wnn_test.m (內(nèi)部調(diào)用遺傳算法的,初始化,適應(yīng)度,解碼函數(shù))-genetic algorithm optimization WNN source : 1. Construction of the nonlinear function : nninit_test.m at 2. WNN directly with nonlinear approximation : Wnn_test.m. (internal called wavelet function) 3. Genetic Algorithm optimization approach : GA_Wnn_test.m (internal called genetic algorithms, initialize, fitness and decoding functions)

    標(biāo)簽: nninit_test GA_Wnn_tes Wnn_test WNN

    上傳時(shí)間: 2016-09-17

    上傳用戶:LIKE

  • 1993 年兩位法國(guó)教授Berrou、Glavieux 和他們的緬甸籍博士生Thitimajshima 在ICC 會(huì)議上發(fā)表的Near Shannon limit error-correcting c

    1993 年兩位法國(guó)教授Berrou、Glavieux 和他們的緬甸籍博士生Thitimajshima 在ICC 會(huì)議上發(fā)表的Near Shannon limit error-correcting coding and decoding: Turbo codes”,

    標(biāo)簽: error-correcting Thitimajshima Glavieux Shannon

    上傳時(shí)間: 2016-12-06

    上傳用戶:Avoid98

主站蜘蛛池模板: 沙田区| 呈贡县| 梁河县| 台南市| 巴马| 平阴县| 贵阳市| 定日县| 赤峰市| 台州市| 娄烦县| 黄大仙区| 天门市| 保康县| 西丰县| 海城市| 定结县| 寿阳县| 安康市| 驻马店市| 禹州市| 文安县| 洛阳市| 台前县| 犍为县| 舟曲县| 杨浦区| 舒城县| 九台市| 家居| 安康市| 浦北县| 五华县| 清水县| 兴文县| 宣武区| 枝江市| 兴海县| 彰武县| 浑源县| 大洼县|