CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 开根号

搜索资源列表

  1. mcukpfkssf

    1下载:
  2. 因为工作的需要,要在单片机上实现开根号的操作。目前开平方的方法大部分是用牛顿迭代法。我在查了一些资料以后找到了一个比牛顿迭代法更加快速的方法。不敢独享,介绍给大家,希望会有些帮助。
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:4.45kb
    • 提供者:gw
  1. Calculator

    0下载:
  2. 用C++编的完整的Calculator,有完整代码,可进行开根号,分数等运算。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:59.16kb
    • 提供者:your
  1. circle

    0下载:
  2. 单片机乘法,开根号,算出圆的轨迹 并驱动两个步进电机实现悬挂物圆周运动
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:3.39kb
    • 提供者:吴金福
  1. Quantify.rar

    0下载:
  2. 发送端采用严格的开根号升余弦滤波器,而发送端采用进行过量化处理的开根号升余弦滤波器,仿真量化处理对系统性能的影响,Sender strict roots and raised cosine filter, while the sender had used for the quantification of the roots and raised cosine filter, simulation, quantification of the impact on system performa
  3. 所属分类:matlab

    • 发布日期:2016-01-25
    • 文件大小:153.85kb
    • 提供者:阿飞
  1. sqrt32

    0下载:
  2. verilog源代码,用于开根号计算(32位)-sqrt32.v sqrt of 32-bit integer, Verilog source
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-03-29
    • 文件大小:3.66kb
    • 提供者:杨明
  1. jieduan_lianghua

    0下载:
  2. 分析了截短对升余弦信号频谱的影响; 以及量化对升余弦信号及开根号升余弦信号频谱的影响。包含仿真报告。 -Analysis of the truncated raised cosine signal spectrum of the impact and quantified on or open the root cosine signal and cosine signal spectrum or its impact. The report contains the simulati
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:117.7kb
    • 提供者:caomin
  1. longint_sqrt

    0下载:
  2. 32位长整型开方函数,可将32位长整型数开根号得到16位整型数-32-bit long integer square root function can be 32-bit long integer square root to get 16-bit integer
  3. 所属分类:SCM

    • 发布日期:2017-04-01
    • 文件大小:532byte
    • 提供者:周明旭
  1. MCUKAIFANG

    0下载:
  2. 因为工作的需要,要在单片机上实现开根号的操作。目前开平方的方法大部分是用牛顿迭代法。我在查了一些资料以后找到了一个比牛顿迭代法更加快速的方法。不敢独享,介绍给大家,希望会有些帮助。-Because the needs of work, to achieve single-chip open radical operation. Square root of the current methods are mostly used Newton iteration. I checked some i
  3. 所属分类:SCM

    • 发布日期:2017-04-09
    • 文件大小:1.7kb
    • 提供者:zhongxinyu
  1. pso

    2下载:
  2. 程序说明: jblzq.m为基本粒子群程序求函数的最大值 lzq2.m是惯性权重法求函数的最大值 lzq3.m是惯性权重法求函数最小值。当然也可以用lzq2.m实现,在函数前加个负号 lzq4.m是收敛因子法求函数最小值 lzq5.m是带变异的惯性权重法求最大值,变异条件比较简单,变异次数多。还有一种变异是利用各粒的最优位置与全局最优位置的差的平方和,再开根号的值小于某一值最为收敛条件,将在我的报告中叙述 lzq6.m是分层粒子群优化算法,即利用两个粒子群同时进行搜索,一
  3. 所属分类:Algorithm

    • 发布日期:2016-12-22
    • 文件大小:6.76kb
    • 提供者:沈龙
  1. testrc

    0下载:
  2. 套用公式 计算电阻电容的值 I1 = U / R + j2πfCU I2 = U / R + Kj2πfCU IR = U / R = ((K^2 *I1^2-I2^2)/(K^2-1))开根号 C=(I2-I1)/(4Pi*U)-Apply the formula to calculate the value of resistance and capacitance I1 = U/R+ j2πfCU I2 = U/R+ Kj2πfCU IR = U/R =
  3. 所属分类:Algorithm

    • 发布日期:2017-03-22
    • 文件大小:1.13kb
    • 提供者:王振丰
  1. PiCalculator

    0下载:
  2. 这个算法是平方收敛的(每次迭代有效位数增加一倍), 这样要求到Q位有效数字,就至少要log2Q+1次迭代 显然,这种计算是要高精度表示的, 我所用的算法就是普通的高精度加减乘除 加减是O(n)的,时间花费很少。 乘除是O(n2)的,主要的时间花费都在这上面。 而由这个算法中可以看到,bn的计算需要开根号。 这里有两种开根号的办法: ①用初中教我们的方法,每次开两位根号,用除法减掉, 这样所需时间为n2·n/2=O(n3),不可忍受! ②用牛顿迭
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:44.01kb
    • 提供者:joyeep
  1. timings

    0下载:
  2. 本程序计算1到10000的开根号通过三种不同方法所需要的时间-The program calculates the 1 to 10,000 square root of three different methods by the time required
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:576byte
    • 提供者:anode2009
  1. mega16

    0下载:
  2. avr单片机的定时器、开根号程序、相位pwm、快速pwm等代码-avr pwm、usart and so on
  3. 所属分类:SCM

    • 发布日期:2017-04-13
    • 文件大小:2.77kb
    • 提供者:shaohj
  1. ybndjl

    0下载:
  2. 模仿windowsxp的一个简单计算器。只实现了基本的四则运算和取反,取百分比,开根号,取倒数。以及连续运算。-Windowsxp imitate a simple calculator. Only achieve the basic arithmetic and inverted, to take a percentage, square root, take the reciprocal. And continuous operation.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:7.95kb
    • 提供者:杨波
  1. qwerty

    0下载:
  2. 自定义开根号 非牛顿迭代法 能快速计算 有一些局限性-Custom roots and non-Newton method to quickly calculate some limitations
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:42.09kb
    • 提供者:xkm
  1. caculator

    0下载:
  2. 用Visual C++ 编写的一个计算器程序。功能包括一般的四则运算、平方、立方、开根号及整数转换为二进制、八进制、十六进制等。-Visual C++ to write a calculator program. Features include four operations in general, quadratic, cubic, square root and the integer is converted to binary, octal, hexadecimal.
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-12
    • 文件大小:2.88mb
    • 提供者:
  1. dll-computer

    0下载:
  2. 用动态连接库实现的vc计算机小程序,其中包括加减乘除取余,开根号等-use dynamic dll to implement the program about computer application
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-10
    • 文件大小:2.2mb
    • 提供者:刘亚春
  1. test

    0下载:
  2. 基于cordic算法的VERILOG HDL的设计,仿真和验证都正确,是一个开根号的算法。-cordic, verilog
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-17
    • 文件大小:490.78kb
    • 提供者:wangding
  1. calculator

    0下载:
  2. 计算器,能够实现类似XP下计算器的功能,加减乘除开根号一系列功能-Calculator, calculator functions like XP Math square root of a series of functions
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:56.18kb
    • 提供者:陆婷
  1. calculator_6

    0下载:
  2. 能实现基本的加减乘除运算,和开根号,报错 及类
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:69.39kb
    • 提供者:陈聪聪
« 12 »
搜珍网 www.dssz.com