Implementation of grid search for a function

3 次查看(过去 30 天)
I am trying to run a grid search and find x*. but it gives me "Not enough input arguments".
funktion = @(x) sqrt(x) + 2*sqrt(1-x);
x = [0:0.001:1];
x_star_grid = grid(funktion, x)
function [f_benchmark, domain_max] = grid(funktion, domains)
domain_max = -1e+5;
for i = 1:length(domains)
z= domains(i);
disp(z)
f = feval(funktion, z);
if f>=f_benchmark
f_benchmark = f;
domain_max = domains(i);
end
end
end

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Direct Search 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by