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

%E7%94%B5%E6%BA%90%E7%AE%A1%E7%90%86

  • 电池设计的充电器 Device : AT90S2333 File name : BC.c Ver nr. : 1.0 Description : Standalone Ba

    电池设计的充电器 Device : AT90S2333 File name : BC.c Ver nr. : 1.0 Description : Standalone Battery Charger with AT90S2333 (main program) Compiler : IAR icca90 Author : Asmund Saetre / Terje Frostad / Dietmar Koenig Change log : 02.02.2000 Changed to fit Battery Charger refrence design board AS 18.02.2000 Final test and review AS

    标签: Description Standalone Device S2333

    上传时间: 2014-01-23

    上传用户:ruixue198909

  • paperport9.0破解补丁

    paperport9.0破解补丁,paperport9.0是一个很好的商用办公软件,但是一种商用软件,试用版只有90天,特提供此破解不定,希望有用

    标签: paperport 9.0 破解 补丁

    上传时间: 2013-12-22

    上传用户:JasonC

  • 设计一个程序

    设计一个程序,统计一个班(最多有35人)的学生成绩,要求能实现如下五个功能: ①由键盘输入每个学生的学号和四门课程的成绩。 ②计算每个学生的平均分和总分。 ③按总分从高到低排出名次,并按名次输出每个学生的情况,包括:学号、各科成绩、 平均分和总分。 ④根据用户要求输出某门课程(由键盘输入课程号)成绩在90分以上(含90分)且总在前五名的学生情况,包括:学号、各科成绩、平均分和总分。 ⑤将排好序的学生数据写到磁盘文件“stud.dat”中去。 具体要求如下: ①每个功能为一个独立的函数。 ②所有的输入之前都要有提示。

    标签: 程序

    上传时间: 2013-12-15

    上传用户:朗朗乾坤

  • 传真相公资料

    传真相公资料,基于VOIPIP语音技术。V.34和V.90调制解调器指南

    标签: 传真

    上传时间: 2013-11-29

    上传用户:梧桐

  •   该工作表中最关键的是C8单元格中的内容

      该工作表中最关键的是C8单元格中的内容,其内容是计算股票收益的公式:     =F7*(1-B3-B4)-F3*(1+B3+B4)-F5+F6-(SIGN(F3)+SIGN(F7))*(B5+B6+B7)     其中B3和B4分别是印花税和手续费,F7*(1-B3-B4)为卖出股票的收益(已扣除印花税和手续费);F3*(1+B3+B4)为买入股票的支出(含印花税和手续费);F5为配股的支出;F6为派息的收益;最后一项(SIGN(F3)+SIGN(F7))*(B5+B6+B7)为委托费、成交费和通信费,其中SIGN函数为符号函数,当F3或F7大于0时值为1,等于0时值为0。     利用该计算器,只要输入买入和卖出股票的价格、数量,以及送、配股和派息数据,即可立刻计算出相应的收益。

    标签: nbsp

    上传时间: 2013-12-09

    上传用户:wys0120

  • Basic Compression Library by Marcus Geelnard Release 1.2.0 2006-07-22 Introduction The Ba

    Basic Compression Library by Marcus Geelnard Release 1.2.0 2006-07-22 Introduction The Basic Compression Library is a library of well known compression algorithms implemented in portable ANSI C code. For more information about the Basic Compression Library, please read the manual (doc/manual.pdf) and, of course, the source code.

    标签: Introduction Compression Geelnard Library

    上传时间: 2015-10-06

    上传用户:

  • A general technique for the recovery of signi cant image features is presented. The technique is ba

    A general technique for the recovery of signi cant image features is presented. The technique is based on the mean shift algorithm, a simple nonparametric pro- cedure for estimating density gradients. Drawbacks of the current methods (including robust clustering) are avoided. Feature space of any nature can be processed, and as an example, color image segmentation is dis- cussed. The segmentation is completely autonomous, only its class is chosen by the user. Thus, the same program can produce a high quality edge image, or pro- vide, by extracting all the signi cant colors, a prepro- cessor for content-based query systems. A 512  512 color image is analyzed in less than 10 seconds on a standard workstation. Gray level images are handled as color images having only the lightness coordinate

    标签: technique presented features recovery

    上传时间: 2015-10-14

    上传用户:410805624

  • This file is used to simulate performance of the FMT system with different modulation method in ba

    This file is used to simulate performance of the FMT system with different modulation method in baseband。(该程序主要实现FMT系统差分编码下基带误码率分析!)

    标签: performance modulation different simulate

    上传时间: 2013-12-27

    上传用户:1427796291

  • This a simple hardware UART test program. It receives text lines over the serial port and writes ba

    This a simple hardware UART test program. It receives text lines over the serial port and writes back a status msg with length and contents of the buffer.

    标签: hardware receives program simple

    上传时间: 2015-10-19

    上传用户:xlcky

  • 为了方便网络编程

    为了方便网络编程,90年代初,由Microsoft联合了其他几家公司共同制定了一套WINDOWS下的网络编程接口,即Windows Sockets规范,它不是一种网络协议,而是一套开放的、支持多种协议的Windows下的网络编程接口。本篇论文主要是介绍了在TCP/IP基础上利用winsock2对网卡进行编程,以达到网络流量监测的目的。论文首先介绍了TCP/IP协议,旨在介绍IP,TCP,UDP等比较重要的协议。主要是介绍IP头,TCP头,UDP头的特点,以便从IP头中可以获取源地址,目的地址,协议类型等信息。在随后的章节中提出了Socket的概念,Socket实际上提供了一个通信端口使所有拥有Socket的端口的计算机之间能够相互通信,在本论文中主要说明了socket的建立,监听和撤销的过程。具体到程序实现中,对网卡混杂模式的设置是通过原始套接字(raw socket)来实现的。为了让原始套接字能接受所有的数据,还需要通过将SOCK_RAW设置成SIO_RCVALL。对数据包的获取通过recv()函数来完成。最后要完成的工作就是对所捕获的IP数据包进行分析以提取出我们所需要的信息。在论文的最后是旨在说明进一步工作的展开. 关键词:网络流量测量 TCP/IP协议 WINSOCK编程

    标签: 网络编程

    上传时间: 2013-12-13

    上传用户:windwolf2000