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, ~...
12年弱 前 | 2 件の回答 | 0
2
回答質問
how can I display number on city locations ?
figure('Name','City Locations','Numbertitle','on'); plot(xy(:,1),xy(:,2),'bo'); ...........
12年弱 前 | 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...
12年弱 前 | 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 ...
12年弱 前 | 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,...
12年弱 前 | 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...
12年弱 前 | 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...
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...
12年弱 前 | 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); ...
12年弱 前 | 2 件の回答 | 0