搜索资源列表
排列逻辑顺序
- 排列逻辑顺序,是我再大学里编出的很经典的程序之一,适合于初学者和中等程度的学习人员-with logical order, I university out to the classic one of the procedures, suitable for beginners and middle-level officers of learning
tanxin
- 这是一个贪心算法的c程序。贪心算法(也叫贪婪算法)不是某种特定的算法,而是一类抽象的算法,或者说只是一种思想,它的具体表现在,对解空间进行搜索时,不是机械地搜索,而是对局部进行择优选取,贪心算法的目的不是为了找到全部解,也当然找不出最优解,而只是找出一种可行解,这样就会得到惊人的高效性。因此,贪心算法也叫启发式搜索,这种启发就是所谓的“贪心策略”。-This is a greedy algorithm c procedures. Greedy algorithm (also known as t
八数码问题(A星算法)
- 用A*算法求解八数码问题。A*算法又叫做最佳图搜索算法,是满足启发函数不大于实际耗散值的A算法,可以用理论证明如果最佳解图存在的话,一定可以用A*算法找出来。-with A * algorithm eight digital problem. A * algorithm also called the plan the best search algorithm, it is instructive function to meet not more than the actual value
fcmdemo
- FCMDEMO displays a GUI window to let you try out various parameters in fuzzy c-means clustering for 2-D data. You can choose the data set and clustering number from the GUI buttons at right, and then click \"Start\" to start the fuzzy cluste
Mesdaghi - Pathing Tutorial
- PathPlannerApp Manual With Tutorial.doc is a path planning-tutorial that provides detailed explanation and pseudo-codes. In order to get the most out of the tutorial, you should start with the \"PathPlannerApp.base\" and avoid looking through th
LIDEBP
- BP算法的程序 ,这个是同学的,好象已经调出来了-BP algorithm procedures, this is the students, seems to have transferred out of
k92SetpC
- 这是用实验函数--Ackley函数来检验遗传算法的优越性,其中有点小毛病,就是种群数在20个左右效果最好,一旦增加种群,结果就不大对劲了。忙了好多天,也没调出来,还请各位大侠指点喽-This is the experimental function -- Ackley function to test the advantages of genetic algorithm, with a little fault, is the number of stocks in the 20 best a
updatesimplexmethod
- 单纯形法是一种不错的随机搜索算法,但是其受初始值的选取,步长大小的影响较大,容易陷入局部收敛。程序中列出了基本单纯形法,和几种改进的单纯形法,包括变步长的单纯形法,单纯形加遗传算法等。-simplex method is a good random search algorithm, but its initial value by the selection, step in a larger size, easy to be trapped into local convergence. P
MCProcDemo
- 人工智能实验---求解传教士与野人问题,并画出状态图做动态演示.-experimental artificial intelligence -- for missionaries and savage, and the mapping out of the state plans to do dynamic demonstration.
BP001
- 基于BP网络的C++源代码,可以进行逻辑运算-based BP Network C source code can be carried out logic operations
nnforcast
- 本程序根据训练好的网络文件ANN.mat预测新的数据文件,得到均方误差,并画出预测数据和原数据的对比图。此程序运用到了很多Matlab编程中常用到的表达方式,还有一些神经网络编程的基本概念的表达,如归一化的表达。希望能对别人有所帮助.-the procedures under the trained network file ANN.mat anticipating new data files, to be mean-square error. and the mapping out of t
svmsm
- SMO算法的Matlab实现,花了很大的力气才弄出来的!和大家分享!更多就在我的主页访问吧:http://huangbo929.blog.edu.cn-SMO algorithm Matlab, spent a lot of time and energy only get out! And to share with you! More on the home page I visit it : http://huangbo929.blog.edu.cn
AIwork
- AI作业合集,包括人工智能老师会出的3种题目,注意下载-AI operations, including artificial intelligence teachers out of the three topics to download
FastRWR-out
- 利用加速随机游走计算初始点确定的分类算法,随机游走是近几年发展的可以利用他来进行图形分割
TC求解迷宫问题并显示
- 输入一个任意大小的迷宫, 用栈求出一条走出迷宫的路径, 并显示在屏幕上。-importation of a maze of arbitrary size, with a stack get out of the maze of trails and on the screen.
企业数字神经网络系统
- 企业数字神经网络功能开发文章,能进行BP等神经网络的设计-enterprise digital neural network function development articles, BP will carry out other neural network design
蚂蚁
- 蚁群算法上传一个文件这么复杂啊?生命在长期进化过程中,积累了很多新奇的功能,人类很早就从中得到启发而改进自己的工具,如史书中记戴“见蓬转而做车辑”,传说鲁班被茅苇划破,而发明锯子……也许早先的发明,只是偶然的模仿和发现,后来人们已有意识地进行这方面的研究,这就是“仿生学”。仿生学顾名思义就是模仿生物的某些功能的学问。有名的例子很多,如模仿海豚皮而构造的“海豚皮游泳衣”、科学家研究鲸鱼的皮肤时,发现其上有沟漕的结构,于是有个科学家就依照鲸鱼皮构造,造成一个薄膜蒙在飞机的表面,据实验可节约能源3%,
BP神经网络类
- 这是我自己花了很多时间写的一个BP神经网络类,里面封装了网络初始化、训练、分类等功能。奉献出来与感兴趣的朋友分享,绝对可靠。-that I spent a lot of time writing in a category BP neural network inside the network initialization package, training, classification capabilities. Dedication out with friends interested
n_pls
- 这是我自己花了很多时间写的一个模式识别源码。奉献出来与感兴趣的朋友分享,绝对可靠。.. - Dedication out with friends interested in sharing, absolutely reliable. ..
K-均值聚类算法C++编程
- K-均值聚类算法的编程实现。包括逐点聚类和批处理聚类。K-均值聚类的的时间复杂度是n*k*m,其中n为样本数,k为类别数,m为样本维数。这个时间复杂度是相当客观的。因为如果用每秒10亿次的计算机对50个样本采用穷举法分两类,寻找最优,列举一遍约66.7天,分成3类,则要约3500万年。针对算法局部最优的缺点,本人正在编制模拟退火程序进行改进。希望及早奉给大家,倾听高手教诲。-K-means clustering algorithm programming. Point by point, inc