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

搜索资源列表

  1. half

    0下载:
  2. 折半查找的算法思想是将数列按有序化(递增或递减)排列,查找过程中采用跳跃式方式查找,即先以有序数列的中点位置为比较对象,如果要找的元素值小于该中点元素,则将待查序列缩小为左半部分,否则为右半部分。通过一次比较,将查找区间缩小一半。 折半查找是一种高效的查找方法。它可以明显减少比较次数,提高查找效率。但是,折半查找的先决条件是查找表中的数据元素必须有序-Binary search algorithm idea is to sequence by ordering (ascending or des
  3. 所属分类:CSharp

    • 发布日期:2017-03-28
    • 文件大小:672
    • 提供者:吕济根
  1. nonlinear-equation

    1下载:
  2. mulStablePoint 用不动点迭代法求非线性方程组的一个根 mulNewton 用牛顿法法求非线性方程组的一个根 mulDiscNewton 用离散牛顿法法求非线性方程组的一个根 mulMix 用牛顿-雅可比迭代法求非线性方程组的一个根 mulNewtonSOR 用牛顿-SOR迭代法求非线性方程组的一个根 mulDNewton 用牛顿下山法求非线性方程组的一个根 mulGXF1 用两点割线法的第一种形式求非线性方程组的一个根 mulGXF2 用两点割线法
  3. 所属分类:matlab

    • 发布日期:2017-03-22
    • 文件大小:11028
    • 提供者:汪张扬
  1. MidpointCircle

    0下载:
  2. 计算机图形学 中点 画圆算法 C语言实现-MidpointCircle
  3. 所属分类:Special Effects

    • 发布日期:2017-04-02
    • 文件大小:543
    • 提供者:zhan
  1. Form1

    0下载:
  2. 用C#写的直线算法 包含DDA、中点、 Bresenham 算法等-www.pudn.com
  3. 所属分类:Special Effects

    • 发布日期:2017-04-01
    • 文件大小:2363
    • 提供者:丁新
  1. DDACircle

    0下载:
  2. 比较牛逼的java直线算法 包括DDA 中点Bresenham 算法- Bresenham Bresenham Bresenham
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:29531
    • 提供者:丁新
  1. DDA

    0下载:
  2. 比较牛逼的java直线算法 包括DDA 中点Bresenham 算法-www.pudn.com
  3. 所属分类:Java Develop

    • 发布日期:2017-03-22
    • 文件大小:29339
    • 提供者:丁新
  1. openGL

    0下载:
  2. 此程序的功能是实现基本的openGL中的画线算法,总共有四个算法。DDA画线算法,中点Bresenham算法画直线,改进Bresenham算法画直线以及 四分法绘制椭圆-Feature of this program is to achieve the basic openGL draw lines in the algorithm, a total of four algorithms. DDA line drawing algorithm, Bresenham midpoint line d
  3. 所属分类:OpenGL program

    • 发布日期:2017-04-09
    • 文件大小:1732882
    • 提供者:周中锋
  1. tuxingxue

    1下载:
  2. 计算机图形学实验源代码--中点分割直线裁剪算法-Experimental source code of computer graphics- the midpoint of a straight line cutting algorithm segmentation
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2013-05-06
    • 文件大小:264630
    • 提供者:刘松
  1. robot

    0下载:
  2. 取各障碍物顶点连线的中点为路径点,相互连接各路径点,将机器人移动的起点和终点限制在各路径点上,利用Dijkstra算法来求网络图的最短路径,找到从起点P1到终点Pn的最短路径,由于上述算法使用了连接线中点的条件,不是整个规划空间的最优路径,然后利用遗传算法对找到的最短路径各个路径点Pi (i=1,2,…n)调整,让各路径点在相应障碍物端点连线上滑动,利用Pi= Pi1+ti×(Pi2-Pi1)(ti∈[0,1] i=1,2,…n)即可确定相应的Pi,即为新的路径点,连接此路径点为最优路径。-Ta
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:1812
    • 提供者:biaoshi
  1. GraphicsE

    0下载:
  2. 图形学 一些算法的实现 直线、圆、椭圆 中点偏差算法 barsky、编码法直线裁剪算法的实现 Bezier曲线 mfc编程-Some graphics algorithm for straight line, circle, ellipse midpoint deviation algorithm barsky, coding algorithms achieve linear Bezier curve cutting mfc programming
  3. 所属分类:Graph Drawing

    • 发布日期:2017-05-15
    • 文件大小:3740475
    • 提供者:Earl
  1. MidpointLine

    0下载:
  2. 利用图形学中的中点划线算法原理,进行编写的中点画线算法,可实现中点画线的功能。-Using graphics, midpoint crossed algorithm theory, written in drawing line algorithm, which can realize the function of drawing lines in.
  3. 所属分类:Java Develop

    • 发布日期:2017-03-31
    • 文件大小:913
    • 提供者:haoqiu
  1. line

    0下载:
  2. bresenham 直线中点bresenham算法-bresenham line
  3. 所属分类:Special Effects

    • 发布日期:2017-04-01
    • 文件大小:2946
    • 提供者:celina
  1. finding

    0下载:
  2. 折半查找的算法思想是将数列按有序化(递增或递减)排列,查找过程中采用跳跃式方式查找,即先以有序数列的中点位置为比较对象,如果要找的元素值小于该中点元素,则将待查序列缩小为左半部分,否则为右半部分。通过一次比较,将查找区间缩小一半。 折半查找是一种高效的查找方法。它可以明显减少比较次数,提高查找效率。但是,折半查找的先决条件是查找表中的数据元素必须有序。 -Binary search algorithm idea is to sequence by ordering (ascending or
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:784
    • 提供者:zn
  1. B_Circle

    0下载:
  2. 中点Bresenham算法绘制圆,输入中心点坐标,颜色绘制圆形-Bresenham algorithm draw round the midpoint, input center coordinates, color rendering circle
  3. 所属分类:Graph Drawing

    • 发布日期:2017-04-10
    • 文件大小:1354462
    • 提供者:李红雷
  1. B_Line

    0下载:
  2. 中点Bresenham算法绘制直线,输入起始点坐标颜色,绘制直线-The midpoint draws lines Bresenham algorithm, input starting point coordinate color, draws lines
  3. 所属分类:Graph Drawing

    • 发布日期:2017-05-06
    • 文件大小:1356881
    • 提供者:李红雷
  1. huaxian

    0下载:
  2. 这是我们计算机图形学课上的作业,通过画像素点画直线和圆直线用的是DDA算法,圆用的是中点法-This is our computer graphics class assignments, through drawing lines and round draw pixels with is straight line, the circle by algorithm DDA collocation is in
  3. 所属分类:2D Graphic

    • 发布日期:2017-03-30
    • 文件大小:8040
    • 提供者:秋风扬起
  1. 5

    0下载:
  2. 利用Dijkstra算法来求网络图的最短路径,找到从起点P1到终点Pn的最短路径,由于上述算法使用了连接线中点的条件,不是整个规划空间的最优路径,然后利用遗传算法对找到的最短路径各个路径点Pi (i=1,2,…n)调整,让各路径点在相应障碍物端点连线上滑动-Use Dijkstra algorithm to find the shortest path network diagram to find the starting point P1 to the end of Pn from the
  3. 所属分类:matlab

    • 发布日期:2017-04-17
    • 文件大小:9174
    • 提供者:jack
  1. Computer-Graphics

    0下载:
  2. 计算机图形学43个案例,包括直线中点Bresenham算法-Computer Graphics 43 examples,such as Bresenham algorithm
  3. 所属分类:Graph Drawing

    • 发布日期:2017-06-20
    • 文件大小:31609856
    • 提供者:lee
  1. duncan-2

    1下载:
  2. 利用ABAQUS中的用户材料子程序UMAT开发的三维邓肯-张模型,应力积分算法采用的是中点增量法。-Using ABAQUS user material subroutine UMAT in the development of three-dimensional Duncan- the stress integration algorithm is used in the mid-point incremental method.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:1315
    • 提供者:
  1. Bresenham-line-algorithm

    0下载:
  2. 直线中点Bresenham 算法,输入起点坐标和终点坐标,即可画出直线-Mid-point of Bresenham line algorithm, the input point coordinates and end coordinates, then draw a straight line
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-10
    • 文件大小:2322754
    • 提供者:徐新
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 19 »
搜珍网 www.dssz.com