搜索资源列表
用定点DSP处理器实现浮点DSP仿真
- BIOS 的开发步骤 DSP TMS320F2812用定点DSP处理器实现浮点DSP仿真-BIOS development steps TMS320F2812 DSP using fixed-point DSP processor for floating point DSP Simulation
2400 bps MELP语音编解码器浮点算法
- 2400 bps MELP语音编解码器浮点算法,一种高压缩比的另类语音压缩算法,可以供学习和开发借鉴使用-MELP 2400 bps voice codecs floating-point algorithm, a high compression ratio of alternative voice compression algorithm, for learning and development from the use of
用VHDL语言在CPLD_FPGA上实现浮点运算
- 用VHDL语言在CPLD/FPGA上实现浮点运算的方法-in VHDL CPLD / FPGA achieve floating-point computation methods
二进制转化十六进制浮点数
- 我用VC写的十进制与十六进制数的转化程序,绝对独创,可用于需要浮点运算的单片机编程数值转化。-I write with VC metric hexadecimal number and the conversion process, absolutely original and the need for the floating-point operations into numerical microcontroller programming.
北京浮生计
- 游戏\\北京浮生计-game \\ Beijing or coaching
整数和浮点数的计算
- 实现整数和浮点数的加,减,乘,除计算-achieve the integer and floating-point, plus or minus, multiplication and calculation
verilog32位浮点数乘法器
- 采用verilog写的32位浮点数乘法器,组合电路,只需要一个时钟周期就可完成运算
51浮点运算程序库
- MCS-51 浮点运算子程序库及其使用说明 本浮点子程序库有三个不同层次的版本,以便适应不同的应用场合: 1.小型库(FQ51A.ASM):只包含浮点加、减、乘、除子程序。 2.中型库(FQ51B.ASM):在小型库的基础上再增加绝对值、倒数、比较、平方、开平方、 数制转换等子程序。 3.大型库(FQ51.ASM):包含本说明书中的全部子程序。
浮点数和单精度数互换
- Labview的浮点数和单精度数互换VI。
S7-200双精度浮点数转单精度浮点数
- S7-200双精度浮点数转单精度浮点数转换
输出浮点数四字节内容
- 输出浮点数四字节的内容,将32位浮点数以四字节的形式输出(Output four bytes of floating number)
浮点数转10进制数
- 采集数据时,某些设备是以浮点数的形式显示的,本程序可以把浮点数转换成十进制数(When data is collected, some devices are displayed in the form of floating numbers, and this program converts decimal numbers into decimal numbers)
浮点数加法ip
- 这是两个浮点数实现加法的ip,用于硬件描述语言。这是组内做机器人项目时自己编写使用的。
浮点数转换四字节16进制工具
- 浮点数转换四字节16进制工具,非常实用的一款工具,是程序开发人员的必备工具。(Floating point conversion four byte 16 hexadecimal tool)
浮翠流丹
- 稳定支持使命召唤的连点器,支持绝地求生,H1Z1,codol等游戏,浮翠流丹连点器(Stable support for mission calls, support for Jedi survival, H1Z1, codol and other games)
浮点
- DSP 浮点运算很好的例程................(DSP very good sample for DSp 28335 of fpu)
浮点数计算器
- 将浮点数变换成16进制形式,并可互转。工具软件,方便编写程序时核对结果。(Transform the floating point number into a hexadecimal form and interconvert. Tool software, easy to write the program to check the results.)
eetop.cn_利用FPGA实现浮点运算的verilog代码
- 计算机里整数和小数形式就是按普通格式进行存储,例如1024、3.1415926等等,这个没什么特点,但是这样的数精度不高,表达也不够全面,为了能够有一种数的通用表示法,就发明了浮点数。 浮点数的表示形式有点像科学计数法(*.*****×10^***),它的表示形式是0.*****×10^***,在计算机中的形式为 .***** e ±***),其中前面的星号代表定点小数,也就是整数部分为0的纯小数,后面的指数部分是定点整数。利用这样的形式就能表示出任意一个整数和小数,例如1024就能表示成0.
基于FPGA的单精度浮点数乘法器设计
- 《基于FPGA的单精度浮点数乘法器设计》详细介绍了按照IEEE754标准在FPGA上实现单精度浮点加减乘除的方法(The design of single precision floating point multiplier based on FPGA introduces in detail the way of realizing single precision floating point addition, subtraction and multiplication and div
浮点数运算
- 浮点数的表示与算术运算算法分析,要求理论推导与程序模拟。 算术运算包括字符串到浮点数、浮点数到字符串的转换,加、减、乘、除四则运算等。要有说明文档,包括算法证明、程序框图、使用方法、特殊处理(溢出、数位扩展)、实例分析等等。字符串转换可能稍难。 typedef unsigned int dwrd; #32-bit char* ftoa(dwrd); dwrd atof(char*); dwrd fadd(dwrd, dwrd); dwrd fsub(dwrd, dwrd); dwr