搜索资源列表
玫瑰线
- 汇编语言,完成至少4种玫瑰线 的作图,图形可参见数学手册(可以用定点运算;建议采用浮点运算)。-compiled language, the completion of at least four types of roses line drawing, graphics can be found in mathematics Manual (Operators can use sentinel; Proposed floating-p
玫瑰曲线
- 至少4种玫瑰线 的作图,图形可参见数学手册(可以用定点运算;建议采用浮点运算)。其中的a、n、φ参数可修改-at least four species of roses line drawing, graphics can be found in mathematics Manual (Operators can use sentinel; Proposed floating-point operations). The a, n,
26104-510_ANSI_C_source_code
- 最新跨平台的amr音频压缩库,不是使用定点运算的-latest cross-platform amr audio compression library, instead of using fixed-point operations
ccmulVHDL
- vhdl语言编写的复数乘法运算器原代码,采用定点运算,并将复数乘法转为实数运算。-VHDL language in the plural multiplication with the original code using fixed-point computation. will the plural multiplication to real operations.
26073-410_ANSI-C_source_code
- 基本定点运算程序库,语音编码或DSP定点实现-basic sentinel Operational procedures for speech coding fixed-point DSP to achieve or
2400 bps MELP语音编解码器_fixpoint.tar
- 2400 bps MELP语音编解码器 定点运算算法-2400 bps MELP speech codec algorithm sentinel Operational
定点运算器
- 实现二进制定点运算: 1.定点整数补码加法 2.定点整数补码减法 3.定点小数Booth补码一位乘法 4.定点小数原码一位除法(加减交替法) 5.定点小数补码一位除法(加减交替法) 6.定点小数原码一位乘法 7.定点小数原码两位乘法 8.定点整数原码乘法 9.定点整数原码除法-achieve binary fixed point operations : 1. Sentinel integra
玫瑰曲线
- 至少4种玫瑰线 的作图,图形可参见数学手册(可以用定点运算;建议采用浮点运算)。其中的a、n、φ参数可修改-at least four species of roses line drawing, graphics can be found in mathematics Manual (Operators can use sentinel; Proposed floating-point operations). The a, n,
26073-410_ANSI-C_source_code
- 基本定点运算程序库,语音编码或DSP定点实现-basic sentinel Operational procedures for speech coding fixed-point DSP to achieve or
MCS-51danpianjishiyongzichengxu
- MCS-51单片机实用子程序库 (一) MCS-51定点运算子程序库及其使用说明 (二) MCS-51 浮点运算子程序库及其使用说明-MCS-51 microcontroller practical subroutine library (1) MCS-51-point computation and use of the subroutine (2) MCS-51 floating-point operations and
DSPfixedpoint
- DSP定点运算,主要说明定点的运算,以及在DSP芯片中的应用-DSP-point computation, mainly provides fixed-point arithmetic, and the DSP chip in the application
dsp-fixed-point-computation
- 该文档主要讲述dsp芯片中进行定点运算所设计的基本问题,分别介绍了定标、从浮点到定点的运算,定点的快速运算及其实现。文档中举出大量的例子说明,相信下载阅读后肯定会很有收获。-the document focuses on the dsp chip sentinel operation designed the basic problem introduced calibration, from floating-point to fix
51
- 51单片机子程序 定点运算子程序库 浮点运算子程序库-51 single-chip fixed-point computation subroutine subroutine library subroutine library floating-point operations
float
- 计算机组成原理课程设计,定点运算仿真浮点运算。-Principles of Computer Organization curriculum design, fixed-point simulation computing floating-point operations.
111000111000
- 计算机组成原理 .有试验报告 程序可以完成由定点运算实现浮点运算,根据用户的输入和运算符的选择进行相应的操作,并能对用户的错误输入给出提示信息,并且在用户选择连续操作时可以无需重启程序,多次连续运算。有该程序可以方便地实现加、减、乘、除操作,并且如果想加入新的操作也十分方便(程序是分模快设计的应而可以很方便地实现功能的扩充);同时程序的各个功能部分都给出了详细的注释,清晰易懂,方便修改、增进-Principles of Computer
dingtofu
- 小数在计算机内有两种表现形式定点数和浮点数。在定点机中,由于小数点的位置固定不变,以此当机器处理的数不是纯小数或纯整数的时候,必须乘上一个比例因子,否则会产生“溢出”。而实际上计算机处理的数不一定是纯小数或纯整数,而且有些数据的数值范围相差很大,不能直接用定点小数或定点整数表示,必须用浮点数来表示。浮点数的表示精度要比定点数高的多。要求用定点运算来仿真浮点运算,用定点数运算的思想去实现浮点数的运算。-Decimals in the co
MCS51
- MCS51的多字节定点运算子程序库,适合小系统特殊应用,效果不错。-MCS51 of multi-byte fixed-point computing subroutine library, suitable for small systems for special applications, good results.
FFT32_LIB
- 在TMS320F2812上做的32点傅立叶算法(定点运算)。-TMS320F2812 make up at the 32-point Fourier algorithm (fixed-point computation).
DSP
- DSP芯片的定点运算,DSP芯片的定点运算 -sssssss
eetop.cn_利用FPGA实现浮点运算的verilog代码
- 计算机里整数和小数形式就是按普通格式进行存储,例如1024、3.1415926等等,这个没什么特点,但是这样的数精度不高,表达也不够全面,为了能够有一种数的通用表示法,就发明了浮点数。 浮点数的表示形式有点像科学计数法(*.*****×10^***),它的表示形式是0.*****×10^***,在计算机中的形式为 .***** e ±***),其中前面的星号代表定点小数,也就是整数部分为0的纯小数,后面的指数部分是定点整数。利用这样的