The current repo belongs to Closed status, and some functions are restricted. For details, please refer to the description of repo status
1 Star 0 Fork 6

梁俊伍/使用kinodynamic RRTStar算法规划轨迹
Closed

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
sample_free_states.m 304 Bytes
Copy Edit Raw Blame History
function [ state ] = sample_free_states( state_limits, obstacles, radius)
not_done = true;
while not_done
state = rand(size(state_limits,1), 1);
state = state.*(state_limits(:,2)-state_limits(:,1))+state_limits(:,1);
not_done = ~is_state_free(state, state_limits, obstacles, radius);
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/liang-junwu/kinodynamic-RRTStar-for-landing-on-small-body.git
git@gitee.com:liang-junwu/kinodynamic-RRTStar-for-landing-on-small-body.git
liang-junwu
kinodynamic-RRTStar-for-landing-on-small-body
使用kinodynamic RRTStar算法规划轨迹
master

Search

0d507c66 1850385 C8b1a773 1850385