资源简介
人工势场法路径规划的matlab程序。根据随机产生的障碍图,利用人工势场法完成路径规划。内有详注。
代码片段和文件信息
%% RGSC
%% - create a path from a start node to an end node
%% using the 人工势场法.
%% - RGSC = Ren Gong Shi Chang
%% 障碍物及终点的位置每次均随机产生
%% 人工势场法的缺点:可能会陷入局部极小点而进入死循环 到达不了终点
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% pathRGSC
%% 主程序
function pathRGSC
% initialize obstacle world value
world = worldInitialization();
plotWorld(world);
potential = SCinitialization();
path = findMinimumPath(worldpotential);
plot(path(:1)path(:2));
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% worldInitialization
%% inilize values of obstacle world and startend point
function world = worldInitialization()
% create obstacle world through initializing parameters
initial_value.Size = 100;
initial_value.Scorn
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8956 2015-05-13 15:10 RGSC.m
文件 5476 2015-05-13 14:50 example_pathresult.fig
----------- --------- ---------- ----- ----
14432 2
- 上一篇:mine
- 下一篇:三维模型文件的读取和显示(OBJ_Display)
相关资源
- 人工势场法机器人路径规划
- 蚁群算法三维路径规划
- Q学习算法来实现的机器人路径规划
- 扫地机器人的路径规划算法
- 路径规划matlab仿真程序-Q-Learing-path-
- daolujianmo
- pso2835922
- robot_motion_planning
- pathplann-algorithm
- artificial-potential-field-method 基本人工势
- GA-for-path-planning 通过遗传算法对飞机
- rengong2 师兄的人工势场法避障实验代
- btxzzawbz
- APF-path-planning-algorithm-demo 用matlab编写
- matlab-code 给予遗传算法的航迹规划和
- path-planning2
- globalpathplanning 基于能量函数的人工神
- Desktop
- Astar_Archive
- TWVRP 对物流配送问题的带时间窗车辆
- pso_pathplanning
- 人工势场结合模糊控制算法的机器人
- 基于人工市场法和遗传算法的移动机
- 改编的三维空间A*star算法matlab
- 遗传算法路径规划
- 路径规划 MATLAB代码
- 遗传算法路径规划的MATLAB实现
- matlab程序蚁群,势场.zip
- RRT路径规划Matlab程序
- Matlab基于蚁群算法的三维路径规划算
评论
共有 条评论