Land Allocation, with simulated annealing
1 回表示 (過去 30 日間)
古いコメントを表示
How to go about converting insturctions on a flow chart to matlab?
For example I have a matrix
M=zeros(10);%
k = randperm(100);
M(k(1:57))=1;
M(k(58:86))=2;
M(k(87:100))=3;
M=
and I have a flow chart that says for L(m) iterations do:
=>Initial start situation costs(0)=>cell change
1 件のコメント
Walter Roberson
2013 年 12 月 17 日
This should probably have been asked as part of http://www.mathworks.co.uk/matlabcentral/answers/109965-simulated-annealing-flow-diagram
採用された回答
Walter Roberson
2013 年 12 月 17 日
"initialize" correspond to assignment.
Doing something for L(m) iterations corresponds to using a "for" loop,
for P = 1 : L(m)
... do the thing here
end
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!