]> Creatis software - CreaPhase.git/blob - octave_packages/optim-1.2.0/dcdp.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / optim-1.2.0 / dcdp.m
1 %% Copyright (C) 2010, 2011 Olaf Till <i7tiol@t-online.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 %% function prt = dcdp (f, p, dp, func[, bounds])
17 %%
18 %% This is an interface to __dfdp__.m, similar to dfdp.m, but for
19 %% functions only of parameters 'p', not of independents 'x'. See
20 %% dfdp.m.
21 %%
22 %% dfpdp is more general and is meant to be used instead of dcdp in
23 %% optimization.
24
25 function prt = dcdp (f, p, dp, func, bounds)
26
27   if (ischar (func))
28     func = str2func (func);
29   end
30
31   hook.f = f;
32
33   if (nargin > 4)
34     hook.lbounds = bounds(:, 1);
35     hook.ubounds = bounds(:, 2);
36   end
37
38   hook.diffp = abs (dp);
39   hook.fixed = dp == 0;
40   hook.diff_onesided = dp < 0;
41
42   prt = __dfdp__ (p, func, hook);