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

搜索资源列表

  1. n个圆的组合

    0下载:
  2. 对工作分配进行多次优化,直到找到最优的分配方式。 首先将所有工作交给能力最强的人做,然后找出最低安全值和最高安全值,此时将未分配工作的人的能力值当作安全值参与判断,把安全值最低者分配的仓库数减一,并将这个仓库交给安全值最高者看守,然后进入下次优化,在新一次优化过程中把最低安全值和上次优化时的最低安全值作比较,如果这次最低安全值比上次大,则继续进行优化,若系统最低安全值相比上次下降,则说明上次优化后的结果已经是最优,即得结果。-work on a number of distribution op
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:879278
    • 提供者:周驰原
  1. parallel-dijkstra 并行化思路实现dijkstra算法

    0下载:
  2. 并行化思路实现dijkstra算法。假设有p个处理器,N个顶点。给每个处理器分配N/p个顶点,求出局部的最小值,复杂度为O (N/p)。然后后一半的处理器将自己的最小值发送给第前p/2个处理器。前一半处理器接收到传来的值后,与局部的最小值比较,作为新值。继续循环,直到剩下一个处理器为止。-Parallelized dijkstra algorithm. Suppose there is p a processor, N vertex. Give each processor distributi
  3. 所属分类:并行运算

    • 发布日期:2017-03-23
    • 文件大小:744381
    • 提供者:joyce
  1. Class-separability

    0下载:
  2. 类可分离性的判别,特征选择与特征提取的任务是求出一组对分类最有效的特征因此需要有定量分析比较的方法,判断所得到的特征维数及所使用特征是否对分类最有利,这种用以定量检验分类性能的准则称为类可分离性判据。 类别可分离性判据,用来检验不同的特征组合对分类性能好坏的影响,并用来导出特征选择与特征提取的方法。 理想准则:某组特征使分类器错误概率最小-Class separability of discrimination, feature selection and feature extract
  3. 所属分类:Graph Recognize

    • 发布日期:2017-04-06
    • 文件大小:429444
    • 提供者:leo
  1. proj07-01

    0下载:
  2. 试验中使用模拟退火算法寻找一6-单元网络能量最小化的模型。模拟退火算法是模拟物理学上的退火技术。其优势在于有可能使系统从局部极小值跳出。-Simulated annealing algorithm used in the experiments to find a 6- unit network model of energy minimization. Simulated annealing algorithm simulates the physics of annealing. The a
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-16
    • 文件大小:14747
    • 提供者:王瑶
  1. cp003

    2下载:
  2. 设计一个一维wiener滤波器,并以平稳信号加噪为输入,得到该平稳信号的估计信号,并求出最小均方误差。-Design a one-dimensional wiener filter, and to smooth the input signal plus noise to get the estimated signal of the stationary signal, and find the minimum mean square error.
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:919
    • 提供者:wang
  1. fmincon

    1下载:
  2. fmincon函数的应用实例,求最小能量-fmincon function of the application instance, find the minimum energy
  3. 所属分类:matlab

    • 发布日期:2016-01-21
    • 文件大小:160768
    • 提供者:linjiming
  1. min_tree

    0下载:
  2. Kruskal算法的M程序,主要用于图论问题。最终求出要求的最小树问题。-Kruskal algorithm M program, mainly for graph theory problems. Eventually find the required minimum tree problem.
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:999
    • 提供者:xiaosu
  1. SQP

    2下载:
  2. 基于active-set 的SQP算法,用于求解非线性不等约束-SQP algorithm used to find a constrained minimum of a function of several variables based on active-set algorithm, subject to the nonlinear inequalities.
  3. 所属分类:matlab

    • 发布日期:2014-06-25
    • 文件大小:11264
    • 提供者:zdl
  1. fortran

    0下载:
  2. 找出txt文件的最大值和最小值。要输入文件的行数和列数-Txt file to find the maximum and minimum value. To enter the file number of rows and columns
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:467614
    • 提供者:翟鹏程
  1. Prim

    1下载:
  2. 用vc实现的图中最小生成树的动态演示,点击菜单时就会自动演示,实现寻找最小生成树的时候思路清晰而简洁,是一份不可多得的资料-Vc achieve the minimum spanning tree diagram dynamic presentation, click the menu will automatically presentations, find the minimum spanning tree when a clear and concise ideas, is a rare
  3. 所属分类:File Operate

    • 发布日期:2017-04-10
    • 文件大小:1973598
    • 提供者:谢杰
  1. 分治算法

    0下载:
  2. 君主和殖民者们所成功运用的分而治之策略也可以运用到高效率的计算机算法的设计过程中。本章将首先介绍怎样在算法设计领域应用这一古老的策略,然后将利用这一策略解决如下问题:最小最大问题、矩阵乘法、残缺棋盘、排序、选择和一个计算几何问题——找出二维空间中距离最近的两个点。 本章给出了用来分析分而治之算法复杂性的数学方法,并通过推导最小最大问题和排序问题的复杂性下限来证明分而治-monarchy and colonialists who have successfully used the divid
  3. 所属分类:Special Effects

    • 发布日期:2017-11-11
    • 文件大小:6728
    • 提供者:小芝
  1. find_max_min

    0下载:
  2. 小车利用红外传感器扫描黑线寻迹,找传感器扫描黑线的最大最小值-Car use infrared sensors to scan black line tracing to find black line sensor to scan the largest minimum
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-25
    • 文件大小:398353
    • 提供者:王晶
  1. D9R6

    0下载:
  2. 用于无约束优化的鲍威尔优化方法, 程序中参数解释如下://P:存放设计变量 //XI:存放两个线性无关的向量 //N:含有N各元素的一维实型数组,用于存储设计变量 //NP:整形变量,用于存储P与xi的维数 //FTOL:迭代精度 //FRET:输出参数,存放目标函数在找到的近似极小值点处的值 //ITER:迭代次数-For unconstrained optimization of the Powell optimization methods, procedure
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-02
    • 文件大小:187400
    • 提供者:吴江
  1. CircleArrayBinarySearch

    0下载:
  2. 在一个环状的有序数组(即把数组看做首位相连,数组最小值和最大值在数组中某个位置相邻)中,使用二分查找寻找一个数是否在数组中,返回其下标。vc 2005环境-In an orderly array of ring (that is, as the first connected to the array, an array of minimum and maximum in the array adjacent to a location), the use of binary search to
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:4042
    • 提供者:inspire
  1. Subseofseveralquestions

    0下载:
  2. 子集和数问题 实现对图的最小生成树实现,通过此算法可以找到此图中连接所有点的最小生成树-Subset of several questions on the implementation of the minimum spanning tree implementation plans, the passage of this algorithm can find this chart connecting all points of the minimum spanning tree
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:746
    • 提供者:samuel
  1. redundantpaths

    0下载:
  2. c pgm to find redundant paths in a graph.Many fault-tolerant network algorithms rely on an underlying assumption that there are possibly distinct network paths between a source-destination pair. Given a directed graph as input, write a program that u
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:1748
    • 提供者:jazz
  1. markowitz

    0下载:
  2. This program uses Markowitz portofolio theory to find combination of stocks in a portfolio which has minimum variance for expected returns
  3. 所属分类:Finance-Stock software system

    • 发布日期:2017-04-12
    • 文件大小:895
    • 提供者:rajesh
  1. chazhiyunihe

    0下载:
  2. 插值函数, 称为被插函数. 最小二乘拟合: 已知一批离散的数据 , 互不相同,寻求一个拟合函数 ,使 与 的误差平方和在最小二乘意义下最小.在最小二乘意义下确定的 称为最小二乘拟合函数-Interpolation function, referred to as interpolation function. Least-squares fitting: a known number of discrete data, different from each other, to find a f
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:395368
    • 提供者:fengyu
  1. minimumdistance

    0下载:
  2. It will find the minimum distance between the two points input by the user
  3. 所属分类:MiddleWare

    • 发布日期:2017-04-06
    • 文件大小:1208
    • 提供者:mani
  1. simplex

    0下载:
  2. simplex Fortran code to find the minimum
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:68258
    • 提供者:York lane
« 1 2 3 45 6 7 8 9 10 ... 30 »
搜珍网 www.dssz.com