Nucleus GRAFIX Porting Guide,本文檔包括Toolset Errors and Warnings 、 Display Device initialization Display Device Drivers、 Test Suite and Demo Program Modifications
標簽: Nucleus Porting GRAFIX Guide
上傳時間: 2013-12-20
上傳用戶:sk5201314
基于simulink的uwb仿真 uwb.mdl: UWB model - open this to begin. uwb_lib.mdl: Library blocks for UWB model. uwb_init.m: initialization called before model is loaded. uwb_settings: Sets up structure containing system parameters ( uwb in workspace). uwb_imr.m: Initializes UWB channel impulse response. uwb_sv_*.m: Four M-files used to generate channel impulse responses (MAT files).
上傳時間: 2013-12-22
上傳用戶:gengxiaochao
This package contains example software and associated documentation for the ColdFire MCF5249 microprocessor. The software includes sample processor initialization routines for the MCF5249 running a M5249C3 evaluation board as well as the following sample applications: simple - empty application template fat - factory acceptance test for the M5249C3 The software has currently been built and tested under Metrowerks CodeWarrior
標簽: documentation associated ColdFire contains
上傳時間: 2013-12-10
上傳用戶:zaizaibang
Secure Programming Cookbook for C and C++ is an important new resource for developers serious about writing secure code for Unix(including Linux) and Windows environments. This essential code companion covers a wide range of topics, including safe initialization, access control, input validation, symmetric and public key cryptography, cryptographic hashes and MACs, authentication and key exchange, PKI, random numbers, and anti-tampering.
標簽: Programming developers for important
上傳時間: 2015-09-03
上傳用戶:gundan
Standard-Library Exception Safety Bjarne Stroustrup Texas A&M University (and AT&T Labs – Research) http://www.research.att.com/~bs Introduction to the C++ exception handling mechanisms and “resource acquisition is initialization” for people with little experience with exceptions
標簽: Standard-Library Stroustrup University Exception
上傳時間: 2015-12-11
上傳用戶:懶龍1988
Altera公司開發板1c20 CF卡通用例程(初始化、讀、寫、測試等)-Altera Corporation development board 1c20 CF cartoon with routines (initialization, reading, writing, testing, etc.)
標簽: Altera 1c20 Corporation development
上傳時間: 2013-12-12
上傳用戶:colinal
利用哈夫曼編碼進行信息通信可以大大提高信道利用率,縮短信息傳輸時間,降低傳輸成本。但是,這要求在發送端通過一個編碼系統對待傳數據預先編碼,在接收端將傳來的數據進行譯碼(復原)。對于雙工信道(即可以雙向傳輸信息的信道),每端都需要一個完整的編/譯碼系統。試為這樣的信息收發站寫一個哈夫曼編/譯碼系統。 [基本要求]: (1)I:初始化(initialization)。從終端輸入一個長度不超過80的字符串(全部為大寫字母且無空格)。統計字符串的長度n、以及不同字符的個數和每種字符的權值,然后建立哈夫曼樹。 (2)E:編碼(Encoding)。利用已建好的哈夫曼樹對正文字符串進行編碼,并輸出。 (3)D:譯碼(Decoding)。利用已建好的哈夫曼樹與已經完成的編碼進行譯碼,并輸出。
上傳時間: 2016-03-15
上傳用戶:sclyutian
赫夫曼編譯碼器: 用哈夫曼編碼進行通信可以大大提高信道利用率,縮短信息傳輸時間,降低傳輸成本。但是,這要求在發送端通過一個編碼系統對待傳數據預先編碼,在接收端將傳來的數據進行譯碼(復原)。對于雙工信道(即可以雙向傳輸信息的信道),每端都需要一個完整的編/譯碼系統。試為這樣的信息收發站寫一個哈夫曼碼的編/譯碼系統。 [基本要求]一個完整的系統應具有以下功能: (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
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