1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
function y=fun(x)
y=0
for i =1:6
y=y+sin(x(i));
end
endfunction
x1 = [];
x2 = [6,6,6,6,6,6];
options=list("MaxIter", [1500], "CpuTime", [500],"TolX",[1e-6]);
intcon=1:6
[xopt,fopt,exitflag,output,lambda] = intfminbnd (fun, intcon, x1, x2, options);
// !--error 10000
// intfminbnd: x1 cannot be an empty
// at line 150 of function intfminbnd called by :
// [xopt,fopt,exitflag,output,lambda] = intfminbnd (fun, intcon, x1, x2, options);
// at line 12 of exec file called by :
// intfminbnd_lb1.sce
|