搜索资源列表
整数和浮点数的计算
- 实现整数和浮点数的加,减,乘,除计算-achieve the integer and floating-point, plus or minus, multiplication and calculation
浮点数的运算方法
- 清华计算机组成原理电子教案:浮点数的运算方法-Tsinghua Computer electronic templates Principle : floating point arithmetic method
浮点数的格式和运算
- 详细介绍了浮点数的各种格式,以及运算
浮点数库(精确浮点数运算)
- 支持精确表示浮点数和浮点数的精确运算。
单双精度浮点数的IEEE标准格式
- 单双精度浮点数的IEEE标准格式
verilog32位浮点数乘法器
- 采用verilog写的32位浮点数乘法器,组合电路,只需要一个时钟周期就可完成运算
浮点数和单精度数互换
- Labview的浮点数和单精度数互换VI。
FloatEdit_demo
- 浮点数输入编辑框-The edit which can accept float input
average
- 这个程序对于输入的一系列浮点数,求出其平均值 M,方差 S^2,标准差 S-procedures for the importation of a series of float, derived average M, S ^ 2 variance, standard deviation S
二进制转化十六进制浮点数
- 我用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 progr
整数和浮点数的计算
- 实现整数和浮点数的加,减,乘,除计算-achieve the integer and floating-point, plus or minus, multiplication and calculation
MCS51浮点计算程序
- 51单片机浮点数运算子程序及IEEE和51浮点数相互转换程序 -51 floating-point operations and subroutine IEEE floating point and 51 mutual conversion
浮点数的运算方法
- 清华计算机组成原理电子教案:浮点数的运算方法-Tsinghua Computer electronic templates Principle : floating point arithmetic method
delphi3-4
- 3字节4字节浮点数转换程序,用来解释单片机的浮点数-3 bytes 4 bytes float switching procedures used to explain SCM float
输出浮点数四字节内容
- 输出浮点数四字节的内容,将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)
浮点数转换四字节16进制工具
- 浮点数转换四字节16进制工具,非常实用的一款工具,是程序开发人员的必备工具。(Floating point conversion four byte 16 hexadecimal tool)
浮点数计算器
- 将浮点数变换成16进制形式,并可互转。工具软件,方便编写程序时核对结果。(Transform the floating point number into a hexadecimal form and interconvert. Tool software, easy to write the program to check the results.)
基于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, subtract
浮点数运算
- 浮点数的表示与算术运算算法分析,要求理论推导与程序模拟。 算术运算包括字符串到浮点数、浮点数到字符串的转换,加、减、乘、除四则运算等。要有说明文档,包括算法证明、程序框图、使用方法、特殊处理(溢出、数位扩展)、实例分析等等。字符串转换可能稍难。 typedef unsigned int dwrd; #32-bit char* ftoa(dwrd); dwrd atof(char*); dwrd fadd(dwrd, dwrd)