]> Creatis software - CreaPhase.git/blob - octave_packages/splines-1.0.7/fnder.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / splines-1.0.7 / fnder.m
1 ## Copyright (C) 2000  Kai Habel
2 ##
3 ## This program is free software; you can redistribute it and/or modify
4 ## it under the terms of the GNU General Public License as published by
5 ## the Free Software Foundation; either version 2 of the License, or
6 ## (at your option) any later version.
7 ##
8 ## This program is distributed in the hope that it will be useful,
9 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 ## GNU General Public License for more details.
12 ##
13 ## You should have received a copy of the GNU General Public License
14 ## along with this program; If not, see <http://www.gnu.org/licenses/>.
15
16 ## -*- texinfo -*-
17 ## @deftypefn {Function File} { } fnder (@var{pp}, @var{order})
18 ## differentiate the spline in pp-form 
19 ##
20 ## @seealso{ppval}
21 ## @end deftypefn
22
23 ## Author:  Kai Habel <kai.habel@gmx.de>
24 ## Date: 20. feb 2001
25
26 function dpp = fnder (pp, o)
27
28   if (nargin < 1 || nargin > 2)
29     usage ("fnder (pp [, order])");
30   endif
31   if (nargin < 2)
32     o = 1;
33   endif
34
35   [X, P, N, K, D] = unmkpp (pp);
36   c = columns (P);
37   r = rows (P);
38
39   for i = 1:o
40     #pp.P = polyder (pp.P); matrix capable polyder is needed.
41     P = P(:, 1:c - 1) .* kron ((c - 1):- 1:1, ones (r,1));
42   endfor
43
44   dpp = mkpp (X, P);
45
46 endfunction