Rapidly-exploring Random Trees Algorithm

버전 1.0.0.0 (3.16 KB) 작성자: Omkar Halbe
An example of rapidly-exploring random trees and path planning in 2-D
다운로드 수: 1.3K
업데이트 2015/10/31

라이선스 보기

An example of rapidly-exploring random trees in 2-D
Ref: "Rapidly-Exploring Random Trees: A New Tool for Path Planning", Steven M. LaValle, 1998
%~~~~
% Code can also be converted to function with input format
% [tree, path] = RRT(K, xMin, xMax, yMin, yMax, xInit, yInit, xGoal, yGoal, thresh)
% K is the number of iterations desired.
% xMin and xMax are the minimum and maximum values of x
% yMin and yMax are the minimum and maximum values of y
% xInit and yInit is the starting point of the algorithm
% xGoal and yGoal are the desired endpoints
% thresh is the allowed threshold distance between a random point the the
% goal point.
% Output is the tree structure containing X and Y vertices and the path
% found obtained from Init to Goal
%~~~~
% Written by: Omkar Halbe, Technical University of Munich, 31.10.2015

인용 양식

Omkar Halbe (2026). Rapidly-exploring Random Trees Algorithm (https://kr.mathworks.com/matlabcentral/fileexchange/53772-rapidly-exploring-random-trees-algorithm), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2015a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
버전 게시됨 릴리스 정보
1.0.0.0

Small bug fix.