What dose this function mean and what is the differentes ?

1 visualización (últimos 30 días)
Diyara Rashid
Diyara Rashid el 20 de Oct. de 2021
Comentada: DAL el 21 de Oct. de 2021
function u = heuristic0(B)
u = sum(B(:) == 0); %the number of bricks that are zero
end
function u = heuristic1(B)
u = - sum(B(:)); %the negative sum of the values of the bricks
%(remember they are in logarithm, so its not
% the original values being summed)
end
  1 comentario
DAL
DAL el 21 de Oct. de 2021
How would I explain the heuristic function if i combine both of these together?

Iniciar sesión para comentar.

Respuestas (1)

Matt J
Matt J el 20 de Oct. de 2021
Editada: Matt J el 20 de Oct. de 2021
The first is calculating the number of zeros in B and the second is summing all values in B (times -1).
  6 comentarios
Matt J
Matt J el 21 de Oct. de 2021
That's -N wher N is the number of B(i) that equal 1.
DAL
DAL el 21 de Oct. de 2021
wherest the N is the tiles?

Iniciar sesión para comentar.

Categorías

Más información sobre Card games 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