3191
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
3426
|
2 ## |
3922
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
3191
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
3426
|
9 ## |
3922
|
10 ## Octave is distributed in the hope that it will be useful, but |
3191
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
13 ## General Public License for more details. |
|
14 ## |
3191
|
15 ## You should have received a copy of the GNU General Public License |
3922
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
3191
|
19 |
3454
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {[@var{dl}, @var{d2l}] =} logistic_regression_derivatives (@var{x}, @var{z}, @var{z1}, @var{g}, @var{g1}, @var{p}) |
3191
|
22 ## Called by logistic_regression. Calculates derivates of the |
|
23 ## log-likelihood for ordinal logistic regression model. |
3454
|
24 ## @end deftypefn |
3426
|
25 |
3456
|
26 ## Author: Gordon K. Smyth <gks@maths.uq.oz.au> |
5428
|
27 ## Adapted-By: KH <Kurt.Hornik@wu-wien.ac.at> |
3456
|
28 ## Description: Derivates of log-likelihood in logistic regression |
3191
|
29 |
3454
|
30 function [dl, d2l] = logistic_regression_derivatives (x, z, z1, g, g1, p) |
3426
|
31 |
3191
|
32 ## first derivative |
|
33 v = g .* (1 - g) ./ p; v1 = g1 .* (1 - g1) ./ p; |
3238
|
34 dlogp = [(dmult (v, z) - dmult (v1, z1)), (dmult (v - v1, x))]; |
3191
|
35 dl = sum (dlogp)'; |
|
36 |
|
37 ## second derivative |
|
38 w = v .* (1 - 2 * g); w1 = v1 .* (1 - 2 * g1); |
3238
|
39 d2l = [z, x]' * dmult (w, [z, x]) - [z1, x]' * dmult (w1, [z1, x]) ... |
3191
|
40 - dlogp' * dlogp; |
3426
|
41 |
3191
|
42 endfunction |