Variable is undefined on some execution paths.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hello guys!
I hope somebody can advise me with respect the next code, when I run it into embedded editor from simulink embedded block, I have the error that Variable 'pmin' is undefined on some execution paths.
How should I define it if p = uint16
Lmin = inf;
L = 0;
for k = 1:m
% Nearest neighbour tour
p = greedy(s(k),D);
% Improve tour by 2-opt heuristics
[p,L] = exchange2(p,D);
% Keep best tour
if L < Lmin
Lmin = L;
pmin = p;
end
end
% Output
p = double(pmin);
L = Lmin;
I want to the outputs take the value of the If routine. greetings!!
0 comentarios
Respuesta aceptada
Walter Roberson
el 27 de Nov. de 2012
Add
p = uint16(0)
at the top.
Your current code does not define pmin in the case that m < 1
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!