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

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

while循環(huán)

  • EKF-SLAM Simulator This version of the simulator uses global variables for all large objects, suc

    EKF-SLAM Simulator This version of the simulator uses global variables for all large objects, such as the state covariance matrix. While bad programming practice, it is a necessary evil for MatLab efficiency, as MatLab has no facility to avoid gratuitous memory allocation and copying when passing (and modifying) variables between functions. With this concession, effort has been made to keep the code as clean and modular as possible.

    標簽: Simulator simulator variables EKF-SLAM

    上傳時間: 2016-05-02

    上傳用戶:lunshaomo

  • Data_Structures_and_Algorithms - These notes accompany Data Structures and Algorithms II. The course

    Data_Structures_and_Algorithms - These notes accompany Data Structures and Algorithms II. The course, to a large extent, follows on from Data Structures and Algorithms I. However, while DS&A I focused on fundamental datastructures, DS&A II will focus on practical algorithms, applicable to a wide range of tasks. The approach will be somewhat less formal, with a little more focus on applications.

    標簽: Data_Structures_and_Algorithms Algorithms Structures accompany

    上傳時間: 2016-05-08

    上傳用戶:阿四AIR

  • Welcome to Beginning Algorithms, a step-by-step introduction to computing algorithms for the real wo

    Welcome to Beginning Algorithms, a step-by-step introduction to computing algorithms for the real world. Developers use algorithms and data structures every day of their working lives. Having a good understanding of these algorithms and knowledge of when to apply them is essential to producing software that not only works correctly, but also performs efficiently. This book aims to explain those algorithms and data structures most commonly encountered in day-today software development, while remaining at all times practical, concise, and to the point, with little or no verbiage to distract from the core concepts and examples.

    標簽: step-by-step introduction Algorithms algorithms

    上傳時間: 2016-05-08

    上傳用戶:wlcaption

  • This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseud

    This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseudo-random irregular low density parity check matrix is based on Radford M. Neal’s programs collection, which can be found in [1]. While Neal’s collection is well documented, in my opinion, C source codes are still overwhelming, especially if you are not knowledgeable in C language. My software is written for MATLAB, which is more readable than C. You may also want to refer to another MATLAB based LDPC source codes in [2], which has different flavor of code-writing style (in fact Arun has error in his log-likelihood decoder).

    標簽: LDPC introduction simulation software

    上傳時間: 2014-01-14

    上傳用戶:大融融rr

  • This demo shows the use of the PWM block in generating the pulse waveform whose duty cycle is changi

    This demo shows the use of the PWM block in generating the pulse waveform whose duty cycle is changing regularly. The PWM waveform period is variable, while the width of the pulse remains constant.

    標簽: the generating waveform changi

    上傳時間: 2014-01-15

    上傳用戶:kr770906

  • 詞法分析是編制一個讀單詞的過程

    詞法分析是編制一個讀單詞的過程,從輸入的源程序中,識別出各個具有獨立意義的單詞,即基本保留字、標識符、常數、運算符、分隔符五大類。并依次輸出各個單詞的內部編碼及單詞符號自身值。程序語言的單詞符號一般分為五種:關鍵字(保留字/基本字)if、while、begin…;標識符:常量名、變量名…;常數:34、56.78、true、‘a’、…;運算符:+、-、*、/、〈、and、or、….、;界限符:, ; ( ) { } /*…。

    標簽: 編制 過程

    上傳時間: 2016-05-31

    上傳用戶:417313137

  • Java Server Pages Examples code JavaServer Pages, Third Edition is completely revised and updated t

    Java Server Pages Examples code JavaServer Pages, Third Edition is completely revised and updated to cover the substantial changes in the 2.0 version of the JSP specification. JSP syntax and features and clear, useful examples, JavaServer Pages, Third Edition demonstrates how to embed server-side Java into Web pages, while also covering important topics such as JavaBeans, Enterprise JavaBeans (EJB), and JDBC database access. jsp Java Server Pages 配套源代碼 第3版

    標簽: Pages JavaServer completely Examples

    上傳時間: 2013-12-05

    上傳用戶:cc1915

  • This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseud

    This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseudo-random irregular low density parity check matrix is based on Radford M. Neal’s programs collection, which can be found in [1]. While Neal’s collection is well documented, in my opinion, C source codes are still overwhelming, especially if you are not knowledgeable in C language. My software is written for MATLAB, which is more readable than C. You may also want to refer to another MATLAB based LDPC source codes in [2], which has different flavor of code-writing style (in fact Arun has error in his log-likelihood decoder).

    標簽: LDPC introduction simulation software

    上傳時間: 2014-12-05

    上傳用戶:change0329

  • 構造一個簡單程序設計語言的詞法分析器

    構造一個簡單程序設計語言的詞法分析器,要求: 1) 含有保留字program, begin, end, var, integer, if, then, else, do, while. 2) 標識符和無符號的整常數,其中保留字和標識符不區分大小寫. 3) 含有界符和運算符如下:+,-, (, ), =, >, <, , :, :=.,,。 4) 輸出二元組。

    標簽: 程序設計語言 分析器

    上傳時間: 2014-01-04

    上傳用戶:離殤

  • DESProcess FILE *mfp,*cfp int ttch=0,xorRes,ttbitdiff=0 char mch,cch float bdiff=0 if

    DESProcess FILE *mfp,*cfp int ttch=0,xorRes,ttbitdiff=0 char mch,cch float bdiff=0 if((mfp=fopen(mfile,"r"))==NULL) {cout<<"Cannot open the file to compare"<<endl } if((cfp=fopen(cfile,"r"))==NULL) {cout<<"Cannot open the file to compare"<<endl } else { while(!feof(mfp)&!feof(cfp)) { ttch++ mch=fgetc(mfp) cch=fgetc(cfp) xorRes=mch^cch ttbitdiff+=(xorRes&1)+(xorRes&2)/2+(xorRes&4)/4+(xorRes&8)/8+(xorRes&16)/16+(xorRes&32)/32+(xorRes&64)/64+(xorRes&128)/128 } bdiff=float(ttbitdiff)*100/float(ttch*8) } *bitdiff8byte=float(ttbitdiff)*100/float(8*8) return bdiff

    標簽: DESProcess ttbitdiff xorRes bdiff

    上傳時間: 2016-07-02

    上傳用戶:1079836864

主站蜘蛛池模板: 乌什县| 新巴尔虎右旗| 治多县| 九龙县| 梁河县| 永福县| 玛沁县| 呼伦贝尔市| 丹江口市| 集贤县| 揭东县| 安义县| 平谷区| 都江堰市| 安塞县| 高青县| 武义县| 雅江县| 诸城市| 马关县| 穆棱市| 望奎县| 翁牛特旗| 汽车| 连江县| 丹江口市| 准格尔旗| 宝清县| 南漳县| 岳西县| 郎溪县| 佛教| 北川| 浙江省| 凤翔县| 桓台县| 泸溪县| 广西| 调兵山市| 刚察县| 玉门市|