基于DSP平臺(tái)實(shí)現(xiàn)turbo碼Max_Log_MAP算法,基于標(biāo)準(zhǔn)C 語(yǔ)言研究 了Turbo 碼Max - Log - MAP 譯碼算法的軟件編程與實(shí)現(xiàn),為了提高程序的運(yùn)行效率,結(jié)合TMS320C6000 系列DSP 芯片 的結(jié)構(gòu)與特點(diǎn)采用循環(huán)展開、數(shù)據(jù)的存取優(yōu)化設(shè)計(jì)、算法改進(jìn)等措施進(jìn)行了代碼優(yōu)化,給出了測(cè)試結(jié)果,非常值得一看
標(biāo)簽: Max_Log_MAP turbo DSP 算法
上傳時(shí)間: 2014-01-11
上傳用戶:
ead file "YD.DOC". Who is the intended user Beginners in assembly and programmers. Features of the program: Yilmaz Disassembler:is an interactive disassembler which lets the user be a part of the disassembling process,is flexible, the user can disassemble in different formats,has user friendly interface, mouse support, pop-up menu commands, short cut key commands, context-sensitive on-line help,and it is cheap. Program s capacity and limitations: Max executable file size is 64 KB. Can not disassemble program of EXE-format.Only 8086/8088 CPU instructions can be disassembled. Disassemble 8087 Math Co-processor s instructions.
標(biāo)簽: programmers Beginners Features assembly
上傳時(shí)間: 2014-06-21
上傳用戶:皇族傳媒
java的一個(gè)源代碼,、 public class ThunderBoltAct extends Canvas implements Runnable { private int TIMEOUT = 0 private final static int NUMERIC = 10000 //總分 private final static int INERRGAL = 60 //頻率 private final static int MAXBATTLE = 3 //最大飛機(jī)數(shù) private final static int MAXBALLNUM = 30 //最多飛機(jī)子彈數(shù) private final static int MAXCOPTERNUM = 16 //最大敵機(jī)數(shù) private final static int MAXCOPTERBALLNUM = 16 //最多敵機(jī)子彈數(shù) private final static int STEP = 1 private final static int MINCOPTER = 2 //最小敵機(jī)數(shù)
上傳時(shí)間: 2016-04-26
上傳用戶:jichenxi0730
本書系統(tǒng)地介紹了一種硬件描述語(yǔ)言,即VHDL語(yǔ)言設(shè)計(jì)數(shù)字邏輯電路和數(shù)字系統(tǒng)的新方法。這是電子電路設(shè)計(jì)方法上一次革命性的變化,也是邁向21世紀(jì)的電子工程師所必須掌握的專門知識(shí)。本書共分12章,第l章---第8章主要介紹VHDL語(yǔ)言的基本知識(shí)和使用VHDL語(yǔ)言設(shè)計(jì)簡(jiǎn)單邏輯電路的基本方法;第9章和第10章分別以定時(shí)器和接口電路設(shè)計(jì)為例,詳述了用VHDL語(yǔ)言設(shè)計(jì)復(fù)雜電路的步驟和過程;第11章簡(jiǎn)單介紹了VHDL語(yǔ)言93版和87版的主要區(qū)別;第12章介紹了MAX+plus II的使用說明。 本書以數(shù)字邏輯電路設(shè)計(jì)為主線,用對(duì)比手法來說明數(shù)字邏輯電路的電原理圖和VHDL語(yǔ)言程序之間的對(duì)應(yīng)關(guān)系,并列舉了眾多的實(shí)例。另外,還對(duì)設(shè)計(jì)中的有關(guān)技術(shù),如仿真、綜合等作了相應(yīng)說明。本書簡(jiǎn)明扼要,易讀易懂。它可作為大學(xué)本科和研究生的教科書,也可以作為一般從事電子電路設(shè)計(jì)工程師的自學(xué)參考書。
標(biāo)簽: 硬件描述語(yǔ)言
上傳時(shí)間: 2014-01-11
上傳用戶:sz_hjbf
#include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h> #include<io.h> #include<math.h> #include<process.h> #include<conio.h> #define m 100 #define OK 1 typedef int Status typedef char TElemType /*樹元素的類型*/ int t=35 int n=20 int h=14 int u=2 int leaf=0,non_l_leaf=0,non_r_leaf=0,root=0 /*各種結(jié)點(diǎn)數(shù)*/ char le[m],l[m],r[m],ro[m] /*用與存放各種結(jié)點(diǎn)*/ typedef struct BiTNode/*定義二叉樹*/
標(biāo)簽: include lt gt graphics
上傳時(shí)間: 2013-12-15
上傳用戶:liansi
輸入四個(gè)點(diǎn),判斷此四點(diǎn)是否可形成一個(gè)平行四邊形。 程序中描述了一個(gè)抽象數(shù)據(jù)類型Vector2D,表示一個(gè)向量。具有(x,y)兩個(gè)值。其本身具有減另一個(gè)向量(minus(Vector2D)),判斷自身是否為零向量(iszero()),與另一個(gè)向量對(duì)應(yīng)值y,x乘積之差(inner(Vector2D))。由于兩個(gè)向量平行,則乘積之差x1*y2-x2*y1=0。點(diǎn)A,B,C,D四點(diǎn)組成平行四邊形的條件是AB//CD,BC//DA且各個(gè)向量皆不為零向量。 首先聲明四個(gè)向量。向量i獲得值的方法是由getPoint(int i)獲得。然后根據(jù)Vector2D重載后的toString()函數(shù)將各個(gè)向量輸出查看。最后判斷此四點(diǎn)是否可組成平行四邊行。
標(biāo)簽: 輸入
上傳時(shí)間: 2016-04-30
上傳用戶:qq521
是EDA設(shè)計(jì)的數(shù)字鐘的VHDL語(yǔ)言程序,可用Max+Plus2進(jìn)行編譯,仿真并下載到芯片中。
標(biāo)簽: VHDL EDA 數(shù)字 語(yǔ)言程序
上傳時(shí)間: 2016-04-30
上傳用戶:manlian
CRC16算法的Java實(shí)現(xiàn),使用方法如下: CRC16 crc16 = new CRC16() byte[] b = new byte[] { // (byte) 0xF0,(byte)0xF0,(byte)0xF0,(byte)0x72 (byte) 0x2C, (byte) 0x00, (byte) 0xFF, (byte) 0xFE, (byte) 0xFE, (byte) 0x04, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 } for (int k = 0 k < b.length k++) { crc16.update(b[k]) } System.out.println(Integer.toHexString(crc16.getValue())) System.out.println(Integer.toHexString(b.length))
上傳時(shí)間: 2014-12-20
上傳用戶:ve3344
linux 下串口編程 #include <stdio.h> /*標(biāo)準(zhǔn)輸入輸出定義*/ #include <stdlib.h> /*標(biāo)準(zhǔn)函數(shù)庫(kù)定義*/ #include <unistd.h> /*Unix標(biāo)準(zhǔn)函數(shù)定義*/ #include <sys/types.h> /**/ #include <sys/stat.h> /**/ #include <fcntl.h> /*文件控制定義*/ #include <termios.h> /*PPSIX終端控制定義*/ #include <errno.h> /*錯(cuò)誤號(hào)定義*/ /***@brief 設(shè)置串口通信速率 *@param fd 類型 int 打開串口的文件句柄 *@param speed 類型 int 串口速度 *@return void*/
標(biāo)簽: include stdlib linux stdio
上傳時(shí)間: 2014-01-18
上傳用戶:xjz632
#include <reg52.h> #include <stdio.h> #include <string.h> #define uchar unsigned char #define uint unsigned int #define isp_iap_byte_read 0x1 #define isp_iap_byte_program 0x2 #define isp_iap_sector_erase 0x3 #define wait_time 0x1
標(biāo)簽: include gt lt unsigne
上傳時(shí)間: 2016-05-18
上傳用戶:agent
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1