annotate scripts/deprecated/module.mk @ 12856:cad4cba03f19

Deprecate corrcoef, cor and replace with Matlab equivalent corr The value calculated by Octave's corrcoef and cor are the same as the value calculated by the Matlab function corr. Use MathWorks naming convention for this functionality. * corr.m: New file with functionality of corrcoef.m * cov.m, kendall.m, spearman.m, cor_test.m: Adjust scripts to call corr() * statistics/base/module.mk, deprecated/module.mk: Inform Automake about deprecated functions * NEWS: Inform users about deprecation * stats.txi: Add corr() to documentation.
author Rik <octave@nomad.inbox5.com>
date Sat, 16 Jul 2011 20:38:00 -0700
parents b7a6a3644f3b
children 5d5685216876
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 += deprecated
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 deprecated_FCN_FILES = \
11165
5962c1cfdbcb Deprecate autocor and autocov functions.
Rik <octave@nomad.inbox5.com>
parents: 11151
diff changeset
4 deprecated/autocor.m \
5962c1cfdbcb Deprecate autocor and autocov functions.
Rik <octave@nomad.inbox5.com>
parents: 11151
diff changeset
5 deprecated/autocov.m \
11151
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 10881
diff changeset
6 deprecated/betai.m \
9868
7f4939e76684 deprecate cellidx
Jaroslav Hajek <highegg@gmail.com>
parents: 9794
diff changeset
7 deprecated/cellidx.m \
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 deprecated/clg.m \
12856
cad4cba03f19 Deprecate corrcoef, cor and replace with Matlab equivalent corr
Rik <octave@nomad.inbox5.com>
parents: 12803
diff changeset
9 deprecated/cor.m \
cad4cba03f19 Deprecate corrcoef, cor and replace with Matlab equivalent corr
Rik <octave@nomad.inbox5.com>
parents: 12803
diff changeset
10 deprecated/corrcoef.m \
12556
88558b8eb8a7 Add deprecated entry for cquad() pointing to quadcc().
Rik <octave@nomad.inbox5.com>
parents: 12498
diff changeset
11 deprecated/cquad.m \
12797
71265f725b11 codesprint: Deprecate cut() function.
Rik <octave@nomad.inbox5.com>
parents: 12729
diff changeset
12 deprecated/cut.m \
11226
16d744cce38c deprecate the dispatch function
John W. Eaton <jwe@octave.org>
parents: 11165
diff changeset
13 deprecated/dispatch.m \
10336
1603dfe72933 obsolete fstat, handle the functionality by stat
Jaroslav Hajek <highegg@gmail.com>
parents: 10223
diff changeset
14 deprecated/fstat.m \
11151
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 10881
diff changeset
15 deprecated/gammai.m \
12224
abcd61f965e5 Deprecate glpkmex function and remove from documentation.
Rik <octave@nomad.inbox5.com>
parents: 12210
diff changeset
16 deprecated/glpkmex.m \
10413
271c5262975b deprecate intwarning
Jaroslav Hajek <highegg@gmail.com>
parents: 10336
diff changeset
17 deprecated/intwarning.m \
12498
294c0927c762 Deprecate is_duplicate_entry.
Rik <octave@nomad.inbox5.com>
parents: 12413
diff changeset
18 deprecated/is_duplicate_entry.m \
11151
0c38b45ab49c Deprecate betai, gammai, is_global functions.
Rik <octave@nomad.inbox5.com>
parents: 10881
diff changeset
19 deprecated/is_global.m \
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 deprecated/isstr.m \
11540
b0ef6f28e09a deprecate krylovb function
John W. Eaton <jwe@octave.org>
parents: 11530
diff changeset
21 deprecated/krylovb.m \
12574
89604fa96d2f Deprecate perror, strerror functions.
Rik <octave@nomad.inbox5.com>
parents: 12556
diff changeset
22 deprecated/perror.m \
12803
b7a6a3644f3b codesprint: Deprecate polyderiv.m
Rik <octave@nomad.inbox5.com>
parents: 12797
diff changeset
23 deprecated/polyderiv.m \
11530
13b4fbd2a58b Deprecate replot function.
Rik <octave@nomad.inbox5.com>
parents: 11390
diff changeset
24 deprecated/replot.m \
12210
cd6f7f4f53a3 Deprecate saveimage.m.
Rik <octave@nomad.inbox5.com>
parents: 11540
diff changeset
25 deprecated/saveimage.m \
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 deprecated/setstr.m \
11390
7ca273af4309 Deprecate sphcat and spvcat functions.
Rik <octave@nomad.inbox5.com>
parents: 11226
diff changeset
27 deprecated/sphcat.m \
7ca273af4309 Deprecate sphcat and spvcat functions.
Rik <octave@nomad.inbox5.com>
parents: 11226
diff changeset
28 deprecated/spvcat.m \
12574
89604fa96d2f Deprecate perror, strerror functions.
Rik <octave@nomad.inbox5.com>
parents: 12556
diff changeset
29 deprecated/strerror.m \
12586
f9b7aa3b88f8 Deprecate studentize(), replace with zscore().
Rik <octave@nomad.inbox5.com>
parents: 12574
diff changeset
30 deprecated/studentize.m \
12644
e205ebe2ba67 Deprecate sylvester_matrix.m function
Rik <octave@nomad.inbox5.com>
parents: 12586
diff changeset
31 deprecated/sylvester_matrix.m \
10881
22cd681a4e28 Deprecate values.m
Rik <octave@nomad.inbox5.com>
parents: 10413
diff changeset
32 deprecated/values.m \
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 deprecated/weibcdf.m \
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 deprecated/weibinv.m \
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 deprecated/weibpdf.m \
10223
f493e9be5cd6 remove delete files from module.mk list
John W. Eaton <jwe@octave.org>
parents: 10041
diff changeset
36 deprecated/weibrnd.m
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 FCN_FILES += $(deprecated_FCN_FILES)
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 PKG_ADD_FILES += deprecated/PKG_ADD
9906
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents: 9868
diff changeset
41
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents: 9868
diff changeset
42 DIRSTAMP_FILES += deprecated/$(octave_dirstamp)