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

搜索资源列表

  1. 已知两点求第三点的双字节无符号定点插值算法

    0下载:
  2. 两个点的线性插值定点数算法 说明:1、基本公式 y=( y2-y1 ) ( x-x1 ) / ( x2-x1 ) + y1 2、根据直线斜率的正负、内插外插的不同,分为6种情况。 3.参见文件夹中的“插值算法的6种情况”一图。-two points of linear interpolation algorithm for determining points : one, the basic formula y = (y2 - y1) (x-x) / (x2 - x1) y1 2,
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:16289
    • 提供者:马良
  1. midline12

    0下载:
  2. 在c的环境下实现直线中点算法实现,可以实现任意斜率的直线绘制.-in the environment to achieve straight midpoint algorithm can achieve arbitrary slope of the straight-line drawing.
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:901
    • 提供者:jyc
  1. lx1

    0下载:
  2. 这是一个作图的界面程序 可以在任一座标以任一斜率-This is a graphic interface procedures in office as a standard to a slope
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:38282
    • 提供者:mao
  1. Bresenham高效画线算法

    0下载:
  2. 画线的算法不少,但要作到高速、简单并不容易。斜率相乘法是最简单的方法之一,但计算每个点均要花费不少时间用于乘、除法运算;下面介绍的是Bresenham s高效画线算法,对每个点的坐标计算只要加、减法就能完成。-line drawing algorithm, but a lot to be done fast, simple is not easy. The slope is the most simple multiplication is one of the ways, but each p
  3. 所属分类:2D图形编程

    • 发布日期:2008-10-13
    • 文件大小:4180
    • 提供者:小倪
  1. functionz

    0下载:
  2. 在三次样条中,要寻找三次多项式,以逼近每对数据点间的曲线。在样条术语中,这些数据点称之为断点。因为,两点只能决定一条直线,而在两点间的曲线可用无限多的三次多项式近似。因此,为使结果具有唯一性。在三次样条中,增加了三次多项式的约束条件。通过限定每个三次多项式的一阶和二阶导数,使其在断点处相等,就可以较好地确定所有内部三次多项式。此外,近似多项式通过这些断点的斜率和曲率是连续的。然而,第一个和最后一个三次多项式在第一个和最后一个断点以外,没有伴随多项式。因此必须通过其它方法确定其余的约束。最常
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:3360
    • 提供者:讲演
  1. Chinapiecedlinealgorithms

    0下载:
  2. 此程序为中点画线算法.注意的是,本算法只能适合于直线的斜率0<k<1的情况,对于其它的情况并不适应。但是,对于其它的情况可以仿照本算法写出对应的算法,也可以用其它算法来实现,如可以用DDA算法,这里不再介绍。-for this procedure were dotted line algorithm. Note that this algorithm can only fit in a linear slope 0
  3. 所属分类:GDI/图象编程

    • 发布日期:2008-10-13
    • 文件大小:15096
    • 提供者:管声俊
  1. cclasspoint

    0下载:
  2. 首先定义一个点类Point,其私有成员为其坐标X,Y。设计构造函数,拷贝构造函数,析构函数(可以什么都不做,只打印信息,表示其被调用),设置新值函数Set, 打印成员值函数Print。再定义一个线类Line,线类是在公有继承点类的基础上,新增私有成员斜率S,并设计构造函数,拷贝构造函数,析构函数(可以什么都不做,只打印信息,表示其被调用),设置新值函数Set, 打印成员值函数Print以及其它你认为对访问此Line类对象有用的成员函数。并用此Line类定义对象,调用所有成员函数。尤其是考察构造函
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3622
    • 提供者:gongwen
  1. MKT

    2下载:
  2. 这是Mann-kendall趋势检验和sen斜率估计的matlab实现的源代码,与大家共享!-This is the Mann-kendall trend test and the estimated slope sen achieved Matlab source code and share!
  3. 所属分类:中间件编程

    • 发布日期:2008-10-13
    • 文件大小:1170
    • 提供者:陈辉
  1. 324234

    0下载:
  2. 假定直线斜率k在0~1之间(k的其它取值可以类似处理),当前象素点为(xp,yp),则下一个象素点有两种可选择点P1-assumed linear slope of the k-1 between 0 (k values can be other similar processing), the current pixel (xp, yp), the next one pixel can have two points P1
  3. 所属分类:2D图形编程

    • 发布日期:2008-10-13
    • 文件大小:939
    • 提供者:张龙
  1. openglline

    0下载:
  2. 程序使用了Bresenham算法的思想,将四个象限的问题通过交换端点的方法合并成一,四象限的问题。再利用sign变量,统一成一个问题。又考虑到斜率<1,>1最终问题分成了两种情况。在直线插补程序的一开始,把斜率为正无穷的情况单独进行讨论。最终完成了整个程序-procedures for the use of the Bresenham algorithm thinking, four quadrant of the issue through the exchange of endp
  3. 所属分类:OpenGL

    • 发布日期:2008-10-13
    • 文件大小:87081
    • 提供者:吴子朝
  1. Lyapunovexponentbyslope

    1下载:
  2. 用斜率的方法来求时间序列的lyapunov exponent,在非线性动力学和时间序列处理中经常用到。很实用的小程序。-slope of the methods used to the time series for the lyapunov exponent. Nonlinear Dynamics and the time sequence processing frequently used. Very small practical procedures.
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:1433
    • 提供者:贾强
  1. stepperfourandsix

    0下载:
  2. 这个例子做的是去年全国电子电子设计大赛E题,悬挂运动控制系统(E题),我只做了画线和画圆两个部分,纯粹是玩,所以精度不是很高,终点定位精度误差差不多0.5cm左右,画圆在两个斜率无穷大区误差较大需要修正。 一开始我用的是L297+L298驱动,感觉脉冲相位控制比较麻烦,后来想到avr相对51的速度,用B口模拟脉冲,L293驱动。电机我用的是两个42BYG四相八拍六线步进电机,资料很好找。 这个试验做起来可能有点麻烦,比赛的时候需要特定的板子,就象附件E题里所示,注意电机转动的时候
  3. 所属分类:微处理器(ARM/PowerPC等)

    • 发布日期:2008-10-13
    • 文件大小:187898
    • 提供者:xuepeng
  1. adc_application

    0下载:
  2. 本文主要介绍了高精度单斜率AD及其单片机实现-This paper describes a high-precision single-slope AD and SCM
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2008-10-13
    • 文件大小:17044
    • 提供者:刘老师
  1. splintFE

    0下载:
  2. 有固定端点斜率条件的分段三次样条插值程序。-fixed endpoint slope conditions cubic spline interpolation procedure.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1294
    • 提供者:闰土
  1. 拓展的Bresenham画直线(全象限全斜率)

    1下载:
  2. 拓展的Bresenham画直线(全象限全斜率),采用实时判断斜率的方式分别对正负斜率进行处理,用了对称的思路做出图象。效果很好,代码非常简洁明了。,Bresenham draw a straight line extended (all-quadrant all-slope), the use of real-time manner to determine the slope of the positive and negative slope, respectively, to deal w
  3. 所属分类:OpenGL

    • 发布日期:2016-10-17
    • 文件大小:290669
    • 提供者:Wwh
  1. NuclearFitting

    0下载:
  2. 核辐射中仪器标定时用到的最小二乘拟合法,coords.txt是实验得出的数据!该方法可求出拟合直线的斜率和截距。-Nuclear radiation instrumentation calibration when used least-squares fitting, coords.txt are derived from experimental data! This method can be obtained fitting a straight line of slope and in
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:924
    • 提供者:杨慧
  1. zl均线斜率5.1

    0下载:
  2. 看着走势的斜率进行交易,谁动易经的最新力作(ooking at the slope of the trend to trade, the latest effort to move the book of changes)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:21504
    • 提供者:slkf
  1. 即时斜率

    3下载:
  2. 计算K线在各个周期的即时斜率,和任意一条均线的即时斜率,均线可以设置参数(Calculate the instant slope of K-line in each cycle, and the instant slope of any average line, and the EMA can set parameters.)
  3. 所属分类:金融证券系统

    • 发布日期:2018-08-10
    • 文件大小:169984
    • 提供者:蓝色太阳
  1. slope_limiter

    1下载:
  2. 计算流体力学的TVD方法,运用斜率限制器解波动方程。(The TVD method of computational fluid dynamics is used to solve wave equation with slope limiter.)
  3. 所属分类:matlab例程

    • 发布日期:2020-09-01
    • 文件大小:3807232
    • 提供者:nightleopard
  1. 斜率理论V6.6

    2下载:
  2. 成功率高,值得一试,能赚钱,坐享其成,很好,能依信号去操作(The success rate is high. It's worth a try.)
  3. 所属分类:其他

    • 发布日期:2021-02-13
    • 文件大小:41984
    • 提供者:文生用
« 12 3 4 5 6 7 8 9 10 ... 26 »
搜珍网 www.dssz.com