How to call This function
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
function [ solution ] = knapsack_generate_random( problem, ~ ) %KNAPSACK_INITIALIZE_RANDOM generates a solution for the problem
solution = randi(2,1,problem.n_var)-1;
end
Akzeptierte Antwort
Walter Roberson
am 22 Sep. 2013
Sample call:
prob = struct('n_var', 7);
trial_solution = knapsack_generate_random(prob);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!