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

源代码<b>比较器</b>

  • 宝贝一个

    宝贝一个,收藏有北航所有有关c8051基础实验的例程,包括adc dac 比较器 ,定时,spi,iic,定时,串口,中断等等。并已经过验证 强烈要求加80分以上

    标签:

    上传时间: 2015-10-03

    上传用户:ANRAN

  • 这是一个实现(8

    这是一个实现(8,8)归并的算法,即将两个含有八个元素的有序序列通过比较器归并成一个有序序列.

    标签:

    上传时间: 2013-12-23

    上传用户:极客

  • crc任意位生成多项式 任意位运算 自适应算法 循环冗余校验码(CRC

    crc任意位生成多项式 任意位运算 自适应算法 循环冗余校验码(CRC,Cyclic Redundancy Code)是采用多项式的 编码方式,这种方法把要发送的数据看成是一个多项式的系数 ,数据为bn-1bn-2…b1b0 (其中为0或1),则其对应的多项式为: bn-1Xn-1+bn-2Xn-2+…+b1X+b0 例如:数据“10010101”可以写为多项式 X7+X4+X2+1。 循环冗余校验CRC 循环冗余校验方法的原理如下: (1) 设要发送的数据对应的多项式为P(x)。 (2) 发送方和接收方约定一个生成多项式G(x),设该生成多项式 的最高次幂为r。 (3) 在数据块的末尾添加r个0,则其相对应的多项式为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)所对应的数据是在原数 据块的末尾加上余式所对应的数据得到的。 (6) 发送T(x)所对应的数据。 (7) 设接收端接收到的数据对应的多项式为T’(x),将T’(x)除以G(x) ,若余式为0,则认为没有错误,否则认为有错

    标签: crc CRC 多项式 位运算

    上传时间: 2014-01-16

    上传用户:hphh

  • 100个经典vhdl编程实例

    100个经典vhdl编程实例, 第1例 带控制端口的加法器 第2例 无控制端口的加法器 第3例 乘法器 第4例 比较器 第5例 二路选择器 第6例 寄存器 第7例 移位寄存器 第8例 综合单元库 第9例 七值逻辑与基本数据类型 第10例 函数 第11例 七值逻辑线或分辨函数 第12例 转换函数 第13例 左移函数 第14例 七值逻辑程序包 第15例 四输入多路器......

    标签: vhdl 100 编程实例

    上传时间: 2014-01-20

    上传用户:agent

  • 应用vhdl语言进行加法器的设计

    应用vhdl语言进行加法器的设计,比较器的设计,随着vhdl语言的应用越来越广泛,其重要性也更加明确。希望对大家有所帮助。

    标签: vhdl 语言 加法器

    上传时间: 2015-11-11

    上传用户:gut1234567

  • MSP430F20xx的汇编程序示例

    MSP430F20xx的汇编程序示例,包括定时器范例、比较器范例

    标签: 430F MSP 430 F20

    上传时间: 2015-11-18

    上传用户:aig85

  • MSP430F20xx的C语言开发范例

    MSP430F20xx的C语言开发范例,包括定时器范例、比较器范例

    标签: 430F MSP 430 F20

    上传时间: 2013-12-10

    上传用户:l254587896

  • 摘要:AD9852是美国ANALOGDEVICES公司生产的新型直接数字频率合成器(DDS)

    摘要:AD9852是美国ANALOGDEVICES公司生产的新型直接数字频率合成器(DDS),具有频率转换速度快(小于lt~s)、频谱纯度高、工作温度范围宽(一25℃~+85℃)、集成度高等特点,是一种使用方便灵活、功能较强的芯片。AD9852由带有48位相位累加的数控振荡器、可墒程参考时钟倍乘器、反向正弦滤波器、计数倍乘器、两个300MHz12住数模转换器、高速模拟比较器和接口逻辑组成。可用于本振合成回路,高精度时钟发生器和FSK//3PSK调制。文中介绍了AD9852的工作原理、引脚功能以厦具体应用。

    标签: ANALOGDEVICES 9852 DDS AD

    上传时间: 2015-11-30

    上传用户:kiklkook

  • C8051F310单片机应用程序

    C8051F310单片机应用程序,模拟量(电压)的采样,比较器,LCD显示,SPI通信,FRAM读写,温度测量程序,PCA捕捉,键盘扫描,USB与RS232转换实验等。

    标签: C8051F310 单片机 应用程序

    上传时间: 2015-12-05

    上传用户:zhouchang199

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery