How to find the lowest value of Dist?

1 次查看(过去 30 天)
x=[1 2 3 4 5];
d= [0 10 20 30 40;
10 0 50 60 70;
20 50 0 80 90;
30 60 80 0 100;
40 70 90 100 0];
n=2;
for k=1:n
xp = randperm(numel(x), 2);
x(xp) = x(fliplr(xp))
s = sub2ind(size(d),x(1:end-1),x(2:end ));
Dist = sum(d(s))
end
for k=1:n
xp = randperm(numel(x), 4);
x(xp) = x(fliplr(xp))
s = sub2ind(size(d),x(1:end-1),x(2:end ));
Dist = sum(d(s))
end
lowest_Dist = ?

回答(1 个)

Image Analyst
Image Analyst 2017-12-7
编辑:Image Analyst 2017-12-7
Index Dist:
Dist(k) = sum(d(s))
Then, perhaps:
lowest_Dist = min(Dist)
If not, why not?

类别

Help CenterFile Exchange 中查找有关 Biological and Health Sciences 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by