资源简介
按照A*算法的步骤来实现。
代码片段和文件信息
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% A* ALGORITHM
% 04-26-2005
% Vivian Paul
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%DEFINE THE 2-D MAP ARRAY
MAX_X=10;
MAX_Y=10;
MAX_VAL=10;
OPEN_COUNT=0;
CLOSED_COUNT=0;
%This array stores the coordinates of the map and the
%objects in each coordinate
MAP=2*(ones(MAX_XMAX_Y));
% Obtain Obstacle Target and Robot Position
% Initialize the MAP with input values
% Obstacle=-1Target = 0Robot=1Space=2
i=0;j=0;
x_val = 1;
y_val = 1;
axis([1 MAX_X+1 1 MAX_Y+1])
grid on;
hold on;
n=0;%Number of Obstacles
pause(1);
h=msgbox(‘Please Select the Target using the Left Mouse button‘);
uiwait(h5);
if ishandle(h) == 1
delete(h);
end
xlabel(‘Please Select the Target using the Left Mouse button
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 7288 2005-04-28 16:13 A-star\Astar算法仿真\Astar-main.m
文件 156 2005-04-28 16:13 A-star\Astar算法仿真\distance.m
文件 1870 2005-04-28 16:13 A-star\Astar算法仿真\expand_array.m
文件 543 2005-04-28 16:13 A-star\Astar算法仿真\insert_open.m
文件 1051 2005-04-28 16:13 A-star\Astar算法仿真\min_fn.m
文件 206 2005-04-28 16:13 A-star\Astar算法仿真\node_index.m
文件 46 2015-07-05 13:55 A-star\Astar算法仿真\readme.txt
目录 0 2015-07-05 13:54 A-star\Astar算法仿真
目录 0 2015-07-05 13:53 A-star
----------- --------- ---------- ----- ----
11160 9
相关资源
- kpca 用于主成分分析以及核主成分分析
- average_dwell_time 基于平均驻留时间的线
- A-DDE-Algorithm 红外图像分层处理及动态
- plot roc matlab绘制ROC曲线代码
- matlab光伏并网模型
- matlab四元数计算各个时刻的姿态数据
- ZUPT matlab实现脚部zupt算法
- IGG3-matlab
- gps基本原理及其matlab仿真
- matlab程序仿真信号SG平滑滤波
- IEEE33Newton matlab上实现《电力系统分析
- matlab飞行仿真
- PSO_LSSVM
- 三种LBP模式的子程序
- SNR 信号信噪比计算
- 人工势场法机器人路径规划
- time-frequency 时频分析
- matlab相变沸腾的LBM模拟
- 采用dq下的PI控制的逆变器的单相光伏
- matlab双同步坐标系解耦仿真文件
- 五种典型的风速合成的风速模块
- 稀疏表示的子空间谱聚类方法
- 稀疏子空间聚类法SSC
- matlab levy 飞行程序
- Hilbert
- 深度学习源代码
- KLT-Tracking-algorithm KLT跟踪算法
- 模式识别与智能计算源码
- 汽车发动机模型
- CNN 深度学习模型
评论
共有 条评论