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

3年以上 前 | 0