This repository contains the MATLAB implementation of a* (A-Star) search algorithm.
A* search algorithm is a heuristic search algorithm used to find the shortest path between two points. It uses both cost and heuristic function to evaluate the best path. In this implementation, the heuristic function used is Euclidean distance.
a_star_algorithm.m
in MATLAB.The implementation is based on a grid map where each cell can be either free or occupied. The cost of moving between two adjacent cells is one. If a cell is occupied then it has an infinite cost.
The heuristic function used is Euclidean distance which can be easily changed according to the user's preference.
gistlibby LogSnag