photo

Sanuj Shukla


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

Followers: 0   Following: 0

消息

统计学

MATLAB Answers

7 个提问
1 个回答

排名
64,471
of 300,753

声誉
0

贡献数
7 个提问
1 个回答

回答接受率
42.86%

收到投票数
0

排名
 of 21,075

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 170,858

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
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, ~...

12 years 前 | 2 个回答 | 0

2

个回答

提问


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

12 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...

12 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 ...

12 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,...

12 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...

12 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...

13 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); ...

13 years 前 | 2 个回答 | 0

2

个回答