Aristi Christoforou
Followers: 0 Following: 0
Statistics
RANK
80,636
of 295,467
REPUTATION
0
CONTRIBUTIONS
2 Questions
1 Answer
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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 ago | 3 answers | 0
3
answersQuestion
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 ago | 1 answer | 0
1
answerMATLAB 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 ago | 0