资源简介
蚁群算法采用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
相关资源
- 粒子群算法与蚁群算法混合解决旅行
- 物流配送路线matlab源程序
- 蚁群算法 matlab仿真程序,详细注释
- 基于蚁群算法的移动机器人三维路径
- 蚁群算法实现机器人避障和路径规划
- 蚁群聚类算法matlab实现
- 蚁群算法解决背包问题matlab
- 蚁群算法图像分割
- 带约束的蚁群算法模型解决TSP问题M
- 基于蚁群算法和Dijkstra算法的二维路径
- 蚁群算法matlab完整代码
- 蚁群算法求解最短路,详细,可用于
- 蚁群算法求解最短路径问题MATLAB代码
- 机器人障碍环境下路径规划改进的回
- 改进的蚁群算法求解TSP问题
- 蚁群算法解决TSP问题MATLAB程序
- 蚁群算法求解旅行商最优路径问题
- 蚁群算法的matlab源码.rar
- Matlab中蚁群算法求解连续函数优化的
- 基于蚁群算法和神经网络匹配算法的
- 基于蚁群算法的二、三维路径规划算
- 基于蚁群算法的图像边缘检测.zip
- 蚁群算法求解TSP最短路径规划
- TSP多种群蚁群算法
- 蚁群算法TSP问题工具箱
- 蚁群算法的matlab源码
- 基于蚁群算法的路径规划源码
- 蚁群算法用于图像的边缘检测
- 基于matlab的蚁群算法和仿真结果图
- 基于蚁群算法的图像边缘检测算法M
评论
共有 条评论