Is there a way to create a Dubins path given a set of waypoints?

조회 수: 23 (최근 30일)
Shubham Kalpande
Shubham Kalpande 2021년 6월 12일
답변: Jianxin Sun 2021년 6월 14일
I want my UAV model to fly through a set of waypoints, is there any way I can decompose the path into dubins connections i.e straight line segments and circular arcs?

답변 (2개)

Yiping Liu
Yiping Liu 2021년 6월 13일
편집: Walter Roberson 2021년 6월 13일
Please check the example in the doc page below
  댓글 수: 1
Shubham Kalpande
Shubham Kalpande 2021년 6월 13일
Yeah, but this requires start pose and goal pose. I want to connect a set of waypoints. How can I do that?

댓글을 달려면 로그인하십시오.


Jianxin Sun
Jianxin Sun 2021년 6월 14일
The connect method of uavDubinsConnection can accept pairs of start and goal poses. Assume your waypoints are defined as a Nx4 matrix. Each row is one waypoint in [x, y, z, course angle] format. The following two lines should provide N-1 dubin's path connecting all your waypoints.
connector = uavDubinsConnection;
connector.connect(waypoints(1:end-1, :), waypoints(2:end, :))

카테고리

Help CenterFile Exchange에서 UAV에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by