CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - sqrt

搜索资源列表

  1. kitty

    2下载:
  2. 一. 追踪模型 以(x , y)代表飞机的坐标,v代表飞机的速度;以(X ,Y)代表导弹的坐标,u代表导弹的速度。 由于导弹时刻指向飞机,故有 dY/dX=(y-Y)/(x-X) 记k=u/sqrt((y-Y)*(y-Y)+(x-X)*(x-X)) 则有 dY/dt=k(y-Y) dX/dt=k(x-X) 故有叠代方程 Y=Y+k*(y-Y)*dt X=X+k*(x-X)*dt (程序中以t代dt) 程序中第一个for循环代表发射导弹打飞机,第二个
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:803byte
    • 提供者:白小欣
  1. 05041062

    0下载:
  2. 1.产生(0-1)分布随机数的方法:z i =(16807zi-1 +1)mod(pow(2,32)).被主函数调用. 2.产生U(0-1)分布利用公式:x1=sqrt(-2lnU1)cos(2PiU2), x2=sqrt(-2lnU1)sin(2PiU2) 3.产生瑞利分布,用两个独立同分布的正态分布值,用公式 x= sqrt(Y1*Y1+Y2*Y2)产生瑞利随机数. 4泊松分布-1. 20 (0-1) random number distribution methods : i
  3. 所属分类:通讯编程

    • 发布日期:2008-10-13
    • 文件大小:51.58kb
    • 提供者:吕军红
  1. 算术表达式解析器

    0下载:
  2. 此算术表达式能够在程序运行时根据输入的变量大小和算术表达式动态解析表达式,得到运算结果。支持多项算术运算符和数学函数如下:: + - * / ^ ( ) mod abs, atan, cos, exp, ln, round, sin, sqrt, sqr, trunc 例如设定a1和a2的大小,就可计算下列表达式: exp(sin(a1)*cos(a2))操作系统: Visual C++语言 -this arithmetic expression in accordance with the p
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:48.39kb
    • 提供者:曲贵增
  1. math

    0下载:
  2. 判断101-200之间有多少个素数,并输出所有素数。 1.程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除,       则表明此数不是素数,反之是素数。
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:2.59kb
    • 提供者:雷中科
  1. invsqrt

    0下载:
  2. 一個加速1/sqrt 運\算的方法啊
  3. 所属分类:GDI/图象编程

    • 发布日期:2008-10-13
    • 文件大小:2.11kb
    • 提供者:johnliao
  1. panduansushu

    0下载:
  2. 题目:判断101-200之间有多少个素数,并输出所有素数。 1.程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除,        则表明此数不是素数,反之是素数。
  3. 所属分类:C#编程

    • 发布日期:2014-01-17
    • 文件大小:1.17kb
    • 提供者:huhaibin
  1. MultithreadMathServer

    0下载:
  2. Using client-server architecture, write a multi-threaded server which returns results of mathematical functions such as sqrt(x),sin(x), cos(x), tan(x), etc. and a companion client to invoke these functionalities from a remote machine.
  3. 所属分类:ActiveX/DCOM

    • 发布日期:2008-10-13
    • 文件大小:2.09kb
    • 提供者:Li xiaoteng
  1. sqrt

    0下载:
  2. 排序算法,,可以参考一下,,以前写过的
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:3.21kb
    • 提供者:金今哲
  1. 4441

    0下载:
  2. 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) > t=t+x(i)*x(i) > end > c=sqrt(t/(m*n-1)) function c=myfunction(x) [m,n]=size(x) t=0 for i=1:m for j=1:n t=
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:318.87kb
    • 提供者:bingyu
  1. 1111

    0下载:
  2. 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) > t=t+x(i)*x(i) > end > c=sqrt(t/(m*n-1)) function c=myfunction(x) [m,n]=size(x) t=0 for i=1:m for j=1:n t=
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:88.56kb
    • 提供者:bingyu
  1. ellipse

    0下载:
  2. Compute nearest points to ellipse 椭圆逼近 phi = ellipse_phi (X, a, b, phi{}, myeps{sqrt(myeps)}) compute angles for nearest points on ellipse to given points X
  3. 所属分类:ActiveX/DCOM

    • 发布日期:2008-10-13
    • 文件大小:2kb
    • 提供者:jennifer
  1. 3

    0下载:
  2. 表达式解析源代码 对于包含有函数sin、cos、tan、cot、sqrt、asin、acos、atan、log,和运算符+(加)、-(减)、*(乘)、/(除)与^(幂次)的字符串进行解析。可以解析出变量名,由用户赋值然后求表达式的值。 -Parsing the source code for the expression contains a function, sin, cos, tan, cot, sqrt, asin, acos, atan, log, and operators
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-24
    • 文件大小:45.32kb
    • 提供者:how
  1. GenerateTable

    0下载:
  2. 简单程序制作出Sqrt,sine,以及cosine 表,便于读取-Easy process to produce Sqrt, sine, and cosine tables, easy to read
  3. 所属分类:File Operate

    • 发布日期:2017-05-03
    • 文件大小:604.65kb
    • 提供者:George
  1. Example_Sqrt

    0下载:
  2. 比库函数快得多的开平法算法,摘自鬼佬代码-A last sqrt algorithm , better than the standard lib
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:556byte
    • 提供者:lin hua shang
  1. ComplexFunction

    0下载:
  2. 本程序包括大部份复数处理函数:abs()、arg()、conj()、sin()、cos()、sinh()、cosh()、exp()、log()、log10()、norm()、polar()、pow()、sqrt()等。-look it yourself.
  3. 所属分类:ActiveX-DCOM-ATL

    • 发布日期:2017-04-05
    • 文件大小:986.81kb
    • 提供者:雾水葛
  1. calc1.3

    0下载:
  2. single app that implements a calculator that evaluates an expression written in natural way. For example 3+5*(sqrt(9)) where sqrt y square root. any question? write me at croccifixio29@hotmail.com-single app that implements a calculator that evaluat
  3. 所属分类:ActiveX-DCOM-ATL

    • 发布日期:2017-03-30
    • 文件大小:58.73kb
    • 提供者:CROCCIFIXIO
  1. sqrt

    0下载:
  2. c语言学习资料适合初学者。算法实现。的sqrt-c language learning materials for beginners. Algorithm. The sqrt
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:150.39kb
    • 提供者:cyy
  1. sqrt

    0下载:
  2. 该函数使用C语言写的可以实现与sqrt函数相同功能的开平方根函数,其精度可以调整-This function USES the C language to write the SQRT function can realize the same function with the opening of the square root function, its precision can be adjusted
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-09
    • 文件大小:1.38mb
    • 提供者:lucky
  1. sqrt

    0下载:
  2. c code to find square root of a number with out using sqrt function
  3. 所属分类:Windows Develop

    • 发布日期:2017-12-05
    • 文件大小:3.48kb
    • 提供者:navap652
  1. sqrt

    0下载:
  2. 一个求取sqrt(x)的程序(仿计算器的功能),输入任意10位有效数字以内的正数,可以求取其正的平方根,要求精确到10位有效数字。实现了泰勒级数展开、牛顿迭代、二次插值、最佳一次逼近、卡马克平方根倒数。-A strike sqrt (x) of the program (like a calculator function), the positive input 10 of any less significant digits, the positive square root of the
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:94.29kb
    • 提供者:STF
« 12 3 »
搜珍网 www.dssz.com