You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your dubins base functions e.g. dubins_LRL(), you are outputting for 'out' either [angle,distance,angle] or [angle,angle,angle] depending on whether it is CSC or CCC respectively.
In your cost function, dubins_shortest_path(), you are just adding these outputs together, irrespective of their units. It is not clear that you can add an angle (in radians) to a distance and have something meaningful. This appears to be an error.
The text was updated successfully, but these errors were encountered:
In your dubins base functions e.g. dubins_LRL(), you are outputting for 'out' either [angle,distance,angle] or [angle,angle,angle] depending on whether it is CSC or CCC respectively.
In your cost function, dubins_shortest_path(), you are just adding these outputs together, irrespective of their units. It is not clear that you can add an angle (in radians) to a distance and have something meaningful. This appears to be an error.
The text was updated successfully, but these errors were encountered: