]> Creatis software - CreaPhase.git/blob - octave_packages/optim-1.2.0/wrap_f_dfdp.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / optim-1.2.0 / wrap_f_dfdp.m
1 %% Copyright (C) 2010 Olaf Till <olaf.till@uni-jena.de>
2 %%
3 %% This program is free software; you can redistribute it and/or modify it under
4 %% the terms of the GNU General Public License as published by the Free Software
5 %% Foundation; either version 3 of the License, or (at your option) any later
6 %% version.
7 %%
8 %% This program is distributed in the hope that it will be useful, but WITHOUT
9 %% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 %% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11 %% details.
12 %%
13 %% You should have received a copy of the GNU General Public License along with
14 %% this program; if not, see <http://www.gnu.org/licenses/>.
15
16 %% [ret1, ret2] = wrap_f_dfdp (f, dfdp, varargin)
17 %%
18 %% f and dftp should be the objective function (or "model function" in
19 %% curve fitting) and its jacobian, respectively, of an optimization
20 %% problem. ret1: f (varagin{:}), ret2: dfdp (varargin{:}). ret2 is
21 %% only computed if more than one output argument is given. This
22 %% manner of calling f and dfdp is needed by some optimization
23 %% functions.
24
25 function [ret1, ret2] = wrap_f_dfdp (f, dfdp, varargin)
26
27   if (nargin < 3)
28     print_usage ();
29   end
30
31   if (ischar (f))
32     f = str2func (f);
33   end
34
35   if (ischar (dfdp))
36     dfdp = str2func (dfdp);
37   end
38
39   ret1 = f (varargin{:});
40
41   if (nargout > 1)
42     ret2 = dfdp (varargin{:});
43   end
44
45 end