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

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

mcgsTpc-G

  • 數(shù)控譯碼

    數(shù)控譯碼,該程序?qū)ψ鰯?shù)控的兄弟特別有用,里面有數(shù)控G。M代碼的詳細(xì)譯碼

    標(biāo)簽: 數(shù)控 譯碼

    上傳時間: 2013-12-17

    上傳用戶:l254587896

  • matlab 自適應(yīng)遺傳算法源程序

    matlab 自適應(yīng)遺傳算法源程序,用到了G-S正交化分解,大家可以用QR分解做一下,應(yīng)該會使程序更簡單一點.

    標(biāo)簽: matlab 算法 源程序

    上傳時間: 2013-11-25

    上傳用戶:zm7516678

  • 加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an

    加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an RSA key cryptest g - To encrypt and decrypt a string using RSA cryptest r - To calculate MD5, SHS, and RIPEMD-160 message digests: cryptest m file - To encrypt and decrypt a string using DES-EDE in CBC mode: cryptest t - To encrypt or decrypt a file cryptest e|d input output - To share a file into shadows: cryptest s <pieces> <pieces-needed> file (make sure file has no extension, if you re running this under DOS) - To reconstruct a file from shadows: cryptest j output file1 file2 [....] - To gzip a file: cryptest z <compression-level> input output - To gunzip a file: cryptest u input output - To run validation tests: cryptest v - To run benchmarks: cryptest b [time for each benchmark in seconds]

    標(biāo)簽: Cryptographic Primitives generate Library

    上傳時間: 2015-07-16

    上傳用戶:wqxstar

  • 數(shù)控系統(tǒng)中的解釋器源代碼

    數(shù)控系統(tǒng)中的解釋器源代碼,可以獨立的運行,直接在dos環(huán)境下解釋G代碼

    標(biāo)簽: 數(shù)控系統(tǒng) 源代碼

    上傳時間: 2014-01-23

    上傳用戶:風(fēng)之驕子

  • qADSL is an auto-login & keep-alive daemon for Internet connections. It was created to automate the

    qADSL is an auto-login & keep-alive daemon for Internet connections. It was created to automate the annoying login process of several Swedish ISP s, e.g.

    標(biāo)簽: connections auto-login keep-alive Internet

    上傳時間: 2014-02-21

    上傳用戶:caozhizhi

  • crc任意位生成多項式 任意位運算 自適應(yīng)算法 循環(huán)冗余校驗碼(CRC

    crc任意位生成多項式 任意位運算 自適應(yīng)算法 循環(huán)冗余校驗碼(CRC,Cyclic Redundancy Code)是采用多項式的 編碼方式,這種方法把要發(fā)送的數(shù)據(jù)看成是一個多項式的系數(shù) ,數(shù)據(jù)為bn-1bn-2…b1b0 (其中為0或1),則其對應(yīng)的多項式為: bn-1Xn-1+bn-2Xn-2+…+b1X+b0 例如:數(shù)據(jù)“10010101”可以寫為多項式 X7+X4+X2+1。 循環(huán)冗余校驗CRC 循環(huán)冗余校驗方法的原理如下: (1) 設(shè)要發(fā)送的數(shù)據(jù)對應(yīng)的多項式為P(x)。 (2) 發(fā)送方和接收方約定一個生成多項式G(x),設(shè)該生成多項式 的最高次冪為r。 (3) 在數(shù)據(jù)塊的末尾添加r個0,則其相對應(yīng)的多項式為M(x)=XrP(x) 。(左移r位) (4) 用M(x)除以G(x),獲得商Q(x)和余式R(x),則 M(x)=Q(x) ×G(x)+R(x)。 (5) 令T(x)=M(x)+R(x),采用模2運算,T(x)所對應(yīng)的數(shù)據(jù)是在原數(shù) 據(jù)塊的末尾加上余式所對應(yīng)的數(shù)據(jù)得到的。 (6) 發(fā)送T(x)所對應(yīng)的數(shù)據(jù)。 (7) 設(shè)接收端接收到的數(shù)據(jù)對應(yīng)的多項式為T’(x),將T’(x)除以G(x) ,若余式為0,則認(rèn)為沒有錯誤,否則認(rèn)為有錯。

    標(biāo)簽: crc CRC 多項式 位運算

    上傳時間: 2014-11-28

    上傳用戶:宋桃子

  • Metalog is a modern replacement for syslogd and klogd. The logged messages can be dispatched accord

    Metalog is a modern replacement for syslogd and klogd. The logged messages can be dispatched according to their facility, urgency, program name and/or Perl-compatible regular expressions. Log files can be automatically rotated when they exceed a certain size or age. External shell scripts (e.g., mail) can be launched when specific patterns are found. Metalog is easier to configure than syslogd and syslog-ng, accepts unlimited number of rules and has (switchable) memory bufferization for maximal performance.

    標(biāo)簽: replacement dispatched messages Metalog

    上傳時間: 2014-01-03

    上傳用戶:腳趾頭

  • This section contains a brief introduction to the C language. It is intended as a tutorial on the la

    This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C. 2. write a recursive function FIB (n) to find out the nth element in theFibanocci sequence number which is 1,1,2,3,5,8,13,21,34,55,…3. write the prefix and postfix form of the following infix expressiona + b – c / d + e * f – g * h / i ^ j4. write a function to count the number of nodes in a binary tr

    標(biāo)簽: introduction the contains intended

    上傳時間: 2013-12-23

    上傳用戶:liansi

  • 編譯原理課程設(shè)計報告對以下文法

    編譯原理課程設(shè)計報告對以下文法,采用算符優(yōu)先分析算法,對G[S]所定義的賦值語句進(jìn)行語法分析,并在語法分析過程中將所輸入的扶植語句翻譯為四元式。

    標(biāo)簽: 編譯原理 報告

    上傳時間: 2013-12-23

    上傳用戶:362279997

  • 計算校驗碼

    計算校驗碼,格式為:G(X)=X8+X2+X+1,陪集碼為FFH,

    標(biāo)簽: 計算 校驗碼

    上傳時間: 2015-08-30

    上傳用戶:541657925

主站蜘蛛池模板: 临桂县| 阿拉善右旗| 韩城市| 海伦市| 筠连县| 太仓市| 高邑县| 三明市| 西城区| 修水县| 柏乡县| 嵊州市| 石台县| 政和县| 斗六市| 咸阳市| 林甸县| 墨脱县| 翁牛特旗| 东兴市| 天津市| 汝阳县| 六安市| 永修县| 正蓝旗| 荣成市| 博白县| 偏关县| 高清| 平遥县| 惠州市| 沈丘县| 兴国县| 临夏市| 调兵山市| 夹江县| 山阳县| 洮南市| 获嘉县| 商南县| 汤阴县|