搜索资源列表
lisa
- 实现线性表:1 向空表中依次添加数据1、2、3、4、5、6、7、8、9、10,打印表中数据。 2 删除第3、6个数据,打印表中数据。 3 在第3和第6个位置后分别添加数据11、12,打印表中数据。 4 在表中搜索值为7和13的数据,并打印该数据在表中的下标。 5 从表尾向表头方向依次删除数据,每删除一个数据打印一次表中数据,直到表空为止。 -Linear table : an empty table to add the data were 1,2,3,4,5,6,7
COMPDIR
- % COMPDIR Computes a search direction in a subspace defined by Z. % Helper function for NLCONST. % Returns Newton direction if possible. % Returns random direction if gradient is small. % Otherwise, returns steepest descent direction. % I
Tracking
- Tracking a moving object through several frames, provided changes from frame to frame are on the order of +-(10 + \"X Range\") pixels in the X direction and +-(10 + \"Y Range\") in the Y direction is done automatically because of a relatively large a
java-codes
- 本程序为放出的测试用魔方(MoFang.java),包含所有的核心代码及注释,调试,测试代码。你可以用鼠标转动魔方,用键盘上的方向键移动魔方位置,除此以外,代码中还有大量功能,如智能搜索求解魔方,目前正在制作图形控制界面,也可用于applet嵌入网页中,Frame,也可做成java bean组件,有java bean需要的,请与作者本人联系。-procedures for the release of the test Cube (MoFang.java), contains all the c
A的算法
- A*算法属于一种启发式搜索。它扩展结点的次序类似于广度优先搜索,但不同的是每生成一个子结点需要计算估价函数F,以估算起始结点到该结点的代价及它到达目标结点的代价的和;每当扩展结点时,总是在所有待扩展结点中选择具有最小F值的结点作为扩展对象,以便使搜索尽量沿最有希望的方向进行。 -A * algorithm is a heuristic search. It extended node in the order of priority similar to the breadth of searc
hyplas
- ************************************************************************ * * * * * THIS IS THE H Y P L A S 2.0 README FILE * * ----------------- * * * * HYPLAS is a finite element program for implicit small and large * * strain analisys of hyperelast
edgedir_his.rar
- 基于边缘方向直方图的图像检索matlab程序,直方图为提取8个方向的的统计概率,对于花朵、人脸、汽车的检索效果很好。,Edge direction histogram based image retrieval matlab procedures, histogram for the extraction of the eight directions of statistical probability, for flowers, human faces, cars good search r
Carlinght
- 小车寻光,向光源方向前进,我用的是普通的光敏电阻制作的模块,输出地是数字信号,要自己做个灯盏,这样才能有导向性-Car search light, the light source direction, I use the normal production of photosensitive resistor module, the output to a digital signal, it has to be a lamp, so as to have oriented
zuoyoumatlabcode
- 关于最优化算法的matlab 程序,搜索方向包括线性和非线性搜索-With regard to optimization algorithm matlab program, the search direction, including linear and nonlinear search
Automatic-segmentation
- 在最优阈值分割的基础上,用自动区域生长去除气管/支气管区域,对边界跟踪法进行改进以快速 去除背景干扰和获得肺部边界,最后进行肺部边界修补得到完整的肺部图像。算法采用迭代法寻找最 优阈值解决了阈值选取的敏感性问题,提出了基于前层图像中气管/支气管位置的气管/支气管提取方 法,避免了种子点的人工选取,基于前次搜索方向改进了八邻域搜索方法来提高边界跟踪的速度。 -In the optimal threshold segmentation based on region growing
ABDS
- P2P方向搜索搜索算法ABDS搜索算法搜索过程,该算法消除了局域网间的通信流量,加快搜索速度-P2P direction search
Autocar
- 03全国电子设计大赛题目设计,小车实现金属探测并报警,自动寻线,自动避障,光源检测等功能。-Base on the microcontroller 89c52, the mini-car can race intellectually by detecting the black guide-line, then dodge the barriers and finally reach the destination. The system adopts photo electronic sen
poj2488
- 回溯法的模板,关键是回溯的过程,以及在深搜过程中的方向问题-Backtracking template, the key is back process, as well as in the course of the deep question of the direction search
webinar_files
- This a demonstration of how to find a minimum of a non-smooth objective function using the Genetic Algorithm (GA) function in the Genetic Algorithm and Direct Search Toolbox. Traditional derivative-based optimization methods, like those foun
conjugate_gradient_method
- 1. 程序运行时首先输入要求解第几题,然后输入初始点,即可得到最后结果。从程序运行结果中我们可以看到,采用共轭梯度法所得的结果比采用最速下降法所得的结果更为精确,这是由于:共轭梯度法实质上是对最速下降法的修正,使搜索方向变为共轭方向,即每一步的搜索方向都要对该步的负梯度进行修正。-1. Program run-time solution of the first type the first few questions asked, and then enter the initial poin
ImageRetrieval
- 毕业设计,基于内容的图像检索,支持的检索特征包括 sift,颜色直方图,灰度矩阵,HU不变矩,边缘方向直方图,检索方法使用K-means和K-D树两种,需要OPENCV支持,运行时请先选定一个文件夹来生成特征库,特征库用access数据库保存,只支持JPG文件-Graduate design, content-based image retrieval, search features, including support sift, color histogram, gray matrix,
Knight
- 1. 问题描述 在一个n*n的棋盘上,一个放在棋盘上某个位置的马是否可以恰好访问每个方格一次,并且回到起始位置上? 2. 回溯法的一般思路 深度优先搜索,若寻找到满足要求的解,则输出;否则推回上一层往下一个方向搜索。 3. 求解问题的回溯算法描述 对于当前所在位置(x,y),依次枚举n个方向搜索,直到找到一组可行解为止。使用剪枝有3处:第一、使用Warnsdorff s rule,枚举当前解得时候优先选择下一步可行步数最少的方向;第二、若第一点中的方向存在不止一个,则优先选择
how-to-search-papers
- 大牛讲的如何查找本专业相关方向的最新进展,以及一些牛人的研究现状,更利于我们从事科研-Daniel talked about how to find the direction of the profession related to the latest developments, as well as some cattle research status, we are engaged in scientific research more conducive
A-Search-free-DOA-Estimation-Algorithm-for-Coprim
- In this paper, a fast search-free method for direction-of-arrival (DOA) estimation with coprime arrays was proposed. It is based on the use of methods that operate on the uniform linear subarrays of the coprime array and that enjoy many proces
MatlabAlgorsCh6
- 共轭方向搜索法的matlab函数,有基本的共轭方向搜索法,共轭梯度法和Powell法等(The matlab function of the conjugate direction search method has the basic conjugate direction search method, the conjugate gradient method and the Powell method, etc.)