Mercurial > hg > octave-lyh
annotate scripts/polynomial/module.mk @ 17181:3a23cbde59d5
interpft.m: Fix interpolation to preserve spectral symmetry (bug #39566)
* interpft.m: Fix interpolation to preserve spectral symmetry, be compatible
with Matlab. Add test cases.
author | Mike Miller <mtmiller@ieee.org> |
---|---|
date | Sun, 04 Aug 2013 17:27:40 -0400 |
parents | fa0cf7d870d7 |
children |
rev | line source |
---|---|
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
1 FCN_FILE_DIRS += polynomial |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
2 |
14523
c541f7addf25
restore correct list of plot/private files in scripts/Makefile
John W. Eaton <jwe@octave.org>
parents:
14509
diff
changeset
|
3 polynomial_PRIVATE_FCN_FILES = \ |
14651
f19d29868346
build: Distribute functions in the polynomial/private directory.
Rik <octave@nomad.inbox5.com>
parents:
14523
diff
changeset
|
4 polynomial/private/__splinefit__.m |
14509 | 5 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
6 polynomial_FCN_FILES = \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
7 polynomial/compan.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
8 polynomial/conv.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
9 polynomial/deconv.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
10 polynomial/mkpp.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
11 polynomial/mpoles.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
12 polynomial/pchip.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
13 polynomial/poly.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
14 polynomial/polyaffine.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
15 polynomial/polyder.m \ |
15200
fa0cf7d870d7
fix .m file missing from dist
John W. Eaton <jwe@octave.org>
parents:
14651
diff
changeset
|
16 polynomial/polyeig.m \ |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
17 polynomial/polyfit.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
18 polynomial/polygcd.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
19 polynomial/polyint.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
20 polynomial/polyout.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
21 polynomial/polyreduce.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
22 polynomial/polyval.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
23 polynomial/polyvalm.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
24 polynomial/ppval.m \ |
9978
13a85d3e13bb
Fix typo and distribute new ppder.m script
Rik <rdrider0-list@yahoo.com>
parents:
9976
diff
changeset
|
25 polynomial/ppder.m \ |
9976
702b998698ea
implement ppder, ppint, ppjmups
Jaroslav Hajek <highegg@gmail.com>
parents:
9906
diff
changeset
|
26 polynomial/ppint.m \ |
702b998698ea
implement ppder, ppint, ppjmups
Jaroslav Hajek <highegg@gmail.com>
parents:
9906
diff
changeset
|
27 polynomial/ppjumps.m \ |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
28 polynomial/residue.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
29 polynomial/roots.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
30 polynomial/spline.m \ |
14509 | 31 polynomial/splinefit.m \ |
14651
f19d29868346
build: Distribute functions in the polynomial/private directory.
Rik <octave@nomad.inbox5.com>
parents:
14523
diff
changeset
|
32 polynomial/unmkpp.m \ |
f19d29868346
build: Distribute functions in the polynomial/private directory.
Rik <octave@nomad.inbox5.com>
parents:
14523
diff
changeset
|
33 $(polynomial_PRIVATE_FCN_FILES) |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
34 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
35 FCN_FILES += $(polynomial_FCN_FILES) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
36 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
37 PKG_ADD_FILES += polynomial/PKG_ADD |
9906 | 38 |
39 DIRSTAMP_FILES += polynomial/$(octave_dirstamp) |