photo

Aristi Christoforou


Last seen: 1 year 前 自 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 years 前 | 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 years 前 | 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 years 前 | 0