]> Creatis software - CreaPhase.git/blob - octave_packages/nnet-0.1.13/__dradbas.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / nnet-0.1.13 / __dradbas.m
1 ## Copyright (C) 2010 Michel D. Schmid <michaelschmid@users.sourceforge.net>
2 ##
3 ##
4 ## This program is free software; you can redistribute it and/or modify it
5 ## under the terms of the GNU General Public License as published by
6 ## the Free Software Foundation; either version 2, or (at your option)
7 ## any later version.
8 ##
9 ## This program is distributed in the hope that it will be useful, but
10 ## WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 ## General Public License for more details.
13 ##
14 ## You should have received a copy of the GNU General Public License
15 ## along with this program; see the file COPYING.  If not, see
16 ## <http://www.gnu.org/licenses/>.
17
18 ## -*- texinfo -*-
19 ## @deftypefn {Function File} {} __dradbas (@var{n})
20 ## First derivative of the radial basis transfer function.
21 ##
22 ## @code{__dradbas(n) = exp(-n^2)*-2*x}
23 ##
24 ## @end deftypefn
25
26 ## Author: Michel D. Schmid
27
28
29 function retval = __dradbas (n)
30
31   if (nargin != 1)
32     print_usage ();
33   else
34     retval = exp (-n^2)*(-2)*x;
35     # the derivative of exp(-n^2) must be calculated
36     # with help of the chain-rule!
37     # d/dx of e^x = e^x
38     # d/dx of -x^2 = -2x
39     # now calculate the product of both
40   endif
41 endfunction
42
43
44 #%!assert (radbas (3), exp (-3^2));