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

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

Bit-error-rate

  • Finds the polynomial p10 of degree less than or equal to 10 that interpolates cos x on the interval

    Finds the polynomial p10 of degree less than or equal to 10 that interpolates cos x on the interval [0, PI/2] at 11 equally spaced points. Study the error betwee between the function and the polynomial at 41 equally spaced points over the same interval. Repeat the latter but use your 11 points to be Chebyshevs.

    標(biāo)簽: interpolates polynomial the interval

    上傳時間: 2015-04-06

    上傳用戶:hakim

  • AVR單片機的優(yōu)化RC6 加密算法(速度快

    AVR單片機的優(yōu)化RC6 加密算法(速度快,其優(yōu)化思想絕對值得學(xué)習(xí)) 在有128bytes RAM 的AVR單片機上執(zhí)行 rc6 16/10/8(16 bit/10 rounds/8 bytes keys) * 對多數(shù)代碼進(jìn)行了 C 語言優(yōu)化,對數(shù)據(jù)相關(guān)循環(huán)移位,模乘等用ASM優(yōu)化 * 在4MHz無乘法器的AVR上得到平均 1172 Bytes/s的加解密速度。 * 編譯器: AVR-G

    標(biāo)簽: AVR RC6 單片機 加密算法

    上傳時間: 2013-12-18

    上傳用戶:阿四AIR

  • 只包括兩個核心文件sha1.cpp及sha1.h 計算數(shù)據(jù)的sha1摘要。簡單

    只包括兩個核心文件sha1.cpp及sha1.h 計算數(shù)據(jù)的sha1摘要。簡單,好用。 由于bit endian及l(fā)ittle endian的原因,有些計算sha1摘要的算法計算出來的結(jié)果與正確結(jié)果有差異。此源碼經(jīng)過測試,與RFC里列出的測試結(jié)果匹配。

    標(biāo)簽: sha sha1 cpp 核心

    上傳時間: 2015-04-09

    上傳用戶:dongqiangqiang

  • 8位大小比較器的VHDL源代碼

    8位大小比較器的VHDL源代碼,Magnitude Comparator VHDL description of a 4-bit magnitude comparator with expansion inputs

    標(biāo)簽: VHDL 8位 比較器 源代碼

    上傳時間: 2015-04-15

    上傳用戶:guanliya

  • 串口通訊使用說明 在兩臺機器運行serealcom.exe

    串口通訊使用說明 在兩臺機器運行serealcom.exe, 但必須保證用串口線連接, 選擇串口時如出現(xiàn)error, 表明此串口正被其它設(shè)備使用。

    標(biāo)簽: serealcom exe 串口通訊 使用說明

    上傳時間: 2014-01-22

    上傳用戶:thuyenvinh

  • The original NuLib has been ported to many different systems. Version 3.2.5 is functionally similar

    The original NuLib has been ported to many different systems. Version 3.2.5 is functionally similar to v3.2.4, but the source code and documentation were cleaned up by Devin Reade, making it easier to build. NuLib2 is generally superior, but NuLib does have the advantage of running under 16-bit MS-DOS and GS/OS.

    標(biāo)簽: functionally different original Version

    上傳時間: 2014-01-10

    上傳用戶:liglechongchong

  • This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrup

    This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrupt driven (with the exception of sending the data via USB to the host.) An interrupt is generated when the PS/2 start bit is received, at which time the firmware will begin its receive routine. In addition to this interrupt, every 168ms a timer overflow interrupts the main program and implements one state of the mouse state machine. This state machine handles sending bytes to and translating bytes received from the PS/2 mouse automatically. All of this is done in the background while the main program runs in the foreground. The only operation that the main program implements is sending mouse data to the PC via USB.

    標(biāo)簽: firmware mouse translates translator

    上傳時間: 2015-04-26

    上傳用戶:cuiyashuo

  • 一個具體的詞法分析程序,從輸入的源程序中

    一個具體的詞法分析程序,從輸入的源程序中,識別出各個具有獨立意義的單詞,即基本保留字、標(biāo)識符、常數(shù)、運算符、分隔符五大類。并依次輸出各個單詞的內(nèi)部編碼及單詞符號自身值。(遇到錯誤時可顯示“Error”,然后跳過錯誤部分繼續(xù)顯示)

    標(biāo)簽: 程序 源程序 輸入

    上傳時間: 2015-04-26

    上傳用戶:jhksyghr

  • 可預(yù)置的8位計數(shù)器程序的主要部分分析 #include <AT89X51.H> //器件配置文件 #define uchar unsigned char //變量類型的宏定義

    可預(yù)置的8位計數(shù)器程序的主要部分分析 #include <AT89X51.H> //器件配置文件 #define uchar unsigned char //變量類型的宏定義 #define uint unsigned int uchar code SEG7[10]={0x03,0x9f,0x25,0x0d,0x99, //0~9的數(shù)碼管段碼 0x49,0x41,0x1f,0x01,0x09} uchar data cnt[8] //在data區(qū)定義8位長度的數(shù)組,用來存放計數(shù)值 uchar data pre_cnt[8] //在data區(qū)定義8位長度的數(shù)組,用來存放預(yù)置值 sbit drv=P3^4 //定義輸出驅(qū)動端 bit set_flag //定義工作標(biāo)志 bit out_flag //定義輸出標(biāo)志 bit keydown_flag //鍵按下標(biāo)志

    標(biāo)簽: unsigned include define uchar

    上傳時間: 2015-04-29

    上傳用戶:changeboy

  • 心愿音樂系統(tǒng)1.1 測試結(jié)果 采用風(fēng)聲無組件上傳

    心愿音樂系統(tǒng)1.1 測試結(jié)果 采用風(fēng)聲無組件上傳,可以上傳 2m以下的文件 這個可能跟網(wǎng)速有關(guān)系,我測試上傳4k/秒 有其他根好上傳組件和好的建議方法請跟我聯(lián)系 http://bbs.lt52.com/ qq:112934475 1內(nèi)核采用風(fēng)聲無組件上傳類 v2.0 2代碼容易維護(hù)采用Macromedia Dreamweaver MX軟件編寫 一 文件說明 conn.asp 連接數(shù)據(jù)庫,第一次使用修改數(shù)據(jù)庫名稱 index.asp 音樂系統(tǒng)首頁 player.asp 播放器支持 mp3/wma/asf/rm/ram的格式的播放 error.asp 錯誤提示頁 息 pic文件夾 放網(wǎng)頁圖片資料 風(fēng)聲無組件上傳類 v2.0幾個重要文件 upload1.asp UpLoadClass.asp function.js UpLoadFile文件夾 上傳專用文件夾 數(shù)據(jù)庫 UpLoadClass.mdb 版本升級說明 2004-7.29(心愿音樂系統(tǒng)1.1) 添加 推薦歌曲 top歌曲 上傳歌曲 作者菜單導(dǎo)航! 2004-7-27 心愿音樂系統(tǒng) 歡迎大家來測試!1.0 http://bbs.lt52.com/ qq:112934475

    標(biāo)簽: 1.1 音樂系統(tǒng) 測試結(jié)果

    上傳時間: 2013-12-17

    上傳用戶:ynwbosss

主站蜘蛛池模板: 阿坝| 外汇| 芮城县| 安岳县| 龙井市| 那曲县| 曲阜市| 壤塘县| 获嘉县| 中超| 宁安市| 宜章县| 尉氏县| 普兰店市| 新平| 兴隆县| 常州市| 恩施市| 广水市| 凤翔县| 水富县| 尉犁县| 德清县| 洛宁县| 南召县| 康平县| 丰台区| 平和县| 乌拉特中旗| 石河子市| 巴林右旗| 安西县| 哈密市| 克山县| 宁陕县| 城口县| 青铜峡市| 昂仁县| 南和县| 江油市| 石嘴山市|