photo

Aristi Christoforou


Last seen: etwa ein Jahr vor Aktiv seit 2021

Followers: 0   Following: 0

Statistik

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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...

etwa 2 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


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...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
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...

mehr als 3 Jahre vor | 0