photo

Sanuj Shukla


Last seen: 3 years 前 自 2013 起处于活动状态

Followers: 0   Following: 0

消息

统计学

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


what does it mean by writing [~,idx] in code?
for p= 4:4:population dists= total_dist(rand_pair(p-3:p)); [~,idx]=min(dists); best = routes(idx,:); what idx, ~...

11 years 前 | 2 个回答 | 0

2

个回答

提问


how can I display number on city locations ?
figure('Name','City Locations','Numbertitle','on'); plot(xy(:,1),xy(:,2),'bo'); ...........

11 years 前 | 1 个回答 | 0

1

个回答

提问


I am unable to store values for every iteration, values are overwritten in each iteration.
for p = 4:4:population routes = pop(rand_pair(p-3:p),:); dists = total_dist(rand_pair(p-3:p)); [~,id...

11 years 前 | 1 个回答 | 0

1

个回答

提问


I want to terminate the program when route distance becomes 75. But in command window program keeps running till the condition of iterations is achieved.
function genetic4() xy =[ 6.9409 0.2259 1.7989 5.2270 3.1137 4.5593 ...

11 years 前 | 1 个回答 | 0

1

个回答

提问


I want to apply genetic algorithm on given nodes in TSP. How can I choose population and then apply crossover and mutation to get optimum path?
loc = [0.3663, 0.9076; 0.7459, 0.8713; 0.4521, 0.8465; 0.7624, 0.7459; 0.7096, 0.7228; 0.0710, 0.7426; 0.4224, 0.7129; 0.5908,...

11 years 前 | 1 个回答 | 0

1

个回答

提问


How can I Count no. of objects in a image?
I want to count no. of objects like men (in a group photograph), coins in a image etc. for ex-- http://blogs.mathworks.com/i...

11 years 前 | 1 个回答 | 0

1

个回答

已回答
Can anyone suggest me to write a correct and working code for traveling salesman problem using simulated annealing? I got this but there are so many errors:
Instead of using this routine (ie not using uniform distribution or random function) what else can I change in my code to elim...

11 years 前 | 0

提问


Can anyone suggest me to write a correct and working code for traveling salesman problem using simulated annealing? I got this but there are so many errors:
% Travellingsalesman problem % Create random city distribution n=20; x=random('unif',-1,1,n,1); ...

11 years 前 | 2 个回答 | 0

2

个回答