photo

Aristi Christoforou


Last seen: 1년 초과 전 2021년부터 활동

Followers: 0   Following: 0

통계

  • First Answer

배지 보기

Feeds

보기 기준

질문


how to find the optimal path to catch a target when the target is moving using q-learning
hello i would like to find the optimal action of an agent when the target that he wants to catch is moving using q-learning . M...

2년 초과 전 | 답변 수: 3 | 0

3

답변

질문


optimal path problem using q-learning algorithm
hello i want to find the optimal path for my target to the nearest corner of an environment with 3 obstacles using q-learning. F...

2년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
MATLAB CODE NEWTON METHOD
function[root]=newtonmethod(f,df,xo,tol,n) xn=xo; for k=1:n xn1=xn-f(xn)/df(xn); dx=abs(xn1-xn); xn=xn1; i...

거의 4년 전 | 0