Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how can I make this loop in matlab

조회 수: 1 (최근 30일)
areej abdulshaheed
areej abdulshaheed 2020년 3월 5일
마감: MATLAB Answer Bot 2021년 8월 20일
  댓글 수: 6
darova
darova 2020년 3월 5일
I voted for your question so you can get help faster
Bruno Luong
Bruno Luong 2020년 7월 28일
I voted for your question so you can get help faster
What if you haven't made a vote? :-)

답변 (1개)

Maria
Maria 2020년 7월 28일
Your logic path translates to something like this:
while (1)
[obstfront, minobs] = URG_scane ();
if (obstfront > minobs)
%Rise head
%URG_scane
if (obstfront > minobs)
%Put downs the head
%URG_scane
if (obstright < minobs)
%Turn right 60 min
elseif (obstleft < minobs)
%Turn left 60 mins
else
%Go backward (20 min)
break;
else
%Obstacle climbing 100 mins
end
else
%Go forward 20 MIN
end
end
You should now write the code for each different function (as URG_scane, Go_forward, etc.). Hope this helps!

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by