Skip to content
Snippets Groups Projects
Commit 2d717dbd authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed returned fvec and fjac with solve_algo=3.

parent e001d448
Branches
No related tags found
No related merge requests found
...@@ -264,6 +264,7 @@ elseif options.solve_algo == 3 ...@@ -264,6 +264,7 @@ elseif options.solve_algo == 3
else else
[x,info] = csolve(func,x,[],1e-6,500,varargin{:}); [x,info] = csolve(func,x,[],1e-6,500,varargin{:});
end end
[fvec, fjac] = feval(func, x, varargin{:});
elseif options.solve_algo == 10 elseif options.solve_algo == 10
% LMMCP % LMMCP
olmmcp = options.lmmcp; olmmcp = options.lmmcp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment