blob: 0a22bc4f48319d5bdcae40877df5e648313ee7a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// function is not defined at the starting point
function y = fun(x)
y = 1/x;
endfunction
x1 = [-10];
x2 = [0]
intcon=[1]
[xopt,fopt,exitflag,output,lambda] = intfminbnd (fun, intcon, x1, x2);
// InFeasible Solution.
|