Borrar filtros
Borrar filtros

Land Allocation, with simulated annealing

1 visualización (últimos 30 días)
Eric
Eric el 17 de Dic. de 2013
Comentada: Eric el 17 de Dic. de 2013
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

Respuesta aceptada

Walter Roberson
Walter Roberson el 17 de Dic. de 2013
"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
  1 comentario
Eric
Eric el 17 de Dic. de 2013
Can you pleas help me a little bit more? o.k so I have this matrix array that contains certain percent's of integers 1,2 and 3. And with this flow diagram I have to switch them accordingly so they lower the total cost of the algorithm. Each cell(numerical integer) has a specific cost to it and I need to arrange them in a way that minimizes cost and maximizes land allocation.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Simulated Annealing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by