File: fnder.m

package info (click to toggle)
octave-splines 1.3.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: objc: 307; makefile: 2
file content (46 lines) | stat: -rw-r--r-- 1,281 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## Copyright (C) 2001 Kai Habel
##
## This program is free software; you can redistribute it and/or modify it under
## the terms of the GNU General Public License as published by the Free Software
## Foundation; either version 3 of the License, or (at your option) any later
## version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
## details.
##
## You should have received a copy of the GNU General Public License along with
## this program; if not, see <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} { } fnder (@var{pp}, @var{order})
## differentiate the spline in pp-form 
##
## @seealso{ppval}
## @end deftypefn

## Author:  Kai Habel <kai.habel@gmx.de>
## Date: 20. feb 2001

function dpp = fnder (pp, o)

  if (nargin < 1 || nargin > 2)
    print_usage;
  endif
  if (nargin < 2)
    o = 1;
  endif

  [X, P, N, K, D] = unmkpp (pp);
  c = columns (P);
  r = rows (P);

  for i = 1:o
    #pp.P = polyder (pp.P); matrix capable polyder is needed.
    P = P(:, 1:c - 1) .* kron ((c - 1):- 1:1, ones (r,1));
  endfor

  dpp = mkpp (X, P);

endfunction