资源简介
蚁群算法采用matlab开发的仿真平台:算法实现,路径显示,人机交互控制等。

代码片段和文件信息
function varargout = antinface(varargin)
% ANTINFACE M-file for antinface.fig
% ANTINFACE by itself creates a new ANTINFACE or raises the existing
% singleton*.
%
% H = ANTINFACE returns the handle to a new ANTINFACE or the handle to
% the existing singleton*.
%
% ANTINFACE(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in ANTINFACE.M with the given input arguments.
%
% ANTINFACE(‘Property‘‘Value‘...) creates a new ANTINFACE or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before antinface_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to antinface_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE‘s Tools menu. Choose “GUI allows only one
% instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES
% Edit the above text to modify the response to help antinface
% Last Modified by GUIDE v2.5 02-Jun-2008 10:29:35
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @antinface_OpeningFcn ...
‘gui_OutputFcn‘ @antinface_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before antinface is made visible.
function antinface_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user state (see GUIDATA)
% varargin command line arguments to antinface (see VARARGIN)
% Choose default command line output for antinface
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
h=waitbar(0‘请等待......‘);
for i=1:100
waitbar(i/100);
end
delete(h);
% UIWAIT makes antinface wait for user response (see UIRESUME)
% uiwait(handles.handles);
% --- Outputs from this function are returned to the command line.
function varargout = antinface_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user state (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
function edit_initao_Callback(hobject eventdata handles)
% hobject handle to edit_initao (see GCB
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1692214 2008-06-04 11:26 ant\ant.bmp
文件 26319 2008-07-20 17:57 ant\antinface.asv
文件 6848 2008-07-10 22:31 ant\antinface.fig
文件 26341 2008-07-20 19:18 ant\antinface.m
文件 17383 2008-06-30 23:17 ant\hs_err_pid2044.log
文件 17397 2008-07-20 19:24 ant\hs_err_pid2208.log
文件 15529 2008-07-10 09:37 ant\hs_err_pid2452.log
文件 15666 2008-07-09 15:09 ant\hs_err_pid2732.log
文件 13711 2008-06-25 08:26 ant\hs_err_pid2764.log
文件 16099 2008-06-23 17:02 ant\hs_err_pid3176.log
文件 15394 2008-07-10 17:23 ant\hs_err_pid3244.log
文件 15501 2008-07-19 14:34 ant\hs_err_pid3324.log
文件 15503 2008-07-19 15:13 ant\hs_err_pid3632.log
文件 15188 2008-07-10 17:12 ant\hs_err_pid3904.log
文件 6904 2008-07-10 16:57 ant\test.txt
文件 3225318 2008-06-02 16:41 ant\初始化图像.bmp
目录 0 2008-08-18 13:17 ant
----------- --------- ---------- ----- ----
5141533 18
相关资源
- 用蚁群算法求解TSP问题的matlab程序
- 蚁群算法论文+源代码
- 针对栅格路径规划的蚁群算法MATLAB
- 蚁群算法实现三维路径规划Matlab源码
- matlab蚁群算法.zip
- 论文研究-基于改进蚁群算法的车辆路
- 基于蚁群算法和神经网络匹配算法的
- matlab蚁群算法各种经典蚁群算法for
- 基于栅格地图的蚁群算法路径规划
- 基于蚁群算法和神经网络匹配算法的
- 基于蚁群算法和神经网络匹配算法的
- 多种蚁群算法在机器人路径规划中的
- 机器人避障航路规划蚁群算法MATLAB仿
- 蚁群算法进行二维路径规划.zip
- 蚁群算法MATLAB代码287131
- 蚁群算法路径规划避障MATLAB源程序
- 蚁群算法无人机路径规划
- 粒子群 模拟退火 蚁群算法MATLAB实现
- 基本蚁群聚类算法及其改进算法带M
- 基于蚁群算法和神经网络匹配算法的
- 运用matlab编程实现蚁群算法的低压电
- 蚁群算法算法的路径规划MATLAB实现
- 利用蚁群算法对PID参数自整定程序源
- 蚁群算法最短路径matlab程序
- 蚁群算法求最短路径1
- 蚁群算法最短路径万能matlab源代码
- MATLAB蚁群算法ACA最短路径-注释完整
- 路径规划蚁群算法
- 蚁群算法粗糙集matlab代码
- 基于Matlab解决TSP问题的蚁群算法
评论
共有 条评论