Clear Filters
Clear Filters

Why is the attribute 'DiagonalSearch' in plannerAStarGrid unusable? What is the code for the extension method of sub nodes in plannerAStarGrid? I want to modify the extension

4 views (last 30 days)
%Plan Obstacle-Free Path in Grid Map Using A-Star Path Planner
%Plan the shortest collision-free path through an obstacle grid map using the A* path planning algorithm.
%Generate a binaryOccupancyMap object with randomly scattered obstacles using the mapClutter function.
rng('default');
map = mapClutter;
%Use the map to create a plannerAStarGrid object.
planner = plannerAStarGrid(map,"DiagonalSearch",'on');
%Define the start and goal points.
start = [2 3];
goal = [248 248];
%Plan a path from the start point to the goal point.
plan(planner,start,goal);
%Visualize the path and the explored nodes using the show object function.
show(planner)
  5 Comments

Sign in to comment.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!