Filter löschen
Filter löschen

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 Ansichten (letzte 30 Tage)
%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 Kommentare

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Motion Planning finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by