copy
Description
creates a deep copy of the planner2
= copy(planner1
)plannerAStar
object
planner1
.
Examples
Plan Shortest Path Between Two States in Graph Using A-Star Path Planner
Load the Queensland road network.
load("queenslandRoutes","places","routes")
Specify states, links, and weights for a navGraph
object.
states = places.utm; % UTM coordinates of cities names = places.name; % Names of cities links = [routes.start routes.end]; % Adjacent cities weights = routes.time; % Travel time between adjacent cities
Create a navGraph
object.
graphObj = navGraph(states,links,Weight=weights, ...
Name=names);
Create a graph-based A* path planner.
planner = plannerAStar(graphObj);
Create a deep copy of the plannerAStar
object.
planner2 = copy(planner)
planner2 = plannerAStar with properties: HeuristicCostFcn: @nav.algs.distanceManhattan TieBreaker: 0 Graph: [1x1 navGraph]
Specify a heuristic function returns an estimated time to reach the goal.
planner.HeuristicCostFcn = @(state1,state2) ...
sum(abs(state1-state2),2)/100;
Define the start and goal cities.
start = "Hughenden"; goal = "Brisbane";
Find the shortest path using the graph-based A* algorithm.
[pathOutput,solutionInfo] = plan(planner,start,goal);
Visualize the results.
h = show(graphObj); set(h,XData=graphObj.States.StateVector(:,1), ... YData=graphObj.States.StateVector(:,2)) pathStateIDs = solutionInfo.PathStateIDs; highlight(h,pathStateIDs,EdgeColor="#EDB120",LineWidth=4) highlight(h,pathStateIDs(1),NodeColor="#77AC30",MarkerSize=5) highlight(h,pathStateIDs(end),NodeColor="#D95319",MarkerSize=5)
Input Arguments
planner1
— A* path planner
plannerAStar
object
A* path planner, specified as a plannerAStar
object.
Output Arguments
planner2
— Copy of A* path planner
plannerAStar
object
Copy of A* path planner, returned as a plannerAStar
object.
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
Version History
Introduced in R2023a
See Also
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)