虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

a<b>DM</b>in

  • Auditory Simulation Development Computing System version 1.5.2, is based upon a unified re-interp

    Auditory Simulation Development Computing System version 1.5.2, is based upon a unified re-interpretation in ANSI C of code

    标签: Development Simulation Computing re-interp

    上传时间: 2016-08-29

    上传用户:坏天使kk

  • Auditory Simulation Development Computing System(unix) version 1.5.2, is based upon a unified re-

    Auditory Simulation Development Computing System(unix) version 1.5.2, is based upon a unified re-interpretation in ANSI C of code

    标签: Development Simulation Computing Auditory

    上传时间: 2014-01-09

    上传用户:zaizaibang

  • The purpose of this document is to present how to use the Timer for the generation of a PWM signal t

    The purpose of this document is to present how to use the Timer for the generation of a PWM signal tunable in frequency and duty cycle. As an application example, this document is based on a basic “music” synthesizer through an external buzzer. Example code is also available in the it.

    标签: generation the document purpose

    上传时间: 2013-12-20

    上传用户:z754970244

  • This a simple database management system. It doesn t use any other code (i.e. ODBC, ADO, etc.) and h

    This a simple database management system. It doesn t use any other code (i.e. ODBC, ADO, etc.) and has it s own database file format. I wrote it because I found the other DBMSs code too bulky and hard to debug. It s designed for small applications and I doubt it could handle anything on a large scale. A sample program included in the .zip shows how everything works. The database project is a library project, so you ll have to compile and link with the .lib file to get everything working. Pros: - You have the source code so you know exactly what it is doing - Database files are very small - Small and fast code Cons: - Can t handle large amounts of records (more than 65000ish) - Doesn t support SQL (you have to search the database by cycling through the records and testing them against your constraints) - Each database file can only have one table.

    标签: i.e. management database simple

    上传时间: 2016-10-02

    上传用户:851197153

  • 1、该PERIPHERAL文件夹包含五个有关系统外设的程序:DEC5502_USB、DEC5502_LED和DEC5502_UART程序。 2、DEC5502_USB程序主要实现了与PC机应用程

    1、该PERIPHERAL文件夹包含五个有关系统外设的程序:DEC5502_USB、DEC5502_LED和DEC5502_UART程序。 2、DEC5502_USB程序主要实现了与PC机应用程序之间的USB通讯,并根据PC机传来的指令进行相应的动作。 3、DEC5502_UART程序主要完成了利用外扩UART(A通路和B通路)与PC机进行数据的发送和接收操作。 4、DEC5502_LED程序通过配置系统定时器和系统中断来控制指示灯D5和D1,并且通过D5和D1是否交替闪烁来达到测试系统定时器和系统中断的目的。 5、DE5502_SDRAM与EMIF有关的测试程序。对他们的访问成功与否主要取决于对EMIF接口的配置,测试程序配置时设为最为可靠的方式,用户可以根据相应的技术文档来对EMIF进行重新配置,从而提高访问外扩存储器的速度。

    标签: 5502 DEC PERIPHERAL USB

    上传时间: 2014-01-05

    上传用户:曹云鹏

  • public void playerUpdate(final Player p, final String event, final Object eventData) { // queue a

    public void playerUpdate(final Player p, final String event, final Object eventData) { // queue a call to updateEvent in the user interface event queue Display display = Display.getDisplay(midlet) display.callSerially(new Runnable() { public void run() { DRMPlayer.this.updateEvent(p, event, eventData) } }) }

    标签: final playerUpdate eventData public

    上传时间: 2013-12-18

    上传用户:1109003457

  • These instances, whenmapped to an N-dimensional space, represent a core set that can be used to con

    These instances, whenmapped to an N-dimensional space, represent a core set that can be used to construct an approximation to theminimumenclosing ball. Solving the SVMlearning problem on these core sets can produce a good approximation solution in very fast speed. For example, the core-vector machine [81] thus produced can learn an SVM for millions of data in seconds.

    标签: N-dimensional whenmapped instances represent

    上传时间: 2016-11-23

    上传用户:lixinxiang

  • This book is designed to teach you the best practices in developing Windows DNA applications. We ha

    This book is designed to teach you the best practices in developing Windows DNA applications. We have avoided making this book a primer on every technology associated with Windows DNA. If we had followed this course, this would be an encyclopedia set. Everyone has their favorite authors and books on the various technical subject areas. The market is full of books to teach you the basics, the how, this book tries to be different in that we pull out the important points to teach you about the why. If you need training in a particular technology covered in this book, Sams has a number of 24-hour and 21-day books that cover a wide range of topics.

    标签: applications developing practices designed

    上传时间: 2016-11-27

    上传用户:yyq123456789

  • 本题要完成的是一组简单C表达的运算。所有表达式存放在文件 CExpression.txt 中

    本题要完成的是一组简单C表达的运算。所有表达式存放在文件 CExpression.txt 中,每个表达式一行。每行的长度不会超过80个字符。文件最后有一个空行表示结束。 每个表达式,只包含简单的整数变量和限定的一些操作符,表达式中没有常量。总共有26个可能出现在表达式中的变量,分别命名为 a,b,...,z。每个变量最多出现一次。26个变量的初值分别为1,2,...,26。 表达式中的操作符,包括:两个二元操作符 +, -,表示加,减运算。例如,表达式a+c-d+b(即1+3-4+2)的结果为2。 单独一个-号不能放在变量前面,表示负数。 表达式中还包含两个一元运算符:++,--,表示加一和减一运算。它们既可以出现在一个变量的前面、也可以出现在后面。如果出现在变量前面,则表示先对变量进行加一/减一运算,然后变量值参与表达式计算。如果出现在变量后面,则表示变量的原值参与表达式计算,表达式计算完之后,变量值加一/减一。 例如,表达式 -- c + b-- 的结果为 4, 表达式计算完之后, b,c的值分别为1,2 输出格式要求:输出直接显示在屏幕上。对于每个表达式,第一行输出表达式的内容。第二行输出表达式的值,后面几行输出参与运算的各个变量的结果值。

    标签: CExpression txt 运算 表达式

    上传时间: 2017-01-17

    上传用户:cjf0304

  • 汉诺塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation

    汉诺塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C

    标签: the animation Simulate movement

    上传时间: 2017-02-11

    上传用户:waizhang