Community Profile

photo

Sanuj Shukla


Last seen: 2 years ago Active since 2013

Followers: 0   Following: 0

Message

Statistics

  • Thankful Level 1

View badges

Feeds

View by

Question


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 ago | 2 answers | 0

2

answers

Question


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

11 years ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Answered
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 ago | 0

Question


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 ago | 2 answers | 0

2

answers