Mercurial > hg > octave-lyh
annotate scripts/ChangeLog @ 8602:827f0285a201
spline.m doc fix
author | carlo@guglielmo.local |
---|---|
date | Tue, 27 Jan 2009 12:48:34 -0500 |
parents | b297b86f4ad9 |
children | 9fc72c114ce1 |
rev | line source |
---|---|
8602 | 1 2009-01-27 Carlo de Falco <kingcrimson@tsicali.it> |
2 | |
3 * polynomial/spline.m: Doc fix. | |
4 | |
8601
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
5 2009-01-27 S�ren Hauberg <hauberg@gmail.com> |
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
6 |
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
7 * general/gradient.m: Handle computing the gradient of a function |
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
8 handle. |
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
9 |
8600 | 10 2009-01-27 Jaroslav Hajek <highegg@gmail.com> |
11 | |
12 * optimization/lsqnonneg.m: Reimplement using QR updating for | |
13 square and overdetermined systems. | |
14 | |
8596
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
15 2009-01-27 Jaroslav Hajek <highegg@gmail.com> |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
16 |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
17 * optimization/fsolve.m: Provide default values on request. |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
18 Adjust some defaults. |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
19 * optimization/fzero.m: Dtto. |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
20 * optimization/optimset.m: Query optimal values via the M*b way. |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
21 |
8594
756b0ba61350
orderfields.m: avoid loop for non-empty cases. New tests.
Jason Riedy <jason@acm.org>
parents:
8592
diff
changeset
|
22 2009-01-26 Jason Riedy <jason@acm.org> |
756b0ba61350
orderfields.m: avoid loop for non-empty cases. New tests.
Jason Riedy <jason@acm.org>
parents:
8592
diff
changeset
|
23 |
756b0ba61350
orderfields.m: avoid loop for non-empty cases. New tests.
Jason Riedy <jason@acm.org>
parents:
8592
diff
changeset
|
24 * miscellaneous/orderfields.m: Also avoid loop for non-empty structs. |
756b0ba61350
orderfields.m: avoid loop for non-empty cases. New tests.
Jason Riedy <jason@acm.org>
parents:
8592
diff
changeset
|
25 |
8592
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
26 2009-01-17 Jaroslav Hajek <highegg@gmail.com> |
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
27 |
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
28 * optimization/fsolve.m: Disable Broyden updates for sparse jacobians. |
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
29 |
8591 | 30 2009-01-17 Jaroslav Hajek <highegg@gmail.com> |
31 | |
32 * optimization/__fsolve_defopts__.m: Remove. | |
33 * optimization/Makefile.in: Reflect change. | |
34 | |
8590 | 35 2009-01-17 Jaroslav Hajek <highegg@gmail.com> |
36 | |
37 * optimization/__fdjac__.m: Fix setting up h. | |
38 * optimization/fsolve.m: Allow underdetermined systems. Use QR for | |
39 large enough square and overdetermined systems, with pivoting in the | |
40 first step. Simplify options. Adjust defaults - make TR radius | |
41 tolerance less stringent. Support DisplayFcn. | |
42 | |
8586
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8585
diff
changeset
|
43 2008-12-24 Ben Abbott <bpabbott@mac.com> |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8585
diff
changeset
|
44 |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8585
diff
changeset
|
45 * path/savepath.m: Respect cmd-line and env paths. |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8585
diff
changeset
|
46 |
8585
e6497be3f3d6
Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents:
8582
diff
changeset
|
47 2009-01-24 Ben Abbott <bpabbott@mac.com> |
e6497be3f3d6
Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents:
8582
diff
changeset
|
48 |
e6497be3f3d6
Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents:
8582
diff
changeset
|
49 * sparse/svds.m: svds.m: skip tests if ARPACK is missing. |
e6497be3f3d6
Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents:
8582
diff
changeset
|
50 |
8601
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
51 2009-01-23 S�ren Hauberg <hauberg@gmail.com> |
8582 | 52 |
53 * help/type.m: Make 'type X' work, when X is the name of a variable. | |
54 | |
8575
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
55 2009-01-22 John W. Eaton <jwe@octave.org> |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
56 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
57 * help/which.m: New function. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
58 * help/Makefile.in (SOURCES): Add it to the list. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
59 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
60 * help/help.m: Also display location of the file before the help text. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
61 * help/print_usage: Also display additional help text. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
62 * help/__additional_help_message__.m: Return message instead of |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
63 displaying it. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
64 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
65 2009-01-22 S�ren Hauberg <hauberg@gmail.com> |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
66 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
67 * help: New directory. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
68 * configure.in (AC_CONFIG_FILES): Add help/Makefile to the list. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
69 * Makefile.in (SUBDIRS): Add it to the list. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
70 * help/__additional_help_message__.m, help/__strip_html_tags__.m, |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
71 help/gen_doc_cache.m, help/get_first_help_sentence.m, help/help.m, |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
72 help/lookfor.m, help/makeinfo.m, help/print_usage.m, help/type.m: |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
73 New functions. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
74 * help/Makefile.in (SOURCES): Add them to the list. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
75 * help/doc.m: Move here from miscellaneous/doc.m. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
76 * miscellaneous/Makefile.in (SOURCES): Remove doc.m from the list. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
77 * miscellaneous/pkg.m: Generate documentation cache during install. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
78 |
8562
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8558
diff
changeset
|
79 2009-01-22 Jaroslav Hajek <highegg@gmail.com> |
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8558
diff
changeset
|
80 |
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8558
diff
changeset
|
81 * optimization/fsolve.m: Undo the last change. |
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8558
diff
changeset
|
82 |
8558
438520011621
Check for successful build of the documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8557
diff
changeset
|
83 2009-01-18 Thorsten Meyer <thorsten.meyier@gmx.de> |
438520011621
Check for successful build of the documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8557
diff
changeset
|
84 |
438520011621
Check for successful build of the documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8557
diff
changeset
|
85 * miscellaneous/doc.m: Add test for existence of info file. |
438520011621
Check for successful build of the documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8557
diff
changeset
|
86 |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
87 2009-01-21 John W. Eaton <jwe@octave.org> |
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
88 |
8557
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
89 * plot/__axis_label__.m: Set properties in existing axis label |
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
90 object instead of creating a new text object. |
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
91 * plot/ylabel.m: Don't set rotation property here. |
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
92 * plot/title.m: Don't set horizontalalignment property here. |
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
93 |
8556
d81caf2e3a28
ylabel.m: handle rotation property here, not in __axis_label__.m
John W. Eaton <jwe@octave.org>
parents:
8554
diff
changeset
|
94 * plot/ylabel.m: Insert rotation property in varargin before |
d81caf2e3a28
ylabel.m: handle rotation property here, not in __axis_label__.m
John W. Eaton <jwe@octave.org>
parents:
8554
diff
changeset
|
95 passing it on to __axis_label__. |
d81caf2e3a28
ylabel.m: handle rotation property here, not in __axis_label__.m
John W. Eaton <jwe@octave.org>
parents:
8554
diff
changeset
|
96 * plot/__axis_label__.m: Don't set rotation for ylabel here. |
d81caf2e3a28
ylabel.m: handle rotation property here, not in __axis_label__.m
John W. Eaton <jwe@octave.org>
parents:
8554
diff
changeset
|
97 |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
98 * plot/title.m: Insert horizontalalignment property in varargin |
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
99 before passing it on to __axis_label__. |
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
100 |
8552
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
101 2009-01-21 Jaroslav Hajek <highegg@gmail.com> |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
102 |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
103 * strings/strchr.m: New function. |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
104 * strings/Makefile.in: Add it. |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
105 |
8550
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
106 2009-01-20 Jaroslav Hajek <highegg@gmail.com> |
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
107 |
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
108 * optimization/fsolve.m: Only use qrupdate if available. |
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
109 |
8538
f4a4f914462e
assert.m: use isfield instead of struct_contains
John W. Eaton <jwe@octave.org>
parents:
8533
diff
changeset
|
110 2009-01-20 John W. Eaton <jwe@octave.org> |
f4a4f914462e
assert.m: use isfield instead of struct_contains
John W. Eaton <jwe@octave.org>
parents:
8533
diff
changeset
|
111 |
8545
faccdb98d953
postpad.m, prepad.m: doc fix
John W. Eaton <jwe@octave.org>
parents:
8544
diff
changeset
|
112 * general/postpad.m: Doc fix. |
faccdb98d953
postpad.m, prepad.m: doc fix
John W. Eaton <jwe@octave.org>
parents:
8544
diff
changeset
|
113 * general/prepad.m: Doc fix. |
8544 | 114 * image/pink.m: Spelling fix. |
115 * image/hsv.m: Doc fix. | |
116 From Francesco Potorti` <Potorti@isti.cnr.it>. | |
8543 | 117 |
8538
f4a4f914462e
assert.m: use isfield instead of struct_contains
John W. Eaton <jwe@octave.org>
parents:
8533
diff
changeset
|
118 * testfun/assert.m: Use isfield instead of struct_contains. |
f4a4f914462e
assert.m: use isfield instead of struct_contains
John W. Eaton <jwe@octave.org>
parents:
8533
diff
changeset
|
119 |
8533
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
120 2009-01-17 Ben Abbott <bpabbott@mac.com> |
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
121 |
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
122 * general/cart2sph.m, cart2pol.m, sph2cart.m pol2cart.m: |
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
123 Permit scalars when transforming coordinates. |
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
124 |
8532
4d884a016846
__quiver__.m: __quiver__.m: Fix auto-size of (x,y) coord.
Ben Abbott <bpabbott@mac.com>
parents:
8530
diff
changeset
|
125 2009-01-17 Steven Verstoep <isgoed@hotmail.com> |
4d884a016846
__quiver__.m: __quiver__.m: Fix auto-size of (x,y) coord.
Ben Abbott <bpabbott@mac.com>
parents:
8530
diff
changeset
|
126 |
4d884a016846
__quiver__.m: __quiver__.m: Fix auto-size of (x,y) coord.
Ben Abbott <bpabbott@mac.com>
parents:
8530
diff
changeset
|
127 * plot/__quiver__.m: __quiver__.m: Fix auto-size of (x,y) coord. |
4d884a016846
__quiver__.m: __quiver__.m: Fix auto-size of (x,y) coord.
Ben Abbott <bpabbott@mac.com>
parents:
8530
diff
changeset
|
128 |
8530
c7e49bf03d42
Fix for handling options
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8529
diff
changeset
|
129 2009-01-16 Daniel J Sebald <daniel.sebald@ieee.org> |
c7e49bf03d42
Fix for handling options
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8529
diff
changeset
|
130 |
c7e49bf03d42
Fix for handling options
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8529
diff
changeset
|
131 * plot/gnuplot_drawnow.m: Fix for handling options. |
c7e49bf03d42
Fix for handling options
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8529
diff
changeset
|
132 |
8529
774b44619c5c
Fix legend order for both horizontal and vertical string cell.
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8528
diff
changeset
|
133 2009-01-16 Daniel J Sebald <daniel.sebald@ieee.org> |
774b44619c5c
Fix legend order for both horizontal and vertical string cell.
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8528
diff
changeset
|
134 |
774b44619c5c
Fix legend order for both horizontal and vertical string cell.
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8528
diff
changeset
|
135 * plot/legend.m: Fix legend order for both horizontal and |
774b44619c5c
Fix legend order for both horizontal and vertical string cell.
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8528
diff
changeset
|
136 vertical string cell. |
774b44619c5c
Fix legend order for both horizontal and vertical string cell.
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8528
diff
changeset
|
137 |
8528 | 138 2008-01-15 Ben Abbott <bpabbott@mac.com> |
139 | |
140 * plot/grid.m: Document handle argument. | |
141 | |
8522
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
142 2009-01-15 Peter L. S�ndergaard <peter@sonderport.dk> |
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
143 |
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
144 * general/nargoutchk.m: Doc fix. |
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
145 * general/nargchk.m: Improve compatibility. New tests. |
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
146 |
8521 | 147 2008-01-15 Rafael Laboissiere <rafael@debian.org> |
148 | |
149 * gethelp.cc: Include <cstdio>. | |
150 | |
8518
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8517
diff
changeset
|
151 2009-01-14 Ben Abbott <bpabbott@mac.com> |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8517
diff
changeset
|
152 |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8517
diff
changeset
|
153 * plot/__go_draw_axes__.m (ticklabel_to_cell): New function. |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8517
diff
changeset
|
154 Use it to handle non-cell ticklabels. |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8517
diff
changeset
|
155 |
8517
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
156 2009-01-14 S�ren Hauberg <hauberg@gmail.com> |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
157 |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
158 * general/diff.m, general/logspace.m, general/nextpow2.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
159 linear-algebra/commutation_matrix.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
160 linear-algebra/duplication_matrix.m, linear-algebra/expm.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
161 miscellaneous/bincoeff.m, miscellaneous/list_primes.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
162 optimization/fsolve.m, plot/subplot.m, polynomial/pchip.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
163 polynomial/polyout.m, polynomial/residue.m, polynomial/spline.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
164 signal/freqz.m, signal/sinc.m, specfun/beta.m, specfun/betaln.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
165 specfun/nchoosek.m, specfun/pow2.m, special-matrix/hankel.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
166 special-matrix/hilb.m, special-matrix/invhilb.m |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
167 special-matrix/sylvester_matrix.m, special-matrix/toeplitz.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
168 special-matrix/vander.m, statistics/base/gls.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
169 statistics/base/kendall.m, statistics/base/kurtosis.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
170 statistics/base/mean.m, statistics/base/median.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
171 statistics/base/ols.m, statistics/base/skewness.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
172 statistics/distributions/kolmogorov_smirnov_cdf.m: |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
173 Use ifnottex instead of ifinfo. |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
174 |
8509
841f8e3370c6
dlmwrite.m: use '%c' format for character data
John W. Eaton <jwe@octave.org>
parents:
8508
diff
changeset
|
175 2009-01-14 John W. Eaton <jwe@octave.org> |
841f8e3370c6
dlmwrite.m: use '%c' format for character data
John W. Eaton <jwe@octave.org>
parents:
8508
diff
changeset
|
176 |
8517
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
177 * linear-algebra/expm.m: |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
178 |
8513 | 179 * optimization/fsolve.m: Doc fix. |
180 | |
8510
738cb6271933
__go_draw_axes__.m: scale markersize by 1/3 instead of 1/6
John W. Eaton <jwe@octave.org>
parents:
8509
diff
changeset
|
181 * plot/__go_draw_axes__.m: Scale markersize by 1/3, not 1/6. |
738cb6271933
__go_draw_axes__.m: scale markersize by 1/3 instead of 1/6
John W. Eaton <jwe@octave.org>
parents:
8509
diff
changeset
|
182 |
8509
841f8e3370c6
dlmwrite.m: use '%c' format for character data
John W. Eaton <jwe@octave.org>
parents:
8508
diff
changeset
|
183 * io/dlmwrite.m: Use '%c' format for character data. |
841f8e3370c6
dlmwrite.m: use '%c' format for character data
John W. Eaton <jwe@octave.org>
parents:
8508
diff
changeset
|
184 |
8506 | 185 2009-01-13 John W. Eaton <jwe@octave.org> |
186 | |
8508
dee629f14bfa
repmat.m: handle negative dimensions properly
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
187 * general/repmat.m: Handle negative row or column dimension. |
dee629f14bfa
repmat.m: handle negative dimensions properly
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
188 |
8507 | 189 * elfun/lcm.m, general/accumarray.m, general/bicubic.m, |
190 general/cellidx.m, general/cplxpair.m, general/dblquad.m, | |
191 general/gradient.m, general/interp1.m , general/pol2cart.m, | |
192 general/quadgk.m, general/quadv.m, general/repmat.m, | |
193 general/structfun.m, geometry/griddata.m, geometry/inpolygon.m, | |
194 image/brighten.m, image/hsv2rgb.m, image/imread.m, | |
195 image/imwrite.m, linear-algebra/dmult.m, | |
196 linear-algebra/onenormest.m, miscellaneous/getfield.m, | |
197 miscellaneous/setfield.m, miscellaneous/what.m, | |
198 optimization/fsolve.m, optimization/fzero.m, | |
199 optimization/lsqnonneg.m, optimization/qp.m, pkg/pkg.m, | |
200 plot/__area__.m, plot/__clabel__.m, plot/__stem__.m, plot/axis.m, | |
201 plot/colorbar.m, plot/contour3.m, plot/findall.m, plot/findobj.m, | |
202 plot/fplot.m, plot/grid.m, plot/hist.m, polynomial/convn.m, | |
203 polynomial/polyreduce.m, set/intersect.m, set/setxor.m, | |
204 set/union.m, signal/arch_fit.m, signal/durbinlevinson.m, | |
205 signal/fftshift.m, signal/freqz_plot.m, signal/ifftshift.m, | |
206 signal/spectral_adf.m, sparse/bicgstab.m, sparse/cgs.m, | |
207 sparse/gplot.m, sparse/normest.m, sparse/pcg.m, sparse/pcr.m, | |
208 sparse/spy.m, sparse/svds.m, sparse/treelayout.m, | |
209 sparse/treeplot.m, specfun/primes.m, special-matrix/hadamard.m, | |
210 statistics/base/center.m, statistics/base/quantile.m, | |
211 statistics/base/ranks.m, statistics/base/std.m, | |
212 statistics/distributions/hygepdf.m, | |
213 statistics/tests/kruskal_wallis_test.m, strings/index.m, | |
214 strings/mat2str.m, strings/str2double.m, strings/strrep.m, | |
215 testfun/assert.m, testfun/example.m, testfun/fail.m, | |
216 testfun/speed.m, testfun/test.m: Style fixes. | |
217 | |
8506 | 218 * audio/wavread.m, general/__splinen__.m, general/bicubic.m, |
219 general/rat.m, linear-algebra/expm.m, linear-algebra/krylov.m, | |
220 linear-algebra/onenormest.m, miscellaneous/edit.m, | |
221 optimization/__dogleg__.m, pkg/pkg.m, plot/__errplot__.m, | |
222 plot/__go_draw_axes__.m, plot/__stem__.m, plot/findobj.m, | |
223 set/ismember.m, signal/arma_rnd.m, signal/freqz.m, signal/stft.m, | |
224 sparse/pcg.m, sparse/sprandsym.m, sparse/treelayout.m, | |
225 specfun/factor.m, specfun/nchoosek.m, specfun/primes.m, | |
226 statistics/base/quantile.m, statistics/base/values.m, | |
227 strings/findstr.m, strings/str2double.m, strings/strrep.m, | |
228 testfun/assert.m, testfun/fail.m, testfun/speed.m, testfun/test.m, | |
229 time/datestr.m, time/datevec.m: Comment style fixes. | |
230 | |
8502
d437e8dc18fa
make unique work for row vectors
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8467
diff
changeset
|
231 2009-01-13 Daniel J Sebald <daniel.sebald@ieee.org> |
d437e8dc18fa
make unique work for row vectors
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8467
diff
changeset
|
232 |
d437e8dc18fa
make unique work for row vectors
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8467
diff
changeset
|
233 * set/unique.m: Fix for vertical array inputs. |
d437e8dc18fa
make unique work for row vectors
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8467
diff
changeset
|
234 |
8466 | 235 2009-01-12 John W. Eaton <jwe@octave.org> |
236 | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8466
diff
changeset
|
237 * optimization/fzero.m, optimization/fsolve.m: Style fixes. |
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8466
diff
changeset
|
238 Use strcmpi to compare options. |
8466 | 239 |
8462
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
240 2009-01-12 Thorsten Meyer <thorsten.meyier@gmx.de> |
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
241 |
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
242 * strings/strvcat.m: Remove. |
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
243 * strings/Makefile.in (SOURCES): Remove strvcat.m. |
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
244 |
8460
e4c9ecb64411
diffuse.m, specular.m, surfl.m: style fixes
John W. Eaton <jwe@octave.org>
parents:
8455
diff
changeset
|
245 2009-01-12 John W. Eaton <jwe@octave.org> |
e4c9ecb64411
diffuse.m, specular.m, surfl.m: style fixes
John W. Eaton <jwe@octave.org>
parents:
8455
diff
changeset
|
246 |
e4c9ecb64411
diffuse.m, specular.m, surfl.m: style fixes
John W. Eaton <jwe@octave.org>
parents:
8455
diff
changeset
|
247 * plot/diffuse.m, plot/surfl.m, plot/specular.m: Style fixes. |
e4c9ecb64411
diffuse.m, specular.m, surfl.m: style fixes
John W. Eaton <jwe@octave.org>
parents:
8455
diff
changeset
|
248 |
8455
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
249 2009-01-11 Jaroslav Hajek <highegg@gmail.com> |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
250 |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
251 * general/sortrows.m: Fix invalid `{x:y} = z' assignment. |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
252 * miscellaneous/orderfields.m: Dtto. |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
253 * miscellaneous/what.m: Dtto. |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
254 * pkg/pkg.m: Dtto. |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
255 * plot/ndgrid.m: Dtto. |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
256 * strings/strcat.m: Dtto. |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
257 |
8451 | 258 2009-01-09 Kai Habel <kai.habel@gmx.de> |
259 | |
260 * plot/surfl.m: New function | |
261 * plot/diffuse.m: dito | |
262 * plot/specular.m: dito | |
263 | |
8445
dd52e541418b
scripts/mkdoc: set defaults for FIND and PERL; check usage
John W. Eaton <jwe@octave.org>
parents:
8444
diff
changeset
|
264 2009-01-05 John W. Eaton <jwe@octave.org> |
dd52e541418b
scripts/mkdoc: set defaults for FIND and PERL; check usage
John W. Eaton <jwe@octave.org>
parents:
8444
diff
changeset
|
265 |
dd52e541418b
scripts/mkdoc: set defaults for FIND and PERL; check usage
John W. Eaton <jwe@octave.org>
parents:
8444
diff
changeset
|
266 * mkdoc: Set defaults for FIND and PERL. Check usage. |
dd52e541418b
scripts/mkdoc: set defaults for FIND and PERL; check usage
John W. Eaton <jwe@octave.org>
parents:
8444
diff
changeset
|
267 |
8443
34c0acf11539
Fix error messages in __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8442
diff
changeset
|
268 2009-01-01 Thorsten Meyer <thorsten.meyier@gmx.de> |
34c0acf11539
Fix error messages in __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8442
diff
changeset
|
269 |
34c0acf11539
Fix error messages in __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8442
diff
changeset
|
270 * miscellaneous/__xzip__.m: Fix error messages, add tests. |
34c0acf11539
Fix error messages in __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8442
diff
changeset
|
271 |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
272 2008-12-26 Thorsten Meyer <thorsten.meyier@gmx.de> |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
273 |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
274 * general/int2str.m, general/num2str.m, strings/base2dec.m, |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
275 strings/blanks.m, strings/cstrcat.m, strings/findstr.m, |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
276 strings/isstrprop.m, strings/mat2str.m, strings/regexptranslate.m, |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
277 strings/split.m, strings/str2double.m, strings/str2num.m, |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
278 strings/strcat.m, strings/strcmpi.m, strings/strfind.m, |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
279 strings/strjust.m, strings/strmatch.m, strings/strncmpi.m, |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
280 strings/strrep.m, strings/strtok.m, strings/strtrim.m, |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
281 strings/strtrunc.m, strings/strvcat.m, strings/substr.m: |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
282 Fix documentation strings, add examples, references and tests. |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
283 * scripts/general/int2str.m: Add missing semicolon. |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
284 * scripts/strings/regexptranslate.m: add nargin check. |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
285 * scripts/strings/str2double.m: fix nargin check. |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
286 |
8440
e792c736b1ac
Fix for dense grids and speed up for voronoi function
David Bateman <dbateman@free.fr>
parents:
8438
diff
changeset
|
287 2008-12-29 David Bateman <dbateman@free.fr> |
e792c736b1ac
Fix for dense grids and speed up for voronoi function
David Bateman <dbateman@free.fr>
parents:
8438
diff
changeset
|
288 |
e792c736b1ac
Fix for dense grids and speed up for voronoi function
David Bateman <dbateman@free.fr>
parents:
8438
diff
changeset
|
289 * goemetry/voronoi.m: Speed up and handle dense grids. |
e792c736b1ac
Fix for dense grids and speed up for voronoi function
David Bateman <dbateman@free.fr>
parents:
8438
diff
changeset
|
290 |
8438 | 291 2008-12-28 Jaroslav Hajek <highegg@gmail.com> |
292 | |
293 * miscellaneous/delete.m: Allow filename globs. Display warnings if | |
294 operation fails. | |
295 | |
8427
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
296 2008-12-26 Francesco Potortì <pot@gnu.org> |
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
297 |
8436
342f72c1df1a
In prepad, add reference to postpad.
Francesco Potortì <pot@gnu.org>
parents:
8435
diff
changeset
|
298 * general/prepad.m: Add reference to postpad. |
342f72c1df1a
In prepad, add reference to postpad.
Francesco Potortì <pot@gnu.org>
parents:
8435
diff
changeset
|
299 |
8435
69e27978114a
bincoeff.m: make reference to nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8433
diff
changeset
|
300 * miscellaneous/bincoeff.m: Make reference to nchoosek. |
69e27978114a
bincoeff.m: make reference to nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8433
diff
changeset
|
301 |
8433
3292bd1bbaa4
Cross reference between postpad and resize
Francesco Potortì <pot@gnu.org>
parents:
8430
diff
changeset
|
302 * general/postpad.m: Use @seealso. Add reference to resize. |
3292bd1bbaa4
Cross reference between postpad and resize
Francesco Potortì <pot@gnu.org>
parents:
8430
diff
changeset
|
303 |
8430
24e4dc8b0e3a
Correct help string for statistics.m
Francesco Potortì <pot@gnu.org>
parents:
8427
diff
changeset
|
304 * statistics/base/statistics.m: Correct help string. |
24e4dc8b0e3a
Correct help string for statistics.m
Francesco Potortì <pot@gnu.org>
parents:
8427
diff
changeset
|
305 |
8427
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
306 * plot/hist.m: Doc string now mentions matrix input argument. |
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
307 Correct error message. |
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
308 |
8441
cc3ac5eb6be3
__contour__.m: __contour__.m: correct order of patches
Ben Abbott <bpabbott@mac.com>
parents:
8440
diff
changeset
|
309 2008-12-30 Ben Abbott <bpabbott@mac.com> |
cc3ac5eb6be3
__contour__.m: __contour__.m: correct order of patches
Ben Abbott <bpabbott@mac.com>
parents:
8440
diff
changeset
|
310 |
cc3ac5eb6be3
__contour__.m: __contour__.m: correct order of patches
Ben Abbott <bpabbott@mac.com>
parents:
8440
diff
changeset
|
311 * plot/__contour__.m: __contour__.m: correct order of patches |
cc3ac5eb6be3
__contour__.m: __contour__.m: correct order of patches
Ben Abbott <bpabbott@mac.com>
parents:
8440
diff
changeset
|
312 |
8450
6c4e2fc14beb
Add new 3D plotting function surfl. Add light functions diffuse and specular
Kai Habel
parents:
8445
diff
changeset
|
313 2008-12-30 Ben Abbott <bpabbott@mac.com> |
6c4e2fc14beb
Add new 3D plotting function surfl. Add light functions diffuse and specular
Kai Habel
parents:
8445
diff
changeset
|
314 |
6c4e2fc14beb
Add new 3D plotting function surfl. Add light functions diffuse and specular
Kai Habel
parents:
8445
diff
changeset
|
315 * plot/__contour__.m: __contour__.m: correct order of patches |
6c4e2fc14beb
Add new 3D plotting function surfl. Add light functions diffuse and specular
Kai Habel
parents:
8445
diff
changeset
|
316 |
8424
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
317 2008-12-24 Doug Stewart <dastew@sympatico.ca> |
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
318 |
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
319 * plot/grid.m: Handle "minor" option. |
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
320 |
8422
20cbb0fdab48
test.m: print "has no tests" message if there are demos but no tests
John W. Eaton <jwe@octave.org>
parents:
8417
diff
changeset
|
321 2008-12-24 John W. Eaton <jwe@octave.org> |
20cbb0fdab48
test.m: print "has no tests" message if there are demos but no tests
John W. Eaton <jwe@octave.org>
parents:
8417
diff
changeset
|
322 |
20cbb0fdab48
test.m: print "has no tests" message if there are demos but no tests
John W. Eaton <jwe@octave.org>
parents:
8417
diff
changeset
|
323 * testfun/test.m: Print "has no tests" message if there are demos |
20cbb0fdab48
test.m: print "has no tests" message if there are demos but no tests
John W. Eaton <jwe@octave.org>
parents:
8417
diff
changeset
|
324 but no tests instead of printing PASSES 0 out of 0 tests. |
20cbb0fdab48
test.m: print "has no tests" message if there are demos but no tests
John W. Eaton <jwe@octave.org>
parents:
8417
diff
changeset
|
325 |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
326 2008-12-23 David Bateman <dbateman@free.fr> |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
327 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
328 * sparse/svds.m: New function. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
329 * sparse/Makefile.in (SOURCES): Add it here. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
330 |
8416 | 331 2008-11-21 Radek Salac <salac.r@gmail.com> |
332 | |
333 * sparse/bicgstab.m: New function. | |
334 * sparse/Makefile.in (SOURCES): Add it here. | |
335 | |
8413
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
336 2008-12-18 Daniel J Sebald <daniel.sebald@ieee.org> |
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
337 |
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
338 * time/datevec.m (__date_vfmt2sfmt__): New helper function. |
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
339 (datevec): Avoid repeated parsing of the format string. |
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
340 * set/unique.m: Only check for options if nargin > 1. |
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
341 |
8406
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
342 2008-12-15 Jaroslav Hajek <highegg@gmail.com> |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
343 |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
344 * optimization/lsqnonneg.m: Preprocess using QR for over-determined |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
345 systems. Simplify & fix indexing. Use left division for step problem. |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
346 Fix output args. |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
347 |
8404
868149aac690
nchoosek checks, warning, corner cases and tests
Francesco Potortì <pot@gnu.org>
parents:
8395
diff
changeset
|
348 2008-12-13 Francesco Potort� <pot@gnu.org> |
868149aac690
nchoosek checks, warning, corner cases and tests
Francesco Potortì <pot@gnu.org>
parents:
8395
diff
changeset
|
349 |
868149aac690
nchoosek checks, warning, corner cases and tests
Francesco Potortì <pot@gnu.org>
parents:
8395
diff
changeset
|
350 * specfun/nchoosek.m: Check for input arguments, signal loss of |
868149aac690
nchoosek checks, warning, corner cases and tests
Francesco Potortì <pot@gnu.org>
parents:
8395
diff
changeset
|
351 precision, correctly handle k==0 and k==n cases, add proper tests. |
868149aac690
nchoosek checks, warning, corner cases and tests
Francesco Potortì <pot@gnu.org>
parents:
8395
diff
changeset
|
352 |
8395
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
353 2008-12-11 Jaroslav Hajek <highegg@gmail.com> |
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
354 |
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
355 * optimization/fsolve.m: Optionally allow pivoted qr factorization. |
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
356 |
8393 | 357 2008-12-10 Jaroslav Hajek <highegg@gmail.com> |
358 | |
8394 | 359 * linear-algebra/expm.m: New source. |
8393 | 360 |
8391
343f0fbca6eb
implement nchoosek without recursion
Jaroslav Hajek <highegg@gmail.com>
parents:
8390
diff
changeset
|
361 2008-12-09 Jaroslav Hajek <highegg@gmail.com> |
343f0fbca6eb
implement nchoosek without recursion
Jaroslav Hajek <highegg@gmail.com>
parents:
8390
diff
changeset
|
362 |
8394 | 363 * specfun/nchoosek.m: Use a recursionless approach. |
8391
343f0fbca6eb
implement nchoosek without recursion
Jaroslav Hajek <highegg@gmail.com>
parents:
8390
diff
changeset
|
364 |
8390
49901b624316
optimize repmat for scalar & matrix case
Jaroslav Hajek <highegg@gmail.com>
parents:
8387
diff
changeset
|
365 2008-12-09 Jaroslav Hajek <highegg@gmail.com> |
49901b624316
optimize repmat for scalar & matrix case
Jaroslav Hajek <highegg@gmail.com>
parents:
8387
diff
changeset
|
366 |
49901b624316
optimize repmat for scalar & matrix case
Jaroslav Hajek <highegg@gmail.com>
parents:
8387
diff
changeset
|
367 * general/repmat.m: Optimize & simplify the scalar & 2d matrix case. |
49901b624316
optimize repmat for scalar & matrix case
Jaroslav Hajek <highegg@gmail.com>
parents:
8387
diff
changeset
|
368 |
8387
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
369 2008-12-07 Thorsten Meyer <thorsten.meyier@gmx.de> |
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
370 |
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
371 * strings/lower.m: Remove |
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
372 * strings/upper.m: Remove |
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
373 * strings/Makefile.in: Remove lower.m, upper.m |
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
374 |
8372
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
375 2008-12-02 Thorsten Meyer <thorsten.meyier@gmx.de> |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
376 |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
377 * strings/str2mat.m: Make it a simple wrapper around |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
378 char() and move it to scripts/deprecated/str2mat.m, remove |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
379 obsolete tests, move remaining test to src/strfns.cc (Fchar). |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
380 * strings/Makefile.in: Remove str2mat.m. |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
381 * deprecated/Makefile.in: Add str2mat.m. |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
382 * strings/strvcat.m: Remove reference to str2mat. |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
383 |
8360
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8357
diff
changeset
|
384 2008-11-28 David Bateman <dbateman@free.fr> |
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8357
diff
changeset
|
385 |
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8357
diff
changeset
|
386 * plot/__go_draw_axes__.m: Set two point clipping mode to be on. |
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8357
diff
changeset
|
387 |
8361
cf620941af1a
Set max_recursion_depth and use a subfunction in nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8360
diff
changeset
|
388 2008-11-26 Francesco Potortì <pot@gnu.org> |
cf620941af1a
Set max_recursion_depth and use a subfunction in nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8360
diff
changeset
|
389 |
cf620941af1a
Set max_recursion_depth and use a subfunction in nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8360
diff
changeset
|
390 * specfun/nchoosek.m: Set max_recursion_depth and use a subfunction. |
cf620941af1a
Set max_recursion_depth and use a subfunction in nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8360
diff
changeset
|
391 |
8362
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
392 2008-11-29 Thorsten Meyer <thorsten.meyier@gmx.de> |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
393 |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
394 * miscellaneous/gzip.m: Remove @seealso reference to __xzip__, |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
395 improve tests |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
396 miscellaneous/bzip2.m: Remove @seealso reference to __xzip__, |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
397 fix handling of output argument, add test |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
398 miscellaneous/__xzip__.m: Improve error messages, fix cleanup |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
399 of temporary directories, remove tab characters |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
400 |
8343
9f34f7636fe0
legend.m: Correct ording of legend labels.
Ben Abbott <bpabbott@mac.com>
parents:
8338
diff
changeset
|
401 2008-11-24 Ben Abbott <bpabbott@mac.com> |
9f34f7636fe0
legend.m: Correct ording of legend labels.
Ben Abbott <bpabbott@mac.com>
parents:
8338
diff
changeset
|
402 |
9f34f7636fe0
legend.m: Correct ording of legend labels.
Ben Abbott <bpabbott@mac.com>
parents:
8338
diff
changeset
|
403 * plot/legend.m: Correct ording of legend labels. |
9f34f7636fe0
legend.m: Correct ording of legend labels.
Ben Abbott <bpabbott@mac.com>
parents:
8338
diff
changeset
|
404 |
8344
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8343
diff
changeset
|
405 2008-11-24 Ben Abbott <bpabbott@mac.com> |
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8343
diff
changeset
|
406 |
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8343
diff
changeset
|
407 * plot/__go_draw_axes__.m: Correct order for rendering children. |
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8343
diff
changeset
|
408 |
8338
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
409 2008-11-21 Radek Salac <salac.r@gmail.com> |
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
410 |
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
411 * sparse/cgs.m, sparse/treelayout.m: New functions. |
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
412 * sparse/Makefile.in (SOURCES): Add them here. |
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
413 |
8324 | 414 2008-11-14 David Bateman <dbateman@free.fr> |
415 | |
416 * plot/__go_draw_axes__.m (do_tics_1): Support the minorick properties | |
417 of the axis object. | |
418 | |
8356
d750feaefa8e
gnuplot_drawnow.m: Add support of properites to gp backend.
Ben Abbott <bpabbott@mac.com>
parents:
8354
diff
changeset
|
419 2008-11-14 Ben Abbott <bpabbott@mac.com> |
d750feaefa8e
gnuplot_drawnow.m: Add support of properites to gp backend.
Ben Abbott <bpabbott@mac.com>
parents:
8354
diff
changeset
|
420 |
d750feaefa8e
gnuplot_drawnow.m: Add support of properites to gp backend.
Ben Abbott <bpabbott@mac.com>
parents:
8354
diff
changeset
|
421 * plot/gnuplot_drawnow.m: Add support of properites to gp backend. |
d750feaefa8e
gnuplot_drawnow.m: Add support of properites to gp backend.
Ben Abbott <bpabbott@mac.com>
parents:
8354
diff
changeset
|
422 |
8320
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
423 2008-11-13 John W. Eaton <jwe@octave.org> |
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
424 |
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
425 * statistics/distributions/chi2rnd.m: Fix another missing semicolon. |
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
426 From sven.mattisson@insatnet.nu. |
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
427 |
8315
e9687c313d5f
Fix callbacks in stem and quiver for change in order of children. Fix for scaling in quiver for single arrow
David Bateman <dbateman@free.fr>
parents:
8310
diff
changeset
|
428 2008-11-12 David Bateman <dbateman@free.fr> |
e9687c313d5f
Fix callbacks in stem and quiver for change in order of children. Fix for scaling in quiver for single arrow
David Bateman <dbateman@free.fr>
parents:
8310
diff
changeset
|
429 |
e9687c313d5f
Fix callbacks in stem and quiver for change in order of children. Fix for scaling in quiver for single arrow
David Bateman <dbateman@free.fr>
parents:
8310
diff
changeset
|
430 * plot/__quiver__.m: Only autoscale if more than one element to |
e9687c313d5f
Fix callbacks in stem and quiver for change in order of children. Fix for scaling in quiver for single arrow
David Bateman <dbateman@free.fr>
parents:
8310
diff
changeset
|
431 plot. Modify callbacks for change in order of children. |
e9687c313d5f
Fix callbacks in stem and quiver for change in order of children. Fix for scaling in quiver for single arrow
David Bateman <dbateman@free.fr>
parents:
8310
diff
changeset
|
432 * plot/__stem__.m: Modify callbacks for change in order of children. |
e9687c313d5f
Fix callbacks in stem and quiver for change in order of children. Fix for scaling in quiver for single arrow
David Bateman <dbateman@free.fr>
parents:
8310
diff
changeset
|
433 |
8316 | 434 2008-11-10 John W. Eaton <jwe@octave.org> |
435 | |
436 * polynomial/spline.m: Delete debugging statements. From | |
437 Sebastian Sch�ps <sebastian@schoeps.org>. | |
438 | |
8444
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
439 2008-11-07 Thorsten Meyer <thorsten.meyier@gmx.de> |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
440 |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
441 * mkdoc: do not remove white space before @ within @example |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
442 environment |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
443 |
8350
0e3a92a8683c
fix texi bug in subplot.m
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8349
diff
changeset
|
444 2008-11-05 Thorsten Meyer <thorsten.meyier@gmx.de> |
0e3a92a8683c
fix texi bug in subplot.m
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8349
diff
changeset
|
445 |
0e3a92a8683c
fix texi bug in subplot.m
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8349
diff
changeset
|
446 * plot/subplot.m: fix texi bug |
0e3a92a8683c
fix texi bug in subplot.m
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8349
diff
changeset
|
447 |
8352
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
448 2008-11-04 Thorsten Meyer <thorsten.meyier@gmx.de> |
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
449 |
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
450 * miscellaneous/unpack.m: return directly after recursive handling |
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
451 of cell-strings |
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
452 |
8354
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8352
diff
changeset
|
453 2008-11-03 Ben Abbott <bpabbott@mac.com> |
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8352
diff
changeset
|
454 |
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8352
diff
changeset
|
455 * plot/__go_draw_axes__.m: xticklabel should accept a numeric vector. |
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8352
diff
changeset
|
456 |
8306
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
457 2008-09-28 Jaroslav Hajek <highegg@gmail.com> |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
458 |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
459 * optimization/__fdjac__.m: New function file. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
460 * optimization/__dogleg__.m: New function file. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
461 * optimization/fsolve.m: New function file. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
462 * optimization/Makefile.in: Include the new sources. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
463 |
8305 | 464 2008-09-28 Jaroslav Hajek <highegg@gmail.com> |
465 | |
466 * optimization/fzero.m: Replace tabs by spaces. | |
467 | |
468 2008-09-28 Jaroslav Hajek <highegg@gmail.com> | |
469 | |
470 * optimization/fzero.m: Simplify exception handling. | |
471 | |
472 2008-10-31 Jaroslav Hajek <highegg@gmail.com> | |
473 | |
474 * optimization/fzero.m: New function file. | |
475 * optimization/Makefile.in: Add it. | |
476 | |
8304
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
477 2008-10-31 Jaroslav Hajek <highegg@gmail.com> |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
478 |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
479 * optimization/optimset.m: Don't include empty options in option |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
480 structure. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
481 * optimization/optimget.m: New function file. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
482 * optimization/Makefile.in: Add it. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
483 * optimization/lsqnonneg.m: Query options using optimget. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
484 |
8303
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
485 2008-10-31 Jaroslav Hajek <highegg@gmail.com> |
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
486 |
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
487 * linear-algebra/__norm__.m: Remove. |
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
488 |
8349
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
489 2008-10-25 Thorsten Meyer <thorsten.meyier@gmx.de> |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
490 |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
491 * miscellaneous/bzip2.m, miscellaneous/__xzip__.m: new commands. |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
492 * miscellaneous/gzip.m: change to use __xzip__ for actual compression, |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
493 add tests. |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
494 |
8299
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
495 2008-10-31 David Bateman <dbateman@free.fr> |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
496 |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
497 * plot/__contour__.m: Exclude infinite values when calculating contour |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
498 levels. |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
499 * plot/clabel.m: Close previous plots in demos to avoid pollution |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
500 between other plot demos. |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
501 * plot/plotyy.m: Ditto. |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
502 |
8289
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
503 2008-10-30 David Bateman <dbateman@free.fr> |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
504 |
8291
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8289
diff
changeset
|
505 * plot/legend.m: Add support for the "left" and "right" options. |
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8289
diff
changeset
|
506 * plot/__go_draw_axes__.m: If the axes property keyreverse is set, |
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8289
diff
changeset
|
507 reverse the key and labelling text. |
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8289
diff
changeset
|
508 |
8289
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
509 * plot/__clabel__.m, plot/clabel.m: New functions. |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
510 * plot/Makefile.in (SOURCES): Add them here. |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
511 * plot/__contour__.m: Rewrite to use contour groups. |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
512 * plot/contourf.m: Call __contour__ instead of using specific code. |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
513 * plot/contour.m, plot/contour3.m: Minor modification to allow for |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
514 new interface to __contour__. |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
515 |
8286
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
516 2008-10-29 Thorsten Meyer <thorsten.meyier@gmx.de> |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
517 |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
518 * set/create_set.m, set/ismember.m, set/union.m, set/complement.m: |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
519 Fix @seealso references to deprecated function intersection. |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
520 * polynomial/polyvalm.m, polynomial/polyout.m, |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
521 polynomial/polyint.m, polynomial/polygcd.m, |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
522 deprecated/polyinteg.m: Remove "and" from @seealso string. |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
523 * specfun/betaln.m: Change @seealso reference from deprecated |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
524 betai to betainc. |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
525 * plot/plot.m, plot/xlabel.m, plot/ylabel.m, plot/zlabel.m, |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
526 plot/plot3.m: Fix @seealso references to ylabel and zlabel. |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
527 * general/issymmetric.m, image/imagesc.m, specfun/realpow.m, |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
528 polynomial/polyfit.m, time/eomday.m: Remove @seealso references to |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
529 non-existent functions. |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
530 |
8285
26f0e69e9f3a
cla.m: in test, set visible off when creating figure
John W. Eaton <jwe@octave.org>
parents:
8280
diff
changeset
|
531 2008-10-29 John W. Eaton <jwe@octave.org> |
26f0e69e9f3a
cla.m: in test, set visible off when creating figure
John W. Eaton <jwe@octave.org>
parents:
8280
diff
changeset
|
532 |
26f0e69e9f3a
cla.m: in test, set visible off when creating figure
John W. Eaton <jwe@octave.org>
parents:
8280
diff
changeset
|
533 * plot/cla.m: In test, set visible off when creating figure. |
26f0e69e9f3a
cla.m: in test, set visible off when creating figure
John W. Eaton <jwe@octave.org>
parents:
8280
diff
changeset
|
534 |
8280
5ee11a81688e
qp.m: convert b <= x <= b and b <= A*x <= b to equality constraints
Gabriele Pannocchia <g.pannocchia@ing.unipi.it>
parents:
8274
diff
changeset
|
535 2008-10-28 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
5ee11a81688e
qp.m: convert b <= x <= b and b <= A*x <= b to equality constraints
Gabriele Pannocchia <g.pannocchia@ing.unipi.it>
parents:
8274
diff
changeset
|
536 |
5ee11a81688e
qp.m: convert b <= x <= b and b <= A*x <= b to equality constraints
Gabriele Pannocchia <g.pannocchia@ing.unipi.it>
parents:
8274
diff
changeset
|
537 * optimization/qp.m: Convert bounds of the form b <= x <= b and |
5ee11a81688e
qp.m: convert b <= x <= b and b <= A*x <= b to equality constraints
Gabriele Pannocchia <g.pannocchia@ing.unipi.it>
parents:
8274
diff
changeset
|
538 constraints of the form b <= A*x <= b to equality constraints. |
5ee11a81688e
qp.m: convert b <= x <= b and b <= A*x <= b to equality constraints
Gabriele Pannocchia <g.pannocchia@ing.unipi.it>
parents:
8274
diff
changeset
|
539 |
8274
967c15c5e265
ellipsoid.m: fix default argument check
Soren Hauberg <hauberg@gmail.com>
parents:
8265
diff
changeset
|
540 2008-10-27 S�ren Hauberg <hauberg@gmail.com> |
967c15c5e265
ellipsoid.m: fix default argument check
Soren Hauberg <hauberg@gmail.com>
parents:
8265
diff
changeset
|
541 |
967c15c5e265
ellipsoid.m: fix default argument check
Soren Hauberg <hauberg@gmail.com>
parents:
8265
diff
changeset
|
542 * plot/ellipsoid.m: Check nargin == 6, not nargin == 5. |
967c15c5e265
ellipsoid.m: fix default argument check
Soren Hauberg <hauberg@gmail.com>
parents:
8265
diff
changeset
|
543 |
8264
bca580bbda02
cla.m: Fix error when no children to clear.
Ben Abbott <bpabbott@mac.com>
parents:
8262
diff
changeset
|
544 2008-10-22 Ben Abbott <bpabbott@mac.com> |
bca580bbda02
cla.m: Fix error when no children to clear.
Ben Abbott <bpabbott@mac.com>
parents:
8262
diff
changeset
|
545 |
bca580bbda02
cla.m: Fix error when no children to clear.
Ben Abbott <bpabbott@mac.com>
parents:
8262
diff
changeset
|
546 * plot/cla.m: Fix error when no children to clear. |
bca580bbda02
cla.m: Fix error when no children to clear.
Ben Abbott <bpabbott@mac.com>
parents:
8262
diff
changeset
|
547 |
8265
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8264
diff
changeset
|
548 * plot/findobj.m: Allow handle to be empty. |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8264
diff
changeset
|
549 |
8262
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
550 2008-10-22 John W. Eaton <jwe@octave.org> |
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
551 |
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
552 * plot/allchild.m: Move call to get showhiddenhandles outside of |
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
553 unwind_protect block. |
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
554 |
8257 | 555 2008-10-22 David Bateman <dbateman@free.fr> |
556 | |
8260 | 557 * plot/refreshdata.m: Modify demo so that "y" is evaluated in the |
558 "caller" workspace. | |
559 | |
8258 | 560 * plot/__errplot__.m: Add errorbar series objects. |
561 * plot/errbar.m: Add some demos. | |
562 | |
8257 | 563 * plot/__add_line_series__.m: Remove |
564 * plot/Makefile.in (SOURCES): Remove it here too. | |
565 * plot/__add_datasource__.m: Allow for more than one character in | |
566 source name. | |
567 * plot/refreshdata.m: Ditto. | |
568 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, | |
569 plot/__plt2sv__.m, plot/__plt2vm__.m, plot/__plt2vv__.m, | |
570 plot/__plt2vs__.m, plot3.m: Remove previous line series changes. | |
571 * plot/__scatter__.m: Add scatter series objects and data sources. | |
572 * plot/legend.m: Update type in loop and remove debugging messages. | |
573 | |
8251 | 574 2008-10-21 Ben Abbott <bpabbott@mac.com> |
8250
8a2559a1aefa
clf.m: Improve Matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
8249
diff
changeset
|
575 |
8255
3f1199ad212f
legendre.m: Warn once on under/overflow.
Ben Abbott <bpabbott@mac.com>
parents:
8253
diff
changeset
|
576 * specfun/legendre.m: Warn once on under/overflow. |
3f1199ad212f
legendre.m: Warn once on under/overflow.
Ben Abbott <bpabbott@mac.com>
parents:
8253
diff
changeset
|
577 |
8250
8a2559a1aefa
clf.m: Improve Matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
8249
diff
changeset
|
578 * plot/clf.m: Improve Matlab compatibility. |
8a2559a1aefa
clf.m: Improve Matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
8249
diff
changeset
|
579 |
8249 | 580 2008-10-21 John W. Eaton <jwe@octave.org> |
581 | |
8253
873ea2c72f16
quiver3.m: turn hold off after demo
John W. Eaton <jwe@octave.org>
parents:
8252
diff
changeset
|
582 * plot/quiver3.m: Turn hold off after demo. |
873ea2c72f16
quiver3.m: turn hold off after demo
John W. Eaton <jwe@octave.org>
parents:
8252
diff
changeset
|
583 |
8252
b12a2975bf7e
newplot.m: delete stray debugging code
John W. Eaton <jwe@octave.org>
parents:
8251
diff
changeset
|
584 * plot/newplot.m: Delete stray debugging code. |
b12a2975bf7e
newplot.m: delete stray debugging code
John W. Eaton <jwe@octave.org>
parents:
8251
diff
changeset
|
585 |
8249 | 586 * plot/gnuplot_drawnow.m: Pass handle to __go_draw_figure__, not |
587 struct. Use get instead of examining struct fields directly. | |
588 * plot/__go_draw_figure__.m: First arg is now handle, not figure | |
589 object struct. Use get instead of examining struct elements | |
590 directly. Use allhild instead of looking at children field of | |
591 figure object struct. | |
592 | |
8251 | 593 2008-10-20 Ben Abbott <bpabbott@mac.com> |
8248 | 594 |
595 * plot/orient.m: Fix syntax error. | |
596 | |
8243
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
597 2008-10-20 David Bateman <dbateman@free.fr> |
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
598 |
8245
166a689b77a9
Pause between tests for rundemos
David Bateman <dbateman@free.fr>
parents:
8243
diff
changeset
|
599 * testfun/rundemos.m: Pause between files, as demo itself doesn't. |
166a689b77a9
Pause between tests for rundemos
David Bateman <dbateman@free.fr>
parents:
8243
diff
changeset
|
600 |
8243
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
601 * plot/fill.m, plot/quiver.m: Quiet the demos. |
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
602 * plot/stair.m: Treat a line style argument correctly. |
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
603 |
8241
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
604 2008-10-20 John W. Eaton <jwe@octave.org> |
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
605 |
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
606 * plot/surfnorm.m: Save and restore hold state. |
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
607 From Daniel J. Sebald <daniel.sebald@ieee.org> and |
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
608 Ben Abbott <bpabbott@mac.com>. |
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
609 |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
610 2008-10-20 Ben Abbott <bpabbott@mac.com> |
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
611 |
8246
db19494c7c2a
closereq.m: Respect property tag.
Ben Abbott <bpabbott@mac.com>
parents:
8245
diff
changeset
|
612 * plot/closereq.m: Respect property tag. |
db19494c7c2a
closereq.m: Respect property tag.
Ben Abbott <bpabbott@mac.com>
parents:
8245
diff
changeset
|
613 |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
614 * plot/__stem__.m: Respect new ordering of children when setting |
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
615 baseline. |
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
616 |
8239
041bb0c64f07
orient.m,print.f: validate figure handle
Ben Abbott <bpabbott@mac.com>
parents:
8238
diff
changeset
|
617 * plot/orient.m, plot/print.m: Properly validate figure handle. |
041bb0c64f07
orient.m,print.f: validate figure handle
Ben Abbott <bpabbott@mac.com>
parents:
8238
diff
changeset
|
618 |
8240
5cfeb7bc497a
comet.m,hold.m: validate axes handle
Ben Abbott <bpabbott@mac.com>
parents:
8239
diff
changeset
|
619 * plot/hold.m, plot/comet.m: Properly validate axes handle. |
5cfeb7bc497a
comet.m,hold.m: validate axes handle
Ben Abbott <bpabbott@mac.com>
parents:
8239
diff
changeset
|
620 |
8242
a9d3b88ea6fb
__go_draw_axes__.m: Fix for binary xfer of suface plots.
Ben Abbott <bpabbott@mac.com>
parents:
8241
diff
changeset
|
621 * plot/__go_draw_axes__.m: Fix for binary xfer of suface plots. |
a9d3b88ea6fb
__go_draw_axes__.m: Fix for binary xfer of suface plots.
Ben Abbott <bpabbott@mac.com>
parents:
8241
diff
changeset
|
622 |
8237
52f2fba4f3f8
Test that an axis handle actually is one before setting it in plotyy
David Bateman <dbateman@free.fr>
parents:
8236
diff
changeset
|
623 2008-10-20 David Bateman <dbateman@free.fr> |
52f2fba4f3f8
Test that an axis handle actually is one before setting it in plotyy
David Bateman <dbateman@free.fr>
parents:
8236
diff
changeset
|
624 |
52f2fba4f3f8
Test that an axis handle actually is one before setting it in plotyy
David Bateman <dbateman@free.fr>
parents:
8236
diff
changeset
|
625 * plot/plotyy.m: Test that an axes handle actually is one before |
52f2fba4f3f8
Test that an axis handle actually is one before setting it in plotyy
David Bateman <dbateman@free.fr>
parents:
8236
diff
changeset
|
626 setting it. |
52f2fba4f3f8
Test that an axis handle actually is one before setting it in plotyy
David Bateman <dbateman@free.fr>
parents:
8236
diff
changeset
|
627 |
8236 | 628 2008-10-17 David Bateman <dbateman@free.fr> |
629 | |
630 * plot/__plt_get_axis_arg__.m: Exclude non-numeric and root figure | |
631 from potential axis handles. | |
632 * plot/colorbar.m: Remove debug output. | |
633 * plot/comet.m: Close plot before demo | |
634 * plot/contourc.m: No output if nargout == 0. | |
635 | |
8232
c6e9ff62c64a
Fix subplot for column vector of children in figure
David Bateman <dbateman@free.fr>
parents:
8229
diff
changeset
|
636 2008-10-16 David Bateman <dbateman@free.fr> |
c6e9ff62c64a
Fix subplot for column vector of children in figure
David Bateman <dbateman@free.fr>
parents:
8229
diff
changeset
|
637 |
c6e9ff62c64a
Fix subplot for column vector of children in figure
David Bateman <dbateman@free.fr>
parents:
8229
diff
changeset
|
638 * plot/subplot.m: Allow for column vector of children for figure. |
c6e9ff62c64a
Fix subplot for column vector of children in figure
David Bateman <dbateman@free.fr>
parents:
8229
diff
changeset
|
639 |
8229 | 640 2008-10-16 John W. Eaton <jwe@octave.org> |
641 | |
642 * testfun/rundemos.m: New function. | |
643 | |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
644 2008-10-16 Ben Abbott <bpabbott@mac.com> |
8227
586b02ac671e
contourf.m: Correct order of patch object handles.
Ben Abbott <bpabbott@mac.com>
parents:
8226
diff
changeset
|
645 |
586b02ac671e
contourf.m: Correct order of patch object handles.
Ben Abbott <bpabbott@mac.com>
parents:
8226
diff
changeset
|
646 * plot/contourf.m: Correct order of patch object handles. |
586b02ac671e
contourf.m: Correct order of patch object handles.
Ben Abbott <bpabbott@mac.com>
parents:
8226
diff
changeset
|
647 |
8224
62d90e049d4f
Always use multiplot with gnuplot to ensure correct postscript bounding box
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
648 2008-10-16 David Bateman <dbateman@free.fr> |
62d90e049d4f
Always use multiplot with gnuplot to ensure correct postscript bounding box
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
649 |
8228
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
650 * plot/colorbar.m (colorbar:resetaxis): Uncomment the reseting of |
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
651 the axes. |
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
652 |
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
653 * plot/newplot.m: Don't preserve axes properties here, but rather |
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
654 do it in the graphics handle code so that the preservation can be |
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
655 done after callbacks are executed. |
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
656 |
8226
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8224
diff
changeset
|
657 * plot/__go_draw_axes__.m: If current plot is an image, don't flag |
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8224
diff
changeset
|
658 the plot as binary, as the binary specification is already in the |
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8224
diff
changeset
|
659 "usingclause". |
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8224
diff
changeset
|
660 |
8224
62d90e049d4f
Always use multiplot with gnuplot to ensure correct postscript bounding box
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
661 * plot/__go_draw_figure__.m: Always use multiplot and create an |
62d90e049d4f
Always use multiplot with gnuplot to ensure correct postscript bounding box
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
662 enclosing axis to ensure bounding box of postscript is correct. |
62d90e049d4f
Always use multiplot with gnuplot to ensure correct postscript bounding box
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
663 |
8222
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8221
diff
changeset
|
664 2008-10-16 Ben Abbott <bpabbott@mac.com> |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8221
diff
changeset
|
665 |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8221
diff
changeset
|
666 * plot/__go_draw_axes__.m (do_tics_1): New arg, interpreter. |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8221
diff
changeset
|
667 (do_tics): Pass interpreter to do_tics_1. |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8221
diff
changeset
|
668 |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
669 2008-10-15 David Bateman <dbateman@free.fr> |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
670 |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
671 * general/colon.m: Small typo. |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
672 * general/loadobj.m: Ditto. |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
673 |
8220
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
674 2008-10-14 Ben Abbott <bpabbott@mac.com> |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
675 |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
676 * plot/__go_draw_axes__.m (do_tics_1): New args, fontname and fontsize. |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
677 Pass fontspec for tic marks to gnuplot. |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
678 (do_tics): Pass axes fontname and fontsize to do_tics_1. |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
679 |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
680 * plot/newplot.m: Perserve fontangle, fontname, fontsize, |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
681 fontunits, fontweight, position, outerposition, and |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
682 activepositionproperty axes properties when replacing plot. |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
683 |
8218
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
684 2008-10-15 Daniel J. Sebald <daniel.sebald@ieee.org> |
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
685 |
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
686 * plot/__go_draw_axes__.m: Make previous change work for surface |
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
687 plots. |
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
688 |
8217
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
689 2008-10-14 Daniel J. Sebald <daniel.sebald@ieee.org> |
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
690 |
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
691 * plot/__go_draw_axes__.m: Send binary data to gnuplot. |
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
692 |
8220
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
693 2008-10-13 Ben Abbott <bpabbott@mac.com> |
8216
5d6b9311be38
__go_draw_axes__.m: Fix concatenation of handles.
Ben Abbott <bpabbott@mac.com>
parents:
8213
diff
changeset
|
694 |
5d6b9311be38
__go_draw_axes__.m: Fix concatenation of handles.
Ben Abbott <bpabbott@mac.com>
parents:
8213
diff
changeset
|
695 * plot/__go_draw_axes__.m: Fix concatenation of handles. |
5d6b9311be38
__go_draw_axes__.m: Fix concatenation of handles.
Ben Abbott <bpabbott@mac.com>
parents:
8213
diff
changeset
|
696 |
8213
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
697 2008-10-12 David Bateman <dbateman@free.fr> |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
698 |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
699 * general/colon..m: New function. |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
700 * general/Makefile.in (SOURCES): Add it here. |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
701 |
8208 | 702 2008-10-10 David Bateman <dbateman@free.fr> |
703 | |
704 * image/__img__.m: Manually set the limits of th eimage | |
705 * plot/__go_draw_axes__.m: Base window position in the axis | |
706 position property and not the outerposition property. Remove | |
707 colorbar code based on the gnuplot colorbox. Allow images to be a | |
708 vector to support image based colorbars. Also check labelmode for | |
709 manual tics. | |
710 * plot/__go_draw_figure__.m: Remove gnuplot colorbox based | |
711 colorbar code. | |
712 * plot/colorbar.m: Rewrite to use an image and callbacks to link | |
713 it to the principal axis. | |
714 * plot/legend.m: Support an axis handle as the first | |
715 argument. Support hggroups. | |
716 * plot/pareto.m: Don't support an axis handle as the first | |
717 argument as the plotyy command in fact needs two axis handles. | |
718 * plot/plotyy.m: Rewrite to use listeners and callbacks to | |
719 synchronize the two axes. | |
720 * plot/subplot.m: Also skip axes that are tagged as being a | |
721 colorbar. Don't break in search of overlapping axes to delete. Set | |
722 both the position and the outerposition. | |
723 | |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
724 2008-10-09 Ben Abbott <bpabbott@mac.com> |
8205
5bf8a57f85d5
__axis_label__.m: Inherit font properties from axes.
Ben Abbott <bpabbott@mac.com>
parents:
8201
diff
changeset
|
725 |
5bf8a57f85d5
__axis_label__.m: Inherit font properties from axes.
Ben Abbott <bpabbott@mac.com>
parents:
8201
diff
changeset
|
726 * plot/__axis_label__.m: Inherit font properties from axes. |
5bf8a57f85d5
__axis_label__.m: Inherit font properties from axes.
Ben Abbott <bpabbott@mac.com>
parents:
8201
diff
changeset
|
727 |
8212
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8208
diff
changeset
|
728 2008-10-09 David Bateman <dbateman@free.fr> |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8208
diff
changeset
|
729 |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8208
diff
changeset
|
730 * general/loadobj.m, general/saveobj.m, general/display: New functions |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8208
diff
changeset
|
731 * general/Makefile.in (SOURCES): Add then here. |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8208
diff
changeset
|
732 |
8201
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
733 2008-10-08 John W. Eaton <jwe@octave.org> |
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
734 |
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
735 * miscellaneous/fileparts.m: Handle "/file" properly. |
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
736 Improve compatibility. |
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
737 |
8199
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
738 2008-10-07 Ben Abbott <bpabbott@mac.com> |
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
739 |
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
740 * plot/cla.m: New function. |
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
741 * plot/Makefile.in (SOURCES): Add it to the list. |
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
742 |
8197
4c85b8056d0b
delete.m: pass array of handles to __go_delete__
John W. Eaton <jwe@octave.org>
parents:
8190
diff
changeset
|
743 2008-10-07 John W. Eaton <jwe@octave.org> |
4c85b8056d0b
delete.m: pass array of handles to __go_delete__
John W. Eaton <jwe@octave.org>
parents:
8190
diff
changeset
|
744 |
4c85b8056d0b
delete.m: pass array of handles to __go_delete__
John W. Eaton <jwe@octave.org>
parents:
8190
diff
changeset
|
745 * miscellaneous/delete.m: Pass array of handles to __go_delete__. |
4c85b8056d0b
delete.m: pass array of handles to __go_delete__
John W. Eaton <jwe@octave.org>
parents:
8190
diff
changeset
|
746 |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
747 2008-10-06 John W. Eaton <jwe@octave.org> |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
748 |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
749 * plot/__add_datasource__.m, plot/__axes_limits__.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
750 plot/__bar__.m, plot/__bars__.m, plot/__contour__.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
751 plot/__go_draw_axes__.m, plot/__go_draw_figure__.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
752 plot/__patch__.m, plot/__quiver__.m, plot/__scatter__.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
753 plot/__stem__.m, plot/ancestor.m, plot/axis.m, plot/box.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
754 plot/caxis.m, plot/close.m, plot/colorbar.m, plot/fill.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
755 plot/findobj.m, plot/grid.m, plot/hidden.m, plot/hold.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
756 plot/ishold.m, plot/legend.m, plot/linkprop.m, plot/orient.m, |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
757 plot/plotmatrix.m, plot/shading.m: Use case-insensitive comparison |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
758 for properties. Misc style fixes. |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
759 |
8188
946035db5605
delete.m: Permit a vector of handles to be deleted.
Ben Abbott <bpabbott@mac.com>
parents:
8182
diff
changeset
|
760 2008-10-06 Ben Abbott <bpabbott@mac.com> |
946035db5605
delete.m: Permit a vector of handles to be deleted.
Ben Abbott <bpabbott@mac.com>
parents:
8182
diff
changeset
|
761 |
8189
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
762 * plot/orient.m: Figure handle must be scalar. |
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
763 * plot/hold.m: Axis handle must be scalar. |
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
764 * plot/axes.m: Axis handle must be scalar. |
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
765 * plot/__plt_get_axis_arg__.m: Handle must be scalar. |
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
766 |
8188
946035db5605
delete.m: Permit a vector of handles to be deleted.
Ben Abbott <bpabbott@mac.com>
parents:
8182
diff
changeset
|
767 * miscellaneous/delete.m: Permit a vector of handles to be deleted. |
946035db5605
delete.m: Permit a vector of handles to be deleted.
Ben Abbott <bpabbott@mac.com>
parents:
8182
diff
changeset
|
768 |
8174
ea9b5f31bfac
pkg.m: better handling of filenames with spaces
John W. Eaton <jwe@octave.org>
parents:
8172
diff
changeset
|
769 2008-10-02 John W. Eaton <jwe@octave.org> |
ea9b5f31bfac
pkg.m: better handling of filenames with spaces
John W. Eaton <jwe@octave.org>
parents:
8172
diff
changeset
|
770 |
8182 | 771 * pkg/pkg.m (configure_make): Handle filenames with spaces. |
772 | |
773 2008-10-02 Benjamin Lindner <lindnerb@users.sourceforge.net> | |
8172
9ba45b125ee8
enclose building direcries in quotes in pkg.m
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8171
diff
changeset
|
774 |
9ba45b125ee8
enclose building direcries in quotes in pkg.m
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8171
diff
changeset
|
775 * pkg.m (configure_make): Enclose building directory in quotes. |
9ba45b125ee8
enclose building direcries in quotes in pkg.m
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8171
diff
changeset
|
776 |
8182 | 777 2008-10-02 Ben Abbott <bpabbott@mac.com> |
778 | |
779 * plot/__go_draw_axes__.m: Remove depdenence on gnuplot version. | |
8171
15ffb9836c01
__go_draw_axes__.m: Remove depdenence on gnuplot version.
Ben Abbott <bpabbott@mac.com>
parents:
8168
diff
changeset
|
780 |
8168
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
781 2008-09-30 Jaroslav Hajek <highegg@gmail.com> |
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
782 |
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
783 * string/split.m: New tests. |
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
784 |
8182 | 785 2008-09-30 Ben Abbott <bpabbott@mac.com> |
8166
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
786 |
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
787 * plot/__go_draw_axes__.m: Fix interpolation of facecolors. |
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
788 |
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
789 * plot/shading.m: New demo. |
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
790 |
8163
7d6e659acc1a
__gnuplot_version__.m: include patchlevel in output
John W. Eaton <jwe@octave.org>
parents:
8159
diff
changeset
|
791 2008-09-29 John W. Eaton <jwe@octave.org> |
7d6e659acc1a
__gnuplot_version__.m: include patchlevel in output
John W. Eaton <jwe@octave.org>
parents:
8159
diff
changeset
|
792 |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8163
diff
changeset
|
793 * plot/__go_draw_axes__.m: Eliminate have_newer_gnuplot variable. |
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8163
diff
changeset
|
794 |
8163
7d6e659acc1a
__gnuplot_version__.m: include patchlevel in output
John W. Eaton <jwe@octave.org>
parents:
8159
diff
changeset
|
795 * plot/__gnuplot_version__.m: Also include patchlevel. |
7d6e659acc1a
__gnuplot_version__.m: include patchlevel in output
John W. Eaton <jwe@octave.org>
parents:
8159
diff
changeset
|
796 |
8182 | 797 2008-09-29 Ben Abbott <bpabbott@mac.com> |
8158
15e4a450bf84
conv.m: Correct row/col orientation of output
Ben Abbott <bpabbott@mac.com>
parents:
8154
diff
changeset
|
798 |
8159
ccf38fc1057f
deconv.m: Fix row/col orientation & length of output
Ben Abbott <bpabbott@mac.com>
parents:
8158
diff
changeset
|
799 * polynomial/deconv.m: Fix row/col orientation & length of output. |
ccf38fc1057f
deconv.m: Fix row/col orientation & length of output
Ben Abbott <bpabbott@mac.com>
parents:
8158
diff
changeset
|
800 |
8158
15e4a450bf84
conv.m: Correct row/col orientation of output
Ben Abbott <bpabbott@mac.com>
parents:
8154
diff
changeset
|
801 * polynomial/conv.m: Correct row/col orientation of output. |
15e4a450bf84
conv.m: Correct row/col orientation of output
Ben Abbott <bpabbott@mac.com>
parents:
8154
diff
changeset
|
802 |
8167
17352ccd860e
describe additional arguments in sqp() documentation string
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8166
diff
changeset
|
803 2008-09-27 Ivan Sutoris <ivan.sutoris@gmail.com> |
17352ccd860e
describe additional arguments in sqp() documentation string
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8166
diff
changeset
|
804 |
17352ccd860e
describe additional arguments in sqp() documentation string
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8166
diff
changeset
|
805 * optimization/sqp.m: Document additional parameters. |
17352ccd860e
describe additional arguments in sqp() documentation string
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8166
diff
changeset
|
806 |
8154
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
807 2008-09-26 David Bateman <dbateman@free.fr> |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
808 |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
809 * general/subsindex.m: Dummy subsindex function for help string |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
810 and to throw error for use outside of a class |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
811 * general/Makefile.in (SOURCES): Include it here. |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
812 |
8152
2b48deec1aa2
imfinfo.m: delete temporary files
John W. Eaton <jwe@octave.org>
parents:
8149
diff
changeset
|
813 2008-09-26 John W. Eaton <jwe@octave.org> |
2b48deec1aa2
imfinfo.m: delete temporary files
John W. Eaton <jwe@octave.org>
parents:
8149
diff
changeset
|
814 |
2b48deec1aa2
imfinfo.m: delete temporary files
John W. Eaton <jwe@octave.org>
parents:
8149
diff
changeset
|
815 * image/imfinfo.m: Delete temporary file. |
2b48deec1aa2
imfinfo.m: delete temporary files
John W. Eaton <jwe@octave.org>
parents:
8149
diff
changeset
|
816 |
8148 | 817 2008-09-25 S�ren Hauberg <hauberg@gmail.com> |
818 | |
819 * image/imread.m, image/imwrite.m: Doc fix. | |
820 | |
8145
7ef5b1b4e029
fplot.m: call axis after plot
John W. Eaton <jwe@octave.org>
parents:
8144
diff
changeset
|
821 2008-09-24 John W. Eaton <jwe@octave.org> |
7ef5b1b4e029
fplot.m: call axis after plot
John W. Eaton <jwe@octave.org>
parents:
8144
diff
changeset
|
822 |
7ef5b1b4e029
fplot.m: call axis after plot
John W. Eaton <jwe@octave.org>
parents:
8144
diff
changeset
|
823 * plot/fplot.m: Call axis after calling plot. |
7ef5b1b4e029
fplot.m: call axis after plot
John W. Eaton <jwe@octave.org>
parents:
8144
diff
changeset
|
824 |
8149 | 825 2008-09-24 S�ren Hauberg <hauberg@gmail.com> |
8144
01fac748b680
Add the 'imfinfo' function for reading image file information.
sh@sh-laptop
parents:
8143
diff
changeset
|
826 |
01fac748b680
Add the 'imfinfo' function for reading image file information.
sh@sh-laptop
parents:
8143
diff
changeset
|
827 * image/imfinfo.m: New function. |
01fac748b680
Add the 'imfinfo' function for reading image file information.
sh@sh-laptop
parents:
8143
diff
changeset
|
828 * image/Makefile.in (SOURCES): Add it to the list. |
01fac748b680
Add the 'imfinfo' function for reading image file information.
sh@sh-laptop
parents:
8143
diff
changeset
|
829 |
8143
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
830 2008-09-24 Ben Abbott <bpabbott@mac.com> |
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
831 |
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
832 * strings/strcat.m: Improve Matlab compatibility for non-character |
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
833 data. |
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
834 |
8138
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
835 2008-09-24 John W. Eaton <jwe@octave.org> |
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
836 |
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
837 * general/interpft.m: Increase tolerance in tests. |
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
838 |
8132
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
839 2008-09-23 Francesco Potorti` <Potorti@isti.cnr.it> |
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
840 |
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
841 * plot/pcolor.m: Improve doc string. |
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
842 |
8182 | 843 2008-09-22 Ben Abbott <bpabbott@mac.com> |
8126 | 844 |
845 * plot/comet.m: New file. | |
846 * plot/Makefile.in (SOURCES): Add it here. | |
847 | |
8122
99602635172a
Trivial patch to quadgk for absence of trace function count
David Bateman <dbateman@free.fr>
parents:
8120
diff
changeset
|
848 2008-09-22 David Bateman <dbateman@free.fr> |
99602635172a
Trivial patch to quadgk for absence of trace function count
David Bateman <dbateman@free.fr>
parents:
8120
diff
changeset
|
849 |
8127
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
850 * plot/plotmatrix.m: New function. |
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
851 * plot/Makefile.in (SOURCES): Add it here. |
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
852 |
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
853 * general/quadgk.m: No function count in quadgk and so don't try and |
8122
99602635172a
Trivial patch to quadgk for absence of trace function count
David Bateman <dbateman@free.fr>
parents:
8120
diff
changeset
|
854 print it when given trace argument. |
99602635172a
Trivial patch to quadgk for absence of trace function count
David Bateman <dbateman@free.fr>
parents:
8120
diff
changeset
|
855 |
8182 | 856 2008-09-18 Jaroslav Hajek <highegg@gmail.com> |
8120
8f0150a0d19e
fix blkdiag to not rely on Matlab-incompatible behaviour
Jaroslav Hajek <highegg@gmail.com>
parents:
8117
diff
changeset
|
857 |
8f0150a0d19e
fix blkdiag to not rely on Matlab-incompatible behaviour
Jaroslav Hajek <highegg@gmail.com>
parents:
8117
diff
changeset
|
858 * general/blkdiag.m: Skip assignment if rhs is empty. |
8f0150a0d19e
fix blkdiag to not rely on Matlab-incompatible behaviour
Jaroslav Hajek <highegg@gmail.com>
parents:
8117
diff
changeset
|
859 |
8116 | 860 2008-09-18 Kris Thielemans <kris.thielemans@csc.mrc.ac.uk> |
861 | |
8117 | 862 * image/imshow.m: Fix for display_range. |
863 | |
8116 | 864 * general/interpn.m: Fixe for extrapval and documentation of |
865 extrapval. | |
866 | |
8107
8655dc0906e6
Special case single type conacation in Fcat. Rework cell2mat to take advantage
David Bateman <dbateman@free.fr>
parents:
8103
diff
changeset
|
867 2008-09-17 David Bateman <dbateman@free.fr> |
8655dc0906e6
Special case single type conacation in Fcat. Rework cell2mat to take advantage
David Bateman <dbateman@free.fr>
parents:
8103
diff
changeset
|
868 |
8112
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
869 * time/datetick.m: New function. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
870 * time/Makefile.in (SOURCES): Add it here. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
871 * time/datestr.m: More careful check for datevec format with 6 |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
872 column arguments. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
873 * plot/__go_draw_axes__ (do_tics_1): Use %.15g format rather than |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
874 %g format. Also use manual mode if xlabelmode is manual. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
875 |
8107
8655dc0906e6
Special case single type conacation in Fcat. Rework cell2mat to take advantage
David Bateman <dbateman@free.fr>
parents:
8103
diff
changeset
|
876 * general/cell2mat.m: Backout previous change. Special case 2D |
8655dc0906e6
Special case single type conacation in Fcat. Rework cell2mat to take advantage
David Bateman <dbateman@free.fr>
parents:
8103
diff
changeset
|
877 case for speed. |
8655dc0906e6
Special case single type conacation in Fcat. Rework cell2mat to take advantage
David Bateman <dbateman@free.fr>
parents:
8103
diff
changeset
|
878 |
8103
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
879 2008-09-11 David Bateman <dbateman@free.fr> |
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
880 |
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
881 * general/cell2mat.m: Improve the speed. |
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
882 |
8098
229bd50e6e8f
datestr.m: convert format and use strtftime for most of the actual conversion
John W. Eaton <jwe@octave.org>
parents:
8088
diff
changeset
|
883 2008-09-09 John W. Eaton <jwe@octave.org> |
229bd50e6e8f
datestr.m: convert format and use strtftime for most of the actual conversion
John W. Eaton <jwe@octave.org>
parents:
8088
diff
changeset
|
884 |
229bd50e6e8f
datestr.m: convert format and use strtftime for most of the actual conversion
John W. Eaton <jwe@octave.org>
parents:
8088
diff
changeset
|
885 * time/datestr.m: Convert format and use strftime to do most of |
229bd50e6e8f
datestr.m: convert format and use strtftime for most of the actual conversion
John W. Eaton <jwe@octave.org>
parents:
8088
diff
changeset
|
886 the actual conversion. |
229bd50e6e8f
datestr.m: convert format and use strtftime for most of the actual conversion
John W. Eaton <jwe@octave.org>
parents:
8088
diff
changeset
|
887 |
8088 | 888 2008-09-08 Tatsuro MATSUOKA <tmacchant@yahoo.co.jp> |
889 | |
890 * plot/plot.m: Doc fix. | |
891 | |
8086
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
892 2008-09-08 Mark van Rossum <mvanross@inf.ed.ac.uk> |
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
893 |
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
894 * statistics/distributions/binornd.m: Handle zero values of n |
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
895 correctly. |
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
896 |
8085
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
897 2008-09-08 Kai Habel <kai.habel@gmx.de> |
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
898 |
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
899 * plot/contourf.m: Fix case for equal-sized matrices |
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
900 of X and Y. |
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
901 |
8078
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
902 2008-09-02 David Bateman <dbateman@free.fr> |
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
903 |
8080
9f10a7b28ae3
__add_datasource__.m: fix indexing of varargin
David Bateman
parents:
8078
diff
changeset
|
904 * plot/__add_datasource__.m: Fix indexing of varargin. |
9f10a7b28ae3
__add_datasource__.m: fix indexing of varargin
David Bateman
parents:
8078
diff
changeset
|
905 |
8078
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
906 * plot/__line__.m: Remove empty clause fof if/then/else test |
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
907 * plot/plot3.m: Correctly plot matrices. |
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
908 |
8076 | 909 2008-08-31 Michael Goffioul <michael.goffioul@gmail.com> |
910 | |
911 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, | |
912 plot/__plt2sv__.m, plot/__plt2vm__.m, plot/__plt2vs__.m, | |
913 plot/__plt2vv__.m: Do not call "set" with empty arguments. | |
914 | |
8075
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
915 2008-08-29 David Bateman <dbateman@free.fr> |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
916 |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
917 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
918 plot/__plt2sv__.m, plot/__plt2vm__.m, plot/__plt2vs__.m, |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
919 plot/__plt2vv__.m, plot/plot3.m, plot/__area__.m, plot/__bars__.m, |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
920 plot/__quiver__.m, plot/__stem__.m, plot/stairs.m : |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
921 Pass additional prop/val pairs to hggroup rather than underlying |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
922 objects. If a baseline existings specifically associate it with |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
923 the parent of the created hggroup to allow things like "stem(..., |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
924 'parent', hg)" to work correctly. |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
925 * plot/hold.m: If currentaxes if figure doesn't exist, create it. |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
926 |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
927 * plot/plot3.m: Pass hline to __add_line_series__. |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
928 * plot/__add_datasource__.m: Fix off by one error. |
a028a5960e18
Fix for hold with no figures/axes. Set prop/val pairs to hggroups rather than underlying objects. Fix for equality test in array_property
David Bateman <dbateman@free.fr>
parents:
8070
diff
changeset
|
929 |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
930 2008-08-28 David Bateman <dbateman@free.fr> |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
931 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
932 * plot/__add_line_series__.m, plot/ishghandle.m, plot/linkprop.m, |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
933 plot/refresh.m, plot/refreshdata.m: New functions |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
934 * Makefile.in (SOURCES): Add them here. |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
935 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
936 * plot/__area__.m, plot/__bars__.m, plot/__quiver__.m, |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
937 plot/__stem__.m, plot/stairs.m, plot/stem.m: Add data sources. |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
938 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
939 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
940 plot/__plt2sv__.m, plot/__plt2vm__.m, plot/__plt2vs__.m, |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
941 plot/__plt2vv__.m, plot/plot3.m: Add line series and data sources. |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
942 |
8069
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
943 2008-08-28 Martin Weiser <weiser2@natur.cuni.cz> |
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
944 |
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
945 * plot/scatter3.m: Doc fix. |
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
946 |
8065
6333da0dfdfd
hold.m: if hold is applied to a figure, set state for all child axes objects
John W. Eaton <jwe@octave.org>
parents:
8060
diff
changeset
|
947 2008-08-26 John W. Eaton <jwe@octave.org> |
6333da0dfdfd
hold.m: if hold is applied to a figure, set state for all child axes objects
John W. Eaton <jwe@octave.org>
parents:
8060
diff
changeset
|
948 |
6333da0dfdfd
hold.m: if hold is applied to a figure, set state for all child axes objects
John W. Eaton <jwe@octave.org>
parents:
8060
diff
changeset
|
949 * plot/hold.m: If hold is applied to a figure, set state for all |
6333da0dfdfd
hold.m: if hold is applied to a figure, set state for all child axes objects
John W. Eaton <jwe@octave.org>
parents:
8060
diff
changeset
|
950 child axes objects. |
6333da0dfdfd
hold.m: if hold is applied to a figure, set state for all child axes objects
John W. Eaton <jwe@octave.org>
parents:
8060
diff
changeset
|
951 |
8060
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
952 2008-08-26 Michael Goffioul <michael.goffioul@gmail.com> |
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
953 |
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
954 * plot/backend.m: New function to handle backend switch. |
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
955 * plot/Makefile.in: Add it. |
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
956 |
8056
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
957 2008-08-26 David Bateman <dbateman@free.fr> |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
958 |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
959 * plot/__area__.m: Use __next_line_color__ rather than fixed set |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
960 of colors. Convert to use area series objects. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
961 * plot/area.m: Update documentation to correspond to |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
962 the area series usage. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
963 * plot/__bar.m: Pass the original rather than scaled width to |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
964 __bars__. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
965 * plot/__bars__.m: Convert to use bar series objects. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
966 * plot/bar.m, plor/barh.m: Update documentation to correspond to |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
967 the bar series usage. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
968 * plot/__quiver__.m: Convert to use quiver series objects. Change |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
969 the default scaling and arrowsize for compatibility. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
970 * plot/quiver.m: Update documentation to correspond to |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
971 the quiver series usage. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
972 * plot/stairs.m: Convert to use stair series objects. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
973 * plot/stem.m: Don't include baseline in xlim calculation. Correct |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
974 test of whether baseline xdata needs updating in the update_xlim |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
975 callback. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
976 |
8054 | 977 2008-08-25 Thomas L. Scofield <scofield@calvin.edu> |
978 | |
979 * image/imwrite.m: Add ras and tiff to the list of accepted formats. | |
980 Handle parameter-value options. Untabify. | |
981 | |
8052
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
982 2008-08-25 David Bateman <dbateman@free.fr> |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
983 |
8056
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
984 * plot/__stem__.m: Use property inheritance and don't explicitly |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
985 call drawnow. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
986 |
8052
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
987 * plot/__go_draw_axes__.m: Respect the "visible" property of object and |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
988 don't draw them if the object is not visible. |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
989 |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
990 * plot/__stem__.m: Convert to use stem series object. |
8056
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
991 * plot/stem.m, plot/stem3.m: Update documentation to correspond to |
8052
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
992 the stem series usage. |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
993 |
8050
dac919d9c418
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8048
diff
changeset
|
994 2008-08-22 John W. Eaton <jwe@octave.org> |
dac919d9c418
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8048
diff
changeset
|
995 |
dac919d9c418
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8048
diff
changeset
|
996 * statistics/distributions/chi2rnd.m: Fix missing semicolon. |
dac919d9c418
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8048
diff
changeset
|
997 |
8048
2f7ff06c0c7b
__go_draw_axes__.m (__gnuplot_write_data__): write "Inf Inf\n" if all data pairs contain NaN values
John W. Eaton <jwe@octave.org>
parents:
8047
diff
changeset
|
998 2008-08-21 John W. Eaton <jwe@octave.org> |
2f7ff06c0c7b
__go_draw_axes__.m (__gnuplot_write_data__): write "Inf Inf\n" if all data pairs contain NaN values
John W. Eaton <jwe@octave.org>
parents:
8047
diff
changeset
|
999 |
2f7ff06c0c7b
__go_draw_axes__.m (__gnuplot_write_data__): write "Inf Inf\n" if all data pairs contain NaN values
John W. Eaton <jwe@octave.org>
parents:
8047
diff
changeset
|
1000 * plot/__go_draw_axes__.m: Fix test for have_data. |
2f7ff06c0c7b
__go_draw_axes__.m (__gnuplot_write_data__): write "Inf Inf\n" if all data pairs contain NaN values
John W. Eaton <jwe@octave.org>
parents:
8047
diff
changeset
|
1001 (__gnuplot_write_data__): Write "Inf Inf\n" if all data pairs |
2f7ff06c0c7b
__go_draw_axes__.m (__gnuplot_write_data__): write "Inf Inf\n" if all data pairs contain NaN values
John W. Eaton <jwe@octave.org>
parents:
8047
diff
changeset
|
1002 contain NaN values. |
2f7ff06c0c7b
__go_draw_axes__.m (__gnuplot_write_data__): write "Inf Inf\n" if all data pairs contain NaN values
John W. Eaton <jwe@octave.org>
parents:
8047
diff
changeset
|
1003 |
8047
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1004 2008-08-21 Thomas Treichl <Thomas.Treichl@gmx.net> |
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1005 |
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1006 * optimization/sqp.m: Increase test script tolerance. |
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1007 |
8046 | 1008 2008-08-21 David Bateman <dbateman@free.fr> |
1009 | |
1010 * plot/ezplot.m : New function. | |
1011 * plot/Makefile.in (SOURCES): Add ezplot.m to the list. | |
1012 * plot/__ezplot__.m: Adapt to allow for use with the ezplot function. | |
1013 | |
8182 | 1014 2008-08-20 Jaroslav Hajek <highegg@gmail.com> |
8043
30d15ab0ce01
avoid problematic subfunction call in an anonymous function
Jaroslav Hajek <highegg@gmail.com>
parents:
8042
diff
changeset
|
1015 |
30d15ab0ce01
avoid problematic subfunction call in an anonymous function
Jaroslav Hajek <highegg@gmail.com>
parents:
8042
diff
changeset
|
1016 * pkg/pkg.m (configure_make): Pass handle to is_architecture_dependent |
30d15ab0ce01
avoid problematic subfunction call in an anonymous function
Jaroslav Hajek <highegg@gmail.com>
parents:
8042
diff
changeset
|
1017 directly. |
30d15ab0ce01
avoid problematic subfunction call in an anonymous function
Jaroslav Hajek <highegg@gmail.com>
parents:
8042
diff
changeset
|
1018 |
8042
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
8040
diff
changeset
|
1019 2008-08-20 David Bateman <dbateman@free.fr> |
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
8040
diff
changeset
|
1020 |
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
8040
diff
changeset
|
1021 * plot/__go_draw_axes__.m: Don't set pm3d implicit if the plot |
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
8040
diff
changeset
|
1022 contains a surface. Fixes things like meshc(peaks()). |
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
8040
diff
changeset
|
1023 |
8040 | 1024 2008-08-19 Jaroslav Hajek <highegg@gmail.com> |
8036
854683691d7a
fix invalid memory read in glpk
Jaroslav Hajek <highegg@gmail.com>
parents:
8035
diff
changeset
|
1025 |
854683691d7a
fix invalid memory read in glpk
Jaroslav Hajek <highegg@gmail.com>
parents:
8035
diff
changeset
|
1026 * optimization/glpk.m: Fix invalid call to zeros. |
854683691d7a
fix invalid memory read in glpk
Jaroslav Hajek <highegg@gmail.com>
parents:
8035
diff
changeset
|
1027 |
8035 | 1028 2008-08-19 David Bateman <dbateman@free.fr> |
1029 | |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
8036
diff
changeset
|
1030 * miscellaneous/intwarning.m: New function. |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
8036
diff
changeset
|
1031 * miscellaneous/Makefile.in (SOURCES): Add it here. |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
8036
diff
changeset
|
1032 |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
8036
diff
changeset
|
1033 * statistics/base/ranks.m: Doc fix. |
8035 | 1034 |
8026
79890b8187bd
scripts/general/Makefile.in (SOURCES): add cellidx.m to the list
John W. Eaton <jwe@octave.org>
parents:
8019
diff
changeset
|
1035 2008-08-08 John W. Eaton <jwe@octave.org> |
79890b8187bd
scripts/general/Makefile.in (SOURCES): add cellidx.m to the list
John W. Eaton <jwe@octave.org>
parents:
8019
diff
changeset
|
1036 |
79890b8187bd
scripts/general/Makefile.in (SOURCES): add cellidx.m to the list
John W. Eaton <jwe@octave.org>
parents:
8019
diff
changeset
|
1037 * general/Makefile.in (SOURCES): Add cellidx.m to the list. |
79890b8187bd
scripts/general/Makefile.in (SOURCES): add cellidx.m to the list
John W. Eaton <jwe@octave.org>
parents:
8019
diff
changeset
|
1038 |
8019
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8002
diff
changeset
|
1039 2008-08-07 John W. Eaton <jwe@octave.org> |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8002
diff
changeset
|
1040 |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8002
diff
changeset
|
1041 * gethelp.cc: Delete definition of NPOS. |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8002
diff
changeset
|
1042 |
8002
30f560a5fbc3
strtok.m: include TAB, LF, VT, FF, and CR in default set of delim characters
John W. Eaton <jwe@octave.org>
parents:
7994
diff
changeset
|
1043 2008-08-04 John W. Eaton <jwe@octave.org> |
30f560a5fbc3
strtok.m: include TAB, LF, VT, FF, and CR in default set of delim characters
John W. Eaton <jwe@octave.org>
parents:
7994
diff
changeset
|
1044 |
30f560a5fbc3
strtok.m: include TAB, LF, VT, FF, and CR in default set of delim characters
John W. Eaton <jwe@octave.org>
parents:
7994
diff
changeset
|
1045 * strings/strtok.m: Include TAB, LF, VT, FF, and CR in default |
30f560a5fbc3
strtok.m: include TAB, LF, VT, FF, and CR in default set of delim characters
John W. Eaton <jwe@octave.org>
parents:
7994
diff
changeset
|
1046 list of delim characters. Update tests. |
30f560a5fbc3
strtok.m: include TAB, LF, VT, FF, and CR in default set of delim characters
John W. Eaton <jwe@octave.org>
parents:
7994
diff
changeset
|
1047 |
8357
bdb0a5aea9f2
Minor bug fixes, update help text and tests
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8356
diff
changeset
|
1048 2008-07-29 Thomas Treichl <Thomas.Treichl@gmx.net> |
bdb0a5aea9f2
Minor bug fixes, update help text and tests
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8356
diff
changeset
|
1049 |
bdb0a5aea9f2
Minor bug fixes, update help text and tests
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8356
diff
changeset
|
1050 * general/arrayfun.m: Minor bug fixes, update help text and tests |
bdb0a5aea9f2
Minor bug fixes, update help text and tests
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8356
diff
changeset
|
1051 |
7994
8ccd9b0bf6bc
plot/axis.m (__get_tight_lims__): don't fail if data is not a vector
John W. Eaton <jwe@octave.org>
parents:
7989
diff
changeset
|
1052 2008-07-29 John W. Eaton <jwe@octave.org> |
8ccd9b0bf6bc
plot/axis.m (__get_tight_lims__): don't fail if data is not a vector
John W. Eaton <jwe@octave.org>
parents:
7989
diff
changeset
|
1053 |
8ccd9b0bf6bc
plot/axis.m (__get_tight_lims__): don't fail if data is not a vector
John W. Eaton <jwe@octave.org>
parents:
7989
diff
changeset
|
1054 * plot/axis.m (__get_tight_lims__): Use strcat instead of []. |
8ccd9b0bf6bc
plot/axis.m (__get_tight_lims__): don't fail if data is not a vector
John W. Eaton <jwe@octave.org>
parents:
7989
diff
changeset
|
1055 Don't fail if data is not a vector. |
8ccd9b0bf6bc
plot/axis.m (__get_tight_lims__): don't fail if data is not a vector
John W. Eaton <jwe@octave.org>
parents:
7989
diff
changeset
|
1056 |
7988
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1057 2008-07-29 David Bateman <dbateman@free.fr> |
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1058 |
7989
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1059 * general/cellidx.m: reinclude from control toolbox, as used by |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1060 print command. Replace is_signal_list with iscellstr. |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1061 * general/quadqk.m, linear-algebra/planeror.m, |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1062 miscellaneous/namelengthmax.m, specfun/realpow.m: Miscellaneous |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1063 documentation fixes. |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1064 |
7988
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1065 * control, finance, quaternion: Remove directories and all of the |
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1066 files they contain. |
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1067 * Makefile.in: Remove all references to the above directories. |
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1068 * configure.in: ditto. |
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1069 |
8182 | 1070 2008-07-28 Ben Abbott <bpabbott@mac.com> |
7985
85c5c1d55820
hold.m: Trival mod to help text.
Ben Abbott <bpabbott@mac.com>
parents:
7983
diff
changeset
|
1071 |
85c5c1d55820
hold.m: Trival mod to help text.
Ben Abbott <bpabbott@mac.com>
parents:
7983
diff
changeset
|
1072 * plot/hold.m: Clarify help text. |
7986 | 1073 |
1074 * specfun/reallog.m: Fix help string. | |
1075 | |
7975
ed4ec7875f98
trival doc fix for genvarname
David Bateman <dbateman@free.fr>
parents:
7974
diff
changeset
|
1076 2008-07-28 David Bateman <dbateman@free.fr> |
7983 | 1077 |
1078 * strings/regexptranslate.m: Add real documentation. | |
1079 | |
7982
4e0fa430f840
Allow X/Y to be unequal vectors in contourf
David Bateman <dbateman@free.fr>
parents:
7978
diff
changeset
|
1080 * plot/contourf.m: Allow X,Y to be unequal vectors. |
7975
ed4ec7875f98
trival doc fix for genvarname
David Bateman <dbateman@free.fr>
parents:
7974
diff
changeset
|
1081 |
7978
f8514786c490
Clarify help of the shading function
David Bateman <dbateman@free.fr>
parents:
7975
diff
changeset
|
1082 * plot/shading.m: Clarify help string. |
f8514786c490
Clarify help of the shading function
David Bateman <dbateman@free.fr>
parents:
7975
diff
changeset
|
1083 |
7975
ed4ec7875f98
trival doc fix for genvarname
David Bateman <dbateman@free.fr>
parents:
7974
diff
changeset
|
1084 * general/genvarname.m: Trivial documentation fix. |
ed4ec7875f98
trival doc fix for genvarname
David Bateman <dbateman@free.fr>
parents:
7974
diff
changeset
|
1085 |
7974 | 1086 2008-07-28 John W. Eaton <jwe@octave.org> |
1087 | |
1088 * image/imwrite.m: New function. | |
1089 * image/Makefile.in (SOURCES): Add it to the list. | |
1090 | |
7969 | 1091 2008-07-24 Ben Abbott <bpabbott@mac.com> |
1092 | |
1093 * time/datestr.m: New xtest. | |
1094 | |
7966
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1095 2008-07-21 Michael Goffioul <michael.goffioul@gmail.com> |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1096 |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1097 * plot/closereq.m: Use first gcbf to get the handle of the figure to |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1098 be closed. |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1099 * plot/close.m: Call __go_execute_callback__. |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1100 |
7940 | 1101 2008-07-17 John W. Eaton <jwe@octave.org> |
1102 | |
1103 * general/fliplr.m: Fix usage test. | |
1104 * testfun/test.m: Fix usage tests. | |
1105 | |
8040 | 1106 2008-07-17 Jaroslav Hajek <highegg@gmail.com> |
7939 | 1107 |
1108 * statistics/base/cov.m: Fix test that should no longer work. | |
1109 | |
7935 | 1110 2008-07-16 Michael Goffioul <michael.goffioul@gmail.com> |
1111 | |
1112 * plot/gcbo.m, plot/gcbf.m: New functions. | |
1113 * plot/Makefile.in (SOURCES): Add them to the list. | |
1114 | |
7930
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1115 2008-07-16 John W. Eaton <jwe@octave.org> |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1116 |
7931
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1117 * deprecated/loadimage.m: New file. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1118 * deprecated/Makefile.in (SOURCES): Add it to the list. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1119 * image/loadimage.m: Delete. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1120 * image/Makefile.in (SOURCES): Remove it from the list. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1121 * image/imread.m: Incorporate loadimage functionality here. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1122 Simplify. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1123 * image/imshow.m: Call imread, not loadimage. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1124 |
7930
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1125 * image/__img__.m: Set clim for true-color integer data. |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1126 |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1127 * image/imshow.m: Don't convert integer true-color data to double. |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1128 |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1129 * plot/__go_draw_axes__.m: Recognize 3-d cdata as a true-color image. |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1130 |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7925
diff
changeset
|
1131 2008-07-14 John W. Eaton <jwe@octave.org> |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7925
diff
changeset
|
1132 |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7925
diff
changeset
|
1133 * image/Makefile.in (SOURCES): Add imread.m to the list. |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7925
diff
changeset
|
1134 |
7925
9316b59903c9
Add original imread() files (from octave-forge) to core octave.
Thomas L. Scofield <scofield AT calvin DOT edu>
parents:
7920
diff
changeset
|
1135 2008-07-14 Thomas L. Scofield <scofield@calvin.edu> |
9316b59903c9
Add original imread() files (from octave-forge) to core octave.
Thomas L. Scofield <scofield AT calvin DOT edu>
parents:
7920
diff
changeset
|
1136 |
9316b59903c9
Add original imread() files (from octave-forge) to core octave.
Thomas L. Scofield <scofield AT calvin DOT edu>
parents:
7920
diff
changeset
|
1137 * image/imread.m: New file from Octave Forge. |
9316b59903c9
Add original imread() files (from octave-forge) to core octave.
Thomas L. Scofield <scofield AT calvin DOT edu>
parents:
7920
diff
changeset
|
1138 |
8040 | 1139 2008-07-10 Jaroslav Hajek <highegg@gmail.com> |
7920
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1140 |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1141 * set/unique.m: Implement 'first' and 'last', some simplifications. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1142 * set/union.m: Implement output indices. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1143 * set/intersect.m: Implement 'rows'. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1144 * set/setdiff.m: Implement output indices. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1145 * set/setxor.m: Implement 'rows' and output indices. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1146 Add tests and adjust docs in all of the above. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1147 |
7881
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1148 2008-06-11 John W. Eaton <jwe@octave.org> |
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1149 |
7883
3092dd54ad95
fix expected output from lasterr in tests; fix fail tests in ismember.m
John W. Eaton <jwe@octave.org>
parents:
7881
diff
changeset
|
1150 * set/ismember.m: Fix fail tests. |
3092dd54ad95
fix expected output from lasterr in tests; fix fail tests in ismember.m
John W. Eaton <jwe@octave.org>
parents:
7881
diff
changeset
|
1151 |
7881
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1152 * general/rat.m: Properly initialize steps when all elements of |
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1153 input array are integers. Append spaces as necessary when |
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1154 building character array. |
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1155 |
8040 | 1156 2008-06-05 Jaroslav Hajek <highegg@gmail.com> |
7873
02b590f46a29
correct fputs to fprintf in __go_draw_axes__.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7865
diff
changeset
|
1157 |
02b590f46a29
correct fputs to fprintf in __go_draw_axes__.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7865
diff
changeset
|
1158 * plot/__go_draw_axes__.m: Use fprintf for formatted output. |
02b590f46a29
correct fputs to fprintf in __go_draw_axes__.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7865
diff
changeset
|
1159 |
7865
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1160 2008-06-04 Michael Goffioul <michael.goffioul@gmail.com> |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1161 |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1162 * plot/__go_draw_axes__.m: Support hggroup objects. |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1163 * plot/hggroup.m: New file. |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1164 * plot/Makefile.in: Handle it. |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1165 |
7815
a41df65f3f00
Add some single precision test code and fix resulting bugs
David Bateman <dbateman@free.fr>
parents:
7813
diff
changeset
|
1166 2008-06-02 David Bateman <dbateman@free.fr> |
a41df65f3f00
Add some single precision test code and fix resulting bugs
David Bateman <dbateman@free.fr>
parents:
7813
diff
changeset
|
1167 |
7817 | 1168 * miscellaneous/debug.m: New file.. |
1169 * Makefile.in (SOURCES): Add it to the list. | |
1170 | |
7815
a41df65f3f00
Add some single precision test code and fix resulting bugs
David Bateman <dbateman@free.fr>
parents:
7813
diff
changeset
|
1171 * general/interp1q.m: Remove spaces between functions and args in |
a41df65f3f00
Add some single precision test code and fix resulting bugs
David Bateman <dbateman@free.fr>
parents:
7813
diff
changeset
|
1172 []. Fix test code to actually test interp1q. |
a41df65f3f00
Add some single precision test code and fix resulting bugs
David Bateman <dbateman@free.fr>
parents:
7813
diff
changeset
|
1173 |
8040 | 1174 2008-06-02 Jaroslav Hajek <highegg@gmail.com> |
7813 | 1175 |
1176 * strings/strcat.m: Add tests. | |
1177 | |
7812
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1178 2008-06-02 Kim Hansen <kimhanse@gmail.com> |
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1179 |
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1180 * strings/mat2str.m: Change is_complex to iscomplex, add tests, add |
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1181 missing ; |
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1182 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1183 2008-05-20 David Bateman <dbateman@free.fr> |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1184 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1185 * miscellaneous/single.m: Remove. |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1186 * Makefile.in (SOURCES): Remove it here as well. |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1187 |
7785
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1188 2008-05-20 David Bateman <dbateman@free.fr> |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1189 |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1190 * general/interp1q.m: New function. |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1191 * general/Makefile.in (SOURCES): Add it here. |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1192 |
7783 | 1193 2008-05-20 Bill Denney <bill@denney.ws> |
1194 | |
1195 * time/datenum.m: Allow mixed scalar and vector/matrix input. | |
1196 New tests. | |
1197 | |
7777 | 1198 2008-05-19 John W. Eaton <jwe@octave.org> |
1199 | |
1200 * general/isa.m: Fix tests. | |
1201 | |
7773 | 1202 2008-05-13 Bill Denney <bill@denney.ws> |
1203 | |
1204 * general/isa.m: Use persistent cell arrays to hold class names | |
1205 instead of multiple strcmp calls. | |
1206 | |
7770
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1207 2008-05-12 David Bateman <dbateman@free.fr> |
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1208 |
7795
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1209 * control/base/__stepimp__.m, control/base/bode_bounds.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1210 control/base/damp.m, control/base/dlqr.m, control/base/lsim.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1211 control/base/tzero.m, control/hinf/hinfsyn.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1212 control/hinf/is_dgkf.m, control/system/d2c.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1213 control/system/is_controllable.m, control/system/is_detectable.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1214 control/system/is_stabilizable.m, control/system/is_stable.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1215 control/system/sysconnect.m, general/bicubic.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1216 general/cplxpair.m, general/isdefinite.m, general/issymmetric.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1217 general/quadgk.m, general/quadl.m, general/quadv.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1218 geometry/delaunayn.m, linear-algebra/krylov.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1219 linear-algebra/null.m, linear-algebra/onenormest.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1220 linear-algebra/orth.m, linear-algebra/rank.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1221 linear-algebra/rref.m, optimization/qp.m, optimization/sqp.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1222 polynomial/polygcd.m, polynomial/residue.m, sparse/normest.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1223 specfun/erfinv.m, statistics/distributions/betainv.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1224 statistics/distributions/gaminv.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1225 statistics/distributions/kolmogorov_smirnov_cdf.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1226 statistics/tests/manova.m: Modify calls to eps to allow for single |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1227 precision types. |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1228 |
7772
ff717f2f9feb
Treat numeric and float argument in the isa function.
David Bateman <dbateman@free.fr>
parents:
7771
diff
changeset
|
1229 * general/isa.m: Also treat "float: and "numeric" as the class |
ff717f2f9feb
Treat numeric and float argument in the isa function.
David Bateman <dbateman@free.fr>
parents:
7771
diff
changeset
|
1230 argument. |
ff717f2f9feb
Treat numeric and float argument in the isa function.
David Bateman <dbateman@free.fr>
parents:
7771
diff
changeset
|
1231 |
7771
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7770
diff
changeset
|
1232 * general/dblquad.m, general/quadgk.m, general/quadv.m, |
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7770
diff
changeset
|
1233 general/triplequad.m: New functions. |
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7770
diff
changeset
|
1234 |
7770
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1235 * testfun/assert.m: Allow assert(cond, errmsg, ...) and |
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1236 assert(cond, msgid, errmsg, ...) syntax for compatibility. |
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1237 |
7769
247828ad21e2
Replace deprecated isstr() call
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7768
diff
changeset
|
1238 2008-05-09 Thomas Weber <thomas.weber.mail@gmail.com> |
247828ad21e2
Replace deprecated isstr() call
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7768
diff
changeset
|
1239 |
247828ad21e2
Replace deprecated isstr() call
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7768
diff
changeset
|
1240 * miscellaneous/news.m: Replace deprecated isstr call. |
247828ad21e2
Replace deprecated isstr() call
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7768
diff
changeset
|
1241 |
7765 | 1242 2008-05-06 David Bateman <dbateman@free.fr> |
1243 | |
1244 * miscellaneous/symvar.m: New function. | |
1245 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
1246 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1247 2008-05-04 John W. Eaton <jwe@octave.org> |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1248 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1249 * miscellaneous/dbstack.m: Delete. |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1250 * miscellaneous/Makefile.in (SOURCES): Remove it from the list. |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1251 |
7768
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1252 2008-05-03 Rafael Laboissiere <rafael@debian.org> |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1253 |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1254 * linear-algebra/cond.m, miscellaneous/version.m, |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1255 miscellaneous/version.m, plot/feather.m, plot/__bar__.m, |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1256 plot/compass.m, plot/__quiver__.m, plot/__scatter__.m: Use ischar |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1257 instead of deprecated isstr. |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1258 |
7746
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1259 2008-05-01 David Bateman <dbateman@free.fr> |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1260 |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1261 * plot/plot.m: Remove documentation of 'L' option. |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1262 * plot/stairs.m: Allow axis handles, properties and linespecs to |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1263 be passed. |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1264 |
7747 | 1265 2008-04-30 John W. Eaton <jwe@octave.org> |
1266 | |
1267 * elfun/acot.m, elfun/acsc.m, elfun/acsch.m, elfun/asec.m, | |
1268 elfun/asech.m, specfun/pow2.m: Fix tests. | |
1269 | |
8040 | 1270 2008-04-30 Jaroslav Hajek <highegg@gmail.com> |
7740 | 1271 |
1272 * specfun/log2.m: Delete. | |
1273 * specfun/Makefile.in (SOURCES): Delete it from the list. | |
1274 | |
7739
ca9bfe159144
Set archprefix for -local and -global options to pkg
David Bateman <dbateman@free.fr>
parents:
7737
diff
changeset
|
1275 2008-04-29 David Bateman <dbateman@free.fr> |
ca9bfe159144
Set archprefix for -local and -global options to pkg
David Bateman <dbateman@free.fr>
parents:
7737
diff
changeset
|
1276 |
ca9bfe159144
Set archprefix for -local and -global options to pkg
David Bateman <dbateman@free.fr>
parents:
7737
diff
changeset
|
1277 pkg/pkg.m: Also set archprefix with the -local and -global options. |
ca9bfe159144
Set archprefix for -local and -global options to pkg
David Bateman <dbateman@free.fr>
parents:
7737
diff
changeset
|
1278 |
7737
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1279 2008-04-29 Jonathan Stickel <jjstickel@vcn.com> |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1280 |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1281 * statistics/distributions/tcdf.m, statistics/distributions/tinv.m: |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1282 Doc fix. |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1283 |
7736 | 1284 2008-04-25 John W. Eaton <jwe@octave.org> |
1285 | |
1286 * miscellaneous/dbstack.m: New function. | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1287 * miscellaneous/Makefile.in (SOURCES): Add it to the list. |
7736 | 1288 |
7726
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1289 2008-04-21 David Bateman <dbateman@free.fr> |
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1290 |
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1291 * plot/__go_draw_axes__.m (gnuplot_position_colorbox): New arg, obj. |
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1292 Change caller. Improve sizing and position of colorbox for subplots. |
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1293 * plot/colorbar.m: New demos. |
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1294 |
8149 | 1295 2008-04-16 S�ren Hauberg <hauberg@gmail.com> |
7714
83ea845cda36
Display a (hopefully) informative error message if gnuplot isn't found
sh@sh-laptop
parents:
7713
diff
changeset
|
1296 |
83ea845cda36
Display a (hopefully) informative error message if gnuplot isn't found
sh@sh-laptop
parents:
7713
diff
changeset
|
1297 * plot/__gnuplot_version__.m: Display error if gnuplot is not found. |
83ea845cda36
Display a (hopefully) informative error message if gnuplot isn't found
sh@sh-laptop
parents:
7713
diff
changeset
|
1298 |
7712
a626db2e8a1c
view: get values from current axes if nargin == 0
John W. Eaton <jwe@octave.org>
parents:
7711
diff
changeset
|
1299 2008-04-15 John W. Eaton <jwe@octave.org> |
a626db2e8a1c
view: get values from current axes if nargin == 0
John W. Eaton <jwe@octave.org>
parents:
7711
diff
changeset
|
1300 |
a626db2e8a1c
view: get values from current axes if nargin == 0
John W. Eaton <jwe@octave.org>
parents:
7711
diff
changeset
|
1301 * plot/view.m: Get values from current axes if nargin == 0. |
a626db2e8a1c
view: get values from current axes if nargin == 0
John W. Eaton <jwe@octave.org>
parents:
7711
diff
changeset
|
1302 |
7713 | 1303 2008-04-15 David Bateman <dbateman@free.fr> |
7711
263bcc319233
Minor fix for multiple patches with NaN values
David Bateman <dbateman@free.fr>
parents:
7710
diff
changeset
|
1304 |
263bcc319233
Minor fix for multiple patches with NaN values
David Bateman <dbateman@free.fr>
parents:
7710
diff
changeset
|
1305 * plot/__patch__.m: Fix for NaN values in faces of patches. |
263bcc319233
Minor fix for multiple patches with NaN values
David Bateman <dbateman@free.fr>
parents:
7710
diff
changeset
|
1306 |
7710 | 1307 2008-04-14 David Bateman <dbateman@free.fr> |
1308 | |
1309 * plot/rose.m: Add missing comment mark that causes issues with | |
1310 octave-forge function referencing. | |
1311 * deprecated/lchol.m, deprecated/splchol.m: Fix texinfo errors. | |
1312 | |
7704
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1313 2008-04-09 John W. Eaton <jwe@octave.org> |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1314 |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1315 * deprecated/beta_cdf.m, deprecated/beta_inv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1316 deprecated/beta_pdf.m, deprecated/beta_rnd.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1317 deprecated/binomial_cdf.m, deprecated/binomial_inv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1318 deprecated/binomial_pdf.m, deprecated/binomial_rnd.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1319 deprecated/chisquare_cdf.m, deprecated/chisquare_inv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1320 deprecated/chisquare_pdf.m, deprecated/chisquare_rnd.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1321 deprecated/clearplot.m, deprecated/clg.m, deprecated/com2str.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1322 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1323 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1324 deprecated/f_cdf.m, deprecated/f_inv.m, deprecated/f_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1325 deprecated/f_rnd.m, deprecated/gamma_cdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1326 deprecated/gamma_inv.m, deprecated/gamma_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1327 deprecated/gamma_rnd.m, deprecated/geometric_cdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1328 deprecated/geometric_inv.m, deprecated/geometric_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1329 deprecated/geometric_rnd.m, deprecated/hypergeometric_cdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1330 deprecated/hypergeometric_inv.m, deprecated/hypergeometric_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1331 deprecated/hypergeometric_rnd.m, deprecated/intersection.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1332 deprecated/is_bool.m, deprecated/is_complex.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1333 deprecated/is_list.m, deprecated/is_matrix.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1334 deprecated/is_scalar.m, deprecated/is_square.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1335 deprecated/is_stream.m, deprecated/is_struct.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1336 deprecated/is_symmetric.m, deprecated/is_vector.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1337 deprecated/isstr.m, deprecated/lchol.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1338 deprecated/lognormal_cdf.m, deprecated/lognormal_inv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1339 deprecated/lognormal_pdf.m, deprecated/lognormal_rnd.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1340 deprecated/meshdom.m, deprecated/normal_cdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1341 deprecated/normal_inv.m, deprecated/normal_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1342 deprecated/normal_rnd.m, deprecated/pascal_cdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1343 deprecated/pascal_inv.m, deprecated/pascal_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1344 deprecated/pascal_rnd.m, deprecated/poisson_cdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1345 deprecated/poisson_inv.m, deprecated/poisson_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1346 deprecated/poisson_rnd.m, deprecated/polyinteg.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1347 deprecated/setstr.m, deprecated/spatan2.m, deprecated/spchol.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1348 deprecated/spchol2inv.m, deprecated/spcholinv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1349 deprecated/spcumprod.m, deprecated/spcumsum.m, deprecated/spdet.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1350 deprecated/spdiag.m, deprecated/spfind.m, deprecated/spinv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1351 deprecated/spkron.m, deprecated/splchol.m, deprecated/splu.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1352 deprecated/spmax.m, deprecated/spmin.m, deprecated/spprod.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1353 deprecated/spqr.m, deprecated/spsum.m, deprecated/spsumsq.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1354 deprecated/struct_contains.m, deprecated/struct_elements.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1355 deprecated/t_cdf.m, deprecated/t_inv.m, deprecated/t_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1356 deprecated/t_rnd.m, deprecated/uniform_cdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1357 deprecated/uniform_inv.m, deprecated/uniform_pdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1358 deprecated/uniform_rnd.m, deprecated/weibcdf.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1359 deprecated/weibinv.m, deprecated/weibpdf.m, deprecated/weibrnd.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1360 deprecated/weibull_cdf.m, deprecated/weibull_inv.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1361 deprecated/weibull_pdf.m, deprecated/weibull_rnd.m, |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1362 deprecated/wiener_rnd.m: Don't embed newline in warning message. |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1363 |
7703
e44e4cd2129d
Don't allow the use of lists in assert.m
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
1364 2008-04-09 David Bateman <dbateman@free.fr> |
e44e4cd2129d
Don't allow the use of lists in assert.m
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
1365 |
e44e4cd2129d
Don't allow the use of lists in assert.m
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
1366 * testfun/assert.m: Don't allow cond and expected to be lists. |
e44e4cd2129d
Don't allow the use of lists in assert.m
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
1367 |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1368 2008-04-04 John W. Eaton <jwe@octave.org> |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1369 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1370 * strings/Makefile.in (SOURCES): Add isstrprop.m to the list. |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1371 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1372 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1373 * Makefile.incontrol/base/Makefile.in, control/hinf/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1374 * Makefile.incontrol/obsolete/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1375 * Makefile.incontrol/system/Makefile.in, control/util/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1376 * Makefile.indeprecated/Makefile.in, elfun/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1377 * Makefile.infinance/Makefile.in, general/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1378 * Makefile.ingeometry/Makefile.in, image/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1379 * Makefile.inio/Makefile.in, linear-algebra/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1380 * Makefile.inmiscellaneous/Makefile.in, optimization/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1381 * Makefile.inpath/Makefile.in, pkg/Makefile.in, plot/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1382 * Makefile.inpolynomial/Makefile.in, quaternion/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1383 * Makefile.inset/Makefile.in, signal/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1384 * Makefile.insparse/Makefile.in, specfun/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1385 * Makefile.inspecial-matrix/Makefile.in, startup/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1386 * Makefile.instatistics/Makefile.in, statistics/base/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1387 * Makefile.instatistics/distributions/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1388 * Makefile.instatistics/models/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1389 * Makefile.instatistics/tests/Makefile.in, strings/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1390 * Makefile.intestfun/Makefile.in, time/Makefile.in |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1391 * Makefile.in(check-m-sources): New target. |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1392 |
7697
0bdfff62cc49
lsqnonneg: use optimset, correctly index Z and P in main loop
bill@denney.ws
parents:
7696
diff
changeset
|
1393 2008-04-04 Bill Denney <bill@denney.ws> |
0bdfff62cc49
lsqnonneg: use optimset, correctly index Z and P in main loop
bill@denney.ws
parents:
7696
diff
changeset
|
1394 |
0bdfff62cc49
lsqnonneg: use optimset, correctly index Z and P in main loop
bill@denney.ws
parents:
7696
diff
changeset
|
1395 * optimization/lsqnonneg.m: Use optimset, correctly index |
0bdfff62cc49
lsqnonneg: use optimset, correctly index Z and P in main loop
bill@denney.ws
parents:
7696
diff
changeset
|
1396 Z and P in main loop. |
0bdfff62cc49
lsqnonneg: use optimset, correctly index Z and P in main loop
bill@denney.ws
parents:
7696
diff
changeset
|
1397 |
7696
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1398 2008-04-04 David Bateman <dbateman@free.fr> |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1399 |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1400 * deprecated/beta_cdf.m deprecated/beta_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1401 deprecated/beta_pdf.m deprecated/beta_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1402 deprecated/binomial_cdf.m deprecated/binomial_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1403 deprecated/binomial_pdf.m deprecated/binomial_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1404 deprecated/chisquare_cdf.m deprecated/chisquare_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1405 deprecated/chisquare_pdf.m deprecated/chisquare_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1406 deprecated/clearplot.m deprecated/clg.m deprecated/com2str.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1407 deprecated/exponential_cdf.m deprecated/exponential_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1408 deprecated/exponential_pdf.m deprecated/exponential_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1409 deprecated/f_cdf.m deprecated/f_inv.m deprecated/f_pdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1410 deprecated/f_rnd.m deprecated/gamma_cdf.m deprecated/gamma_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1411 deprecated/gamma_pdf.m deprecated/gamma_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1412 deprecated/geometric_cdf.m deprecated/geometric_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1413 deprecated/geometric_pdf.m deprecated/geometric_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1414 deprecated/hypergeometric_cdf.m deprecated/hypergeometric_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1415 deprecated/hypergeometric_pdf.m deprecated/hypergeometric_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1416 deprecated/intersection.m deprecated/is_bool.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1417 deprecated/is_complex.m deprecated/is_list.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1418 deprecated/is_matrix.m deprecated/is_scalar.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1419 deprecated/is_square.m deprecated/is_stream.m deprecated/isstr.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1420 deprecated/is_struct.m deprecated/is_symmetric.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1421 deprecated/is_vector.m deprecated/lognormal_cdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1422 deprecated/lognormal_inv.m deprecated/lognormal_pdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1423 deprecated/lognormal_rnd.m deprecated/meshdom.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1424 deprecated/normal_cdf.m deprecated/normal_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1425 deprecated/normal_pdf.m deprecated/normal_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1426 deprecated/pascal_cdf.m deprecated/pascal_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1427 deprecated/pascal_pdf.m deprecated/pascal_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1428 deprecated/poisson_cdf.m deprecated/poisson_inv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1429 deprecated/poisson_pdf.m deprecated/poisson_rnd.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1430 deprecated/polyinteg.m deprecated/setstr.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1431 deprecated/struct_contains.m deprecated/struct_elements.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1432 deprecated/t_cdf.m deprecated/t_inv.m deprecated/t_pdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1433 deprecated/t_rnd.m deprecated/uniform_cdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1434 deprecated/uniform_inv.m deprecated/uniform_pdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1435 deprecated/uniform_rnd.m deprecated/weibcdf.m deprecated/weibinv.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1436 deprecated/weibpdf.m deprecated/weibrnd.m deprecated/weibull_cdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1437 deprecated/weibull_inv.m deprecated/weibull_pdf.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1438 deprecated/weibull_rnd.m deprecated/wiener_rnd.m: Add warning that |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1439 function will be removed in a future version. |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1440 |
7693
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1441 2008-04-03 John W. Eaton <jwe@octave.org> |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1442 |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1443 * deprecated/beta_cdf.m, deprecated/beta_inv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1444 deprecated/beta_pdf.m, deprecated/beta_rnd.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1445 deprecated/binomial_cdf.m, deprecated/binomial_inv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1446 deprecated/binomial_pdf.m, deprecated/binomial_rnd.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1447 deprecated/chisquare_cdf.m, deprecated/chisquare_inv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1448 deprecated/chisquare_pdf.m, deprecated/chisquare_rnd.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1449 deprecated/clearplot.m, deprecated/clg.m, deprecated/com2str.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1450 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1451 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1452 deprecated/f_cdf.m, deprecated/f_inv.m, deprecated/f_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1453 deprecated/f_rnd.m, deprecated/gamma_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1454 deprecated/gamma_inv.m, deprecated/gamma_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1455 deprecated/gamma_rnd.m, deprecated/geometric_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1456 deprecated/geometric_inv.m, deprecated/geometric_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1457 deprecated/geometric_rnd.m, deprecated/hypergeometric_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1458 deprecated/hypergeometric_inv.m, deprecated/hypergeometric_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1459 deprecated/hypergeometric_rnd.m, deprecated/intersection.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1460 deprecated/is_bool.m, deprecated/is_complex.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1461 deprecated/is_list.m, deprecated/is_matrix.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1462 deprecated/is_scalar.m, deprecated/is_square.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1463 deprecated/is_stream.m, deprecated/is_struct.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1464 deprecated/is_symmetric.m, deprecated/is_vector.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1465 deprecated/isstr.m, deprecated/lchol.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1466 deprecated/lognormal_cdf.m, deprecated/lognormal_inv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1467 deprecated/lognormal_pdf.m, deprecated/lognormal_rnd.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1468 deprecated/meshdom.m, deprecated/normal_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1469 deprecated/normal_inv.m, deprecated/normal_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1470 deprecated/normal_rnd.m, deprecated/pascal_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1471 deprecated/pascal_inv.m, deprecated/pascal_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1472 deprecated/pascal_rnd.m, deprecated/poisson_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1473 deprecated/poisson_inv.m, deprecated/poisson_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1474 deprecated/poisson_rnd.m, deprecated/polyinteg.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1475 deprecated/setstr.m, deprecated/spatan2.m, deprecated/spchol.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1476 deprecated/spchol2inv.m, deprecated/spcholinv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1477 deprecated/spcumprod.m, deprecated/spcumsum.m, deprecated/spdet.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1478 deprecated/spdiag.m, deprecated/spfind.m, deprecated/spinv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1479 deprecated/spkron.m, deprecated/splchol.m, deprecated/splu.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1480 deprecated/spmax.m, deprecated/spmin.m, deprecated/spprod.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1481 deprecated/spqr.m, deprecated/spsum.m, deprecated/spsumsq.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1482 deprecated/struct_contains.m, deprecated/struct_elements.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1483 deprecated/t_cdf.m, deprecated/t_inv.m, deprecated/t_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1484 deprecated/t_rnd.m, deprecated/uniform_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1485 deprecated/uniform_inv.m, deprecated/uniform_pdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1486 deprecated/uniform_rnd.m, deprecated/weibcdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1487 deprecated/weibinv.m, deprecated/weibpdf.m, deprecated/weibrnd.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1488 deprecated/weibull_cdf.m, deprecated/weibull_inv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1489 deprecated/weibull_pdf.m, deprecated/weibull_rnd.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1490 deprecated/wiener_rnd.m: |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1491 Note version when function was deprecated. |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1492 |
7692
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1493 2008-04-03 David Bateman <dbateman@free.fr> |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1494 |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1495 * plot/__go_draw_axes__.m: Conditionally "set pm3d implict" for 2D |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1496 plot or 3D plots with more than one line. |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1497 |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1498 * deprecated/splchol.m deprecated/lchol.m deprecated/spfind.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1499 deprecated/spchol.m deprecated/spmin.m deprecated/spmax.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1500 deprecated/spdet.m deprecated/splu.m deprecated/spqr.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1501 deprecated/spatan2.m deprecated/spchol2inv.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1502 deprecated/spcholinv.m deprecated/spcumprod.m deprecated/spdiag.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1503 deprecated/spinv.m deprecated/spcumsum.m deprecated/spprod.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1504 deprecated/spsum.m deprecated/spsumsq.m: New files |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1505 * deprecated/Makefile.in (SOURCES): Add them here. |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1506 |
7687
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1507 2008-04-03 Ben Abbott <bpabbott@mac.com> |
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1508 |
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1509 * sparse/spaugment.m: Increase test script tolerance. |
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1510 |
7684
5b70d49eff6f
scripts/general/Makefile.in (SOURCES): Add runlength.m
John W. Eaton <jwe@octave.org>
parents:
7682
diff
changeset
|
1511 2008-04-02 John W. Eaton <jwe@octave.org> |
5b70d49eff6f
scripts/general/Makefile.in (SOURCES): Add runlength.m
John W. Eaton <jwe@octave.org>
parents:
7682
diff
changeset
|
1512 |
7685
f90494008de8
scripts/deprecated/Makefile.in (SOURCES): Add spkron.m
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
1513 * deprecated/Makefile.in (SOURCES): Add spkron.m to the list. |
f90494008de8
scripts/deprecated/Makefile.in (SOURCES): Add spkron.m
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
1514 |
7684
5b70d49eff6f
scripts/general/Makefile.in (SOURCES): Add runlength.m
John W. Eaton <jwe@octave.org>
parents:
7682
diff
changeset
|
1515 * general/Makefile.in (SOURCES): Add runlength.m to the list. |
5b70d49eff6f
scripts/general/Makefile.in (SOURCES): Add runlength.m
John W. Eaton <jwe@octave.org>
parents:
7682
diff
changeset
|
1516 |
7682 | 1517 2008-04-02 Bill Denney <bill@denney.ws> |
1518 | |
1519 * optimization/lsqnonneg.m: New function. | |
1520 * optimization/Makefile.in (SOURCES): Add it to the list. | |
1521 | |
7680
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1522 2008-04-02 David Bateman <dbateman@free.fr> |
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1523 |
7681
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7680
diff
changeset
|
1524 * sparse/spaugment.m: New function |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7680
diff
changeset
|
1525 * sparse/Makefile.in (SOURCES): Add it here. |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7680
diff
changeset
|
1526 |
7680
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1527 * plot/__gnuplot_ginput__.m: Use the gnuplot stream itself for |
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1528 communication rather than a chat file if mkfifo is not available. |
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1529 * plot/gnuplot_drawnow.m: Open stream with popen2 to allow two way |
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1530 communication with the gnuplot process. |
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1531 |
7678 | 1532 2008-04-01 Richard Bovey <Richard.Bovey@baesystems.com> |
1533 | |
1534 * general/sortrows.m: Handle negative column arguments. | |
1535 | |
7675
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1536 2008-04-01 Julian Schnidder <j.schnidder@gmx.de> |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1537 |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1538 * miscellaneous/perl.m: New function. |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1539 * miscellaneous/Makefile.in (SOURCES): Add it to the list. |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1540 |
7673 | 1541 2008-03-31 David Bateman <dbateman@free.fr> |
1542 | |
7676
6c0f7bcf5b55
Fix spurious tics for plotyy with gnuplot backend
David Bateman <dbateman@free.fr>
parents:
7675
diff
changeset
|
1543 * plot/__go_draw_axes__.m: Set the tick direction in the main call |
6c0f7bcf5b55
Fix spurious tics for plotyy with gnuplot backend
David Bateman <dbateman@free.fr>
parents:
7675
diff
changeset
|
1544 the set tics rather than separately to avoid issues with multiple |
6c0f7bcf5b55
Fix spurious tics for plotyy with gnuplot backend
David Bateman <dbateman@free.fr>
parents:
7675
diff
changeset
|
1545 ticks in plotyy. |
6c0f7bcf5b55
Fix spurious tics for plotyy with gnuplot backend
David Bateman <dbateman@free.fr>
parents:
7675
diff
changeset
|
1546 |
7674
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1547 * plot/gtext.m: New function to place text on a plot. |
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1548 * plot/waitforbuttonpress.m: New function. |
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1549 * plot/Makefile.in (SOURCES): Add them to the list. |
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1550 * plot/__gnuplot_ginput__.m: Bug fix for nargin==1. Workaround for |
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1551 missing mkfifo under Windows. |
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1552 * plot/ginput.m: Eliminate setting of n. |
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1553 |
7673 | 1554 * plot/ginput.m: New function. |
1555 * plot/__gnuplot_ginput__.m: New function based on a version of | |
1556 ginput.m from Petr Mikulik <mikulik@physics.muni.cz>. | |
1557 * plot/Makefile.in (SOURCES): Add them to the list. | |
1558 | |
7672
2f0920d1edd4
run.m: fix check for file existence
Ben Abbott <bpabbott@mac.com>
parents:
7671
diff
changeset
|
1559 2008-03-31 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
2f0920d1edd4
run.m: fix check for file existence
Ben Abbott <bpabbott@mac.com>
parents:
7671
diff
changeset
|
1560 |
2f0920d1edd4
run.m: fix check for file existence
Ben Abbott <bpabbott@mac.com>
parents:
7671
diff
changeset
|
1561 * miscellaneous/run.m: Fix check for existence of file. |
2f0920d1edd4
run.m: fix check for file existence
Ben Abbott <bpabbott@mac.com>
parents:
7671
diff
changeset
|
1562 |
7671
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1563 2008-03-27 Jaroslav Hajek <highegg@gmail.com> |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1564 |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1565 * general/lookup.m: Remove (lookup moved to DLD-FUNCTIONS). |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1566 * general/Makefile.in (SOURCES): Delete lookup.m from the list. |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1567 * general/interp1.m, general/interp2.m, general/interpn.m, |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1568 polynomial/ppval.m: Fix buggy lookup calls. |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1569 * general/interp1.m: New test. |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1570 |
7670
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1571 2008-03-28 Thomas Weber <thomas.weber.mail@gmail.com> |
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1572 |
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1573 * miscellaneous/tempdir.m: Use correct function name in texinfo |
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1574 documentation. |
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1575 |
7669 | 1576 2008-03-28 Jaroslav Hajek <highegg@gmail.com> |
1577 | |
1578 * general/del2.m: Missing semicolon. | |
1579 | |
7668 | 1580 2008-03-28 Julian Schnidder <j.schnidder@gmx.de> |
1581 | |
1582 * miscellaneous/info.m: New function. | |
1583 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
1584 | |
8149 | 1585 2008-03-27 S�ren Hauberg <hauberg@gmail.com> |
7666
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7665
diff
changeset
|
1586 |
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7665
diff
changeset
|
1587 * plot/xlim.m, plot/ylim.m, plot/zlim.m, strings/strtrim.m: |
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7665
diff
changeset
|
1588 Doc fixes. |
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7665
diff
changeset
|
1589 |
7664
0dff8d9bf229
Fix for plot(zeros(1,0),zeros(1,0))
David Bateman <dbateman@free.fr>
parents:
7659
diff
changeset
|
1590 2008-03-27 David Bateman <dbateman@free.fr> |
0dff8d9bf229
Fix for plot(zeros(1,0),zeros(1,0))
David Bateman <dbateman@free.fr>
parents:
7659
diff
changeset
|
1591 |
0dff8d9bf229
Fix for plot(zeros(1,0),zeros(1,0))
David Bateman <dbateman@free.fr>
parents:
7659
diff
changeset
|
1592 * plot/__plt2__.m: Test if args are empty first so that |
0dff8d9bf229
Fix for plot(zeros(1,0),zeros(1,0))
David Bateman <dbateman@free.fr>
parents:
7659
diff
changeset
|
1593 plot(zeros(1,0),zeros(1,0)) works as expected. |
0dff8d9bf229
Fix for plot(zeros(1,0),zeros(1,0))
David Bateman <dbateman@free.fr>
parents:
7659
diff
changeset
|
1594 |
7665
aead4b9d026b
Fix axis handle treatment in plotyy
David Bateman <dbateman@free.fr>
parents:
7664
diff
changeset
|
1595 * plot/plotyy.m: The axis handle is a two element vector and |
aead4b9d026b
Fix axis handle treatment in plotyy
David Bateman <dbateman@free.fr>
parents:
7664
diff
changeset
|
1596 so needs special treatment. Call newplot for the second axis. |
aead4b9d026b
Fix axis handle treatment in plotyy
David Bateman <dbateman@free.fr>
parents:
7664
diff
changeset
|
1597 |
7655 | 1598 2008-03-27 Bill Denney <bill@denney.ws> |
1599 | |
7659
4ab2488ab2b4
datenum: allow vector inputs in any orientation
Bill Denny
parents:
7658
diff
changeset
|
1600 * time/datenum.m: Allow vector inputs in any orientation. |
4ab2488ab2b4
datenum: allow vector inputs in any orientation
Bill Denny
parents:
7658
diff
changeset
|
1601 |
7658
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
1602 * strings/validatestring.m: New function. |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
1603 * strings/Makefile.in (SOURCES): Add it to the list. |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
1604 |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
1605 * general/nargoutchk.m: New function. |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
1606 * general/Makefile.in (SOURCES): Add it to the list. |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
1607 |
7657 | 1608 * general/genvarname.m: New function. |
1609 * general/Makefile.in (SOURCES): Add it to the list. | |
1610 | |
7656 | 1611 * time/addtodate.m: New function. |
7657 | 1612 * time/Makefile.in (SOURCES): Add it to the list. |
7656 | 1613 |
7655 | 1614 * geometry/rectint.m: Vectorize and add more tests. |
1615 | |
7654
48edf48cd4dc
__axis_label__: use name of caller in error message
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
1616 2008-03-27 John W. Eaton <jwe@octave.org> |
48edf48cd4dc
__axis_label__: use name of caller in error message
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
1617 |
48edf48cd4dc
__axis_label__: use name of caller in error message
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
1618 * plot/__axis_label__.m: Use name of caller in error message. |
48edf48cd4dc
__axis_label__: use name of caller in error message
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
1619 |
7653
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
1620 2008-03-27 David Bateman <dbateman@free.fr> |
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
1621 |
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
1622 * linear-algebra/planerot.m: Givens rotation function. |
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
1623 |
7650 | 1624 2008-03-26 John W. Eaton <jwe@octave.org> |
1625 | |
7652
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
1626 * set/ismember.m: Set size of idx output correctly for empty args. |
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
1627 New tests. |
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
1628 |
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
1629 * general/logical.m: Correctly handle empty args. New tests. |
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
1630 |
7650 | 1631 * control/hinf/h2syn.m, general/__splinen__.m, general/gradient.m, |
1632 geometry/inpolygon.m, geometry/trimesh.m, geometry/triplot.m, | |
1633 image/imagesc.m, io/csvread.m, io/csvwrite.m, | |
1634 miscellaneous/edit.m, miscellaneous/tempname.m, plot/fill.m, | |
1635 plot/patch.m, plot/ribbon.m, plot/surface.m, polynomial/mkpp.m, | |
1636 polynomial/pchip.m, polynomial/spline.m, set/unique.m: | |
1637 Texinfo fixes. | |
1638 | |
8040 | 1639 2008-03-26 Jaroslav Hajek <highegg@gmail.com> |
7649
1eac99a280a2
extend dmult to allow scaling arbitrary dimension
Jaroslav Hajek <highegg@gmail.com>
parents:
7648
diff
changeset
|
1640 |
1eac99a280a2
extend dmult to allow scaling arbitrary dimension
Jaroslav Hajek <highegg@gmail.com>
parents:
7648
diff
changeset
|
1641 * linear-algebra/dmult.m: Handle scaling along arbitrary dimension. |
1eac99a280a2
extend dmult to allow scaling arbitrary dimension
Jaroslav Hajek <highegg@gmail.com>
parents:
7648
diff
changeset
|
1642 |
8149 | 1643 2008-03-26 S�ren Hauberg <hauberg@gmail.com> |
7648
e7b999840056
Added tests to scripts/polynomial/convn.m and allow '__convn__' to actually get N-dimensional complex data.
sh@sh-laptop
parents:
7643
diff
changeset
|
1644 |
e7b999840056
Added tests to scripts/polynomial/convn.m and allow '__convn__' to actually get N-dimensional complex data.
sh@sh-laptop
parents:
7643
diff
changeset
|
1645 * polynomial/convn.m: New tests. |
e7b999840056
Added tests to scripts/polynomial/convn.m and allow '__convn__' to actually get N-dimensional complex data.
sh@sh-laptop
parents:
7643
diff
changeset
|
1646 |
8182 | 1647 2008-03-20 Ben Abbott <bpabbott@mac.com> |
7643
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
1648 |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
1649 * statistics/base/statistics.m: Calculate median and quantiles in |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
1650 a manner consistent with method #7 used by GNU R. |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
1651 * statistics/base/__quantile__.m, statistics/base/quantile.m, |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
1652 statistics/base/prctile.m: New functions. |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
1653 * statistics/base/Makefile.in (SOURCES): Add them to the list. |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
1654 |
8149 | 1655 2008-03-25 S�ren Hauberg <hauberg@gmail.com> |
7640 | 1656 |
1657 * polynomial/convn.m: New function. | |
1658 * polynomial/Makefile.in (SOURCES): Add it to the list. | |
1659 | |
7633
ba15376ddfe1
Add the contrast function
David Bateman <dbateman@free.fr>
parents:
7632
diff
changeset
|
1660 2008-03-25 David Bateman <dbateman@free.fr> |
ba15376ddfe1
Add the contrast function
David Bateman <dbateman@free.fr>
parents:
7632
diff
changeset
|
1661 |
ba15376ddfe1
Add the contrast function
David Bateman <dbateman@free.fr>
parents:
7632
diff
changeset
|
1662 * image/contrast.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1663 * image/Makefile.in (SOURCES): Add it to the list. |
7640 | 1664 |
7632
d6e63a15cc75
Allow installation of already extracted packages
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7629
diff
changeset
|
1665 2008-03-24 Thomas Weber <thomas.weber.mail@gmail.com> |
d6e63a15cc75
Allow installation of already extracted packages
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7629
diff
changeset
|
1666 |
d6e63a15cc75
Allow installation of already extracted packages
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7629
diff
changeset
|
1667 * pkg/pkg.m: Allow installation of already extracted packages. |
d6e63a15cc75
Allow installation of already extracted packages
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7629
diff
changeset
|
1668 |
7627 | 1669 2008-03-24 David Bateman <dbateman@free.fr> |
1670 | |
1671 * general/idivide.m: New function. | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1672 * general/Makefile.in (SOURCES): Add it to the list. |
7627 | 1673 |
7628
acca752a3b96
Add the namelengthmax function
David Bateman <dbateman@free.fr>
parents:
7627
diff
changeset
|
1674 * miscellaneous/namelengthmax.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1675 * miscellaneous/Makefile.in (SOURCES): Add it to the list. |
7628
acca752a3b96
Add the namelengthmax function
David Bateman <dbateman@free.fr>
parents:
7627
diff
changeset
|
1676 |
7629
cc31c5002c96
Add the regexptranslate function
David Bateman <dbateman@free.fr>
parents:
7628
diff
changeset
|
1677 * strings/regexptranslate.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1678 * strings/Makefile.in (SOURCES): Add it to the list. |
7629
cc31c5002c96
Add the regexptranslate function
David Bateman <dbateman@free.fr>
parents:
7628
diff
changeset
|
1679 |
7621
4682dda22527
Add the reallog, realsqrt and realpow functions
David Bateman <dbateman@free.fr>
parents:
7618
diff
changeset
|
1680 2008-03-21 David Bateman <dbateman@free.fr> |
4682dda22527
Add the reallog, realsqrt and realpow functions
David Bateman <dbateman@free.fr>
parents:
7618
diff
changeset
|
1681 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1682 * specfun/reallog.m, specfun/realpow.m, specfun/realsqrt.m: |
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1683 New functions. |
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1684 * specfun/Makefile.in (SOURCES): Add them to the list. |
7621
4682dda22527
Add the reallog, realsqrt and realpow functions
David Bateman <dbateman@free.fr>
parents:
7618
diff
changeset
|
1685 |
7614
52f90c7adac6
Avoid infinite loop in circshift for infinite matrices
David Bateman <dbateman@free.fr>
parents:
7612
diff
changeset
|
1686 2008-03-20 David Bateman <dbateman@free.fr> |
52f90c7adac6
Avoid infinite loop in circshift for infinite matrices
David Bateman <dbateman@free.fr>
parents:
7612
diff
changeset
|
1687 |
7618
3209a584e1ac
Further type preservation tests and fix of diag for cell arrays
David Bateman <dbateman@free.fr>
parents:
7617
diff
changeset
|
1688 * general/tril.m, general/triu.m: Fail if input is a structure. |
3209a584e1ac
Further type preservation tests and fix of diag for cell arrays
David Bateman <dbateman@free.fr>
parents:
7617
diff
changeset
|
1689 |
7617 | 1690 * miscellaneous/cast.m: Also allow cast to "char". |
1691 | |
7615
25eacc0c2706
Ensure k is an integer scalar in rotdim
David Bateman <dbateman@free.fr>
parents:
7614
diff
changeset
|
1692 * general/rotdim.m: Ensure k is an integer scale. |
25eacc0c2706
Ensure k is an integer scalar in rotdim
David Bateman <dbateman@free.fr>
parents:
7614
diff
changeset
|
1693 |
7614
52f90c7adac6
Avoid infinite loop in circshift for infinite matrices
David Bateman <dbateman@free.fr>
parents:
7612
diff
changeset
|
1694 * general/circshift.m: If matrix is empty fast return. |
52f90c7adac6
Avoid infinite loop in circshift for infinite matrices
David Bateman <dbateman@free.fr>
parents:
7612
diff
changeset
|
1695 |
7612
c1702f963a5e
error check for subspace.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7611
diff
changeset
|
1696 2008-03-20 Jaroslav Hajek <highegg@localhost.localdomain> |
c1702f963a5e
error check for subspace.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7611
diff
changeset
|
1697 |
7616
fb4fa07bc364
more checks for subspace
Jaroslav Hajek <highegg@gmail.com>
parents:
7615
diff
changeset
|
1698 * linear-algebra/subspace.m: Check number of arguments, number |
fb4fa07bc364
more checks for subspace
Jaroslav Hajek <highegg@gmail.com>
parents:
7615
diff
changeset
|
1699 of dimensions of arguments and matching dimensions. |
7612
c1702f963a5e
error check for subspace.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7611
diff
changeset
|
1700 |
7611
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
1701 2008-03-19 Jaroslav Hajek <highegg@gmail.com> |
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
1702 |
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
1703 * linear-algebra/subspace.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1704 * linear-algebra/subspace.m: New function. |
7611
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
1705 |
7610 | 1706 2008-03-19 Emil Lucretiu <emil@la.mine.nu> |
1707 | |
1708 * signal/sinetone.m: Ensure integral number of samples. | |
1709 | |
7608
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7606
diff
changeset
|
1710 2008-03-19 Michael D. Godfrey <godfrey@isl.stanford.edu> |
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7606
diff
changeset
|
1711 |
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7606
diff
changeset
|
1712 * plot/__go_draw_axes__.m: Additional correction for symbol codes. |
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7606
diff
changeset
|
1713 |
7606
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
1714 2008-03-19 Ben Abbott <bpabbott@mac.com> |
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
1715 |
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
1716 * statistics/base/mode.m: Add NDArray tests. |
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
1717 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1718 2008-03-19 Jaroslav Hajek <highegg@gmail.com> |
7604
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
1719 |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
1720 * statistics/distributions/exppdf.m, |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
1721 statistics/distributions/expcdf.m, |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
1722 statistics/distributions/expinv.m, |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
1723 statistics/distributions/exprnd.m: Doc fix. |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
1724 |
7603
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1725 2008-03-19 David Bateman <dbateman@free.fr> |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1726 |
7606
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
1727 * statistics/base/mode.m: Fix for row vectors. |
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
1728 |
7603
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1729 * plot/__scatter__.m: Modify for change of markersize in |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1730 __go_draw_axes__.m and for compatibility. |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1731 * plot/__go_draw_axes__.m: Don't divide the marker size by 6 |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1732 twice. |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1733 * plot/scatter3.m: Doc fix. |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
1734 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1735 2008-03-18 Ben Abbott <bpabbott@mac.com> |
7601
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7593
diff
changeset
|
1736 |
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7593
diff
changeset
|
1737 * specfun/beta.m: Fix for negative inputs. |
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7593
diff
changeset
|
1738 |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
1739 2008-03-18 Michael D. Godfrey <godfrey@isl.stanford.edu> |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
1740 |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
1741 * plot/__go_draw_axes__.m: Use correct symbol codes. |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
1742 |
7592 | 1743 2008-03-14 Kai Habel <kai.habel@gmx.de> |
1744 | |
1745 * plot/__go_draw_axes__.m: Expicitly set gnuplot user | |
1746 style to default to avoid wrong mesh color in some cases. | |
1747 | |
7585
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
1748 2008-03-12 David Bateman <dbateman@free.fr> |
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
1749 |
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
1750 * geometry/griddata3.m: Use griddatan and not griddata |
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
1751 internally. Return vi and not yi. Add test code. |
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
1752 |
7583
1d7c23e288d7
__go_draw_axes__: use strcmpi for text properties; use get for hidden properties
John W. Eaton <jwe@octave.org>
parents:
7582
diff
changeset
|
1753 2008-03-11 John W. Eaton <jwe@octave.org> |
1d7c23e288d7
__go_draw_axes__: use strcmpi for text properties; use get for hidden properties
John W. Eaton <jwe@octave.org>
parents:
7582
diff
changeset
|
1754 |
1d7c23e288d7
__go_draw_axes__: use strcmpi for text properties; use get for hidden properties
John W. Eaton <jwe@octave.org>
parents:
7582
diff
changeset
|
1755 * plot/__go_draw_axes__.m: Use get to access hidden properties. |
1d7c23e288d7
__go_draw_axes__: use strcmpi for text properties; use get for hidden properties
John W. Eaton <jwe@octave.org>
parents:
7582
diff
changeset
|
1756 Use strcmpi when comparing string properties. |
1d7c23e288d7
__go_draw_axes__: use strcmpi for text properties; use get for hidden properties
John W. Eaton <jwe@octave.org>
parents:
7582
diff
changeset
|
1757 |
7592 | 1758 * io/csread.m, io/csvwrite.m, io/dlmwrite.m: Style fixes. |
1759 | |
7582 | 1760 2008-03-11 Kai Habel <kai.habel@gmx.de> |
1761 | |
1762 * plot/__go_draw_axes__.m: Plot surfaces in front of axes. | |
1763 Allow plotting of uniform colored mesh plots with and | |
1764 w/o hidden line removal. | |
1765 | |
1766 2008-03-11 David Bateman <dbateman@free.fr> | |
7580
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7570
diff
changeset
|
1767 |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7570
diff
changeset
|
1768 * io/dlmwrite.m, io/csvread.m, io/csvwrite.m: Files ported from |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7570
diff
changeset
|
1769 octave-forge. |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7570
diff
changeset
|
1770 * io/Makefile.in (SOURCES): Add them here. |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7570
diff
changeset
|
1771 |
7569 | 1772 2008-03-07 John W. Eaton <jwe@octave.org> |
1773 | |
7570
8bf1bcb0ad8f
set axes layer property to "top"
John W. Eaton <jwe@octave.org>
parents:
7569
diff
changeset
|
1774 * plot/contourf.m: Set axes layer property to "top". |
8bf1bcb0ad8f
set axes layer property to "top"
John W. Eaton <jwe@octave.org>
parents:
7569
diff
changeset
|
1775 |
7569 | 1776 * plot/__go_draw_axes__.m: Handle tickdir property. |
1777 | |
7561
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
1778 2008-03-06 John W. Eaton <jwe@octave.org> |
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
1779 |
7566
b3acdf1c41a5
hist: avoid temps; allow matrix args when number of bins > 30
John W. Eaton <jwe@octave.org>
parents:
7565
diff
changeset
|
1780 * plot/hist.m: Avoid temporaries. |
b3acdf1c41a5
hist: avoid temps; allow matrix args when number of bins > 30
John W. Eaton <jwe@octave.org>
parents:
7565
diff
changeset
|
1781 Allow matrix arguments when number of bins > 30. |
7568 | 1782 From Robert S. Mahurin <rob@utk.edu>. |
7566
b3acdf1c41a5
hist: avoid temps; allow matrix args when number of bins > 30
John W. Eaton <jwe@octave.org>
parents:
7565
diff
changeset
|
1783 |
7565
1e6443ff960f
handle axes linewidth property
John W. Eaton <jwe@octave.org>
parents:
7564
diff
changeset
|
1784 * plot/ChangeLog: Handle axes linewidth property. |
1e6443ff960f
handle axes linewidth property
John W. Eaton <jwe@octave.org>
parents:
7564
diff
changeset
|
1785 |
7564
90536e155fde
adjust markersize by a factor of 1/6
John W. Eaton <jwe@octave.org>
parents:
7561
diff
changeset
|
1786 * plot/__go_draw_axes__.m: Adjust markersize by a factor of 1/6. |
90536e155fde
adjust markersize by a factor of 1/6
John W. Eaton <jwe@octave.org>
parents:
7561
diff
changeset
|
1787 |
7561
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
1788 * general/interpn.m: New test. |
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
1789 |
7558
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1790 2008-03-05 Ben Abbott <bpabbott@mac.com> |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1791 |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1792 * polynomial/roots.m: Catch Infs and/or NaNs. |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1793 |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1794 2008-03-05 Sebastien Loisel <loisel@temple.edu> |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1795 |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1796 * polynomial/roots.m: Apply a scaling factor to the removal of the |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1797 leading zeros. |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1798 |
7555
df583cd2f21e
print.m: fix oops in applying last change
John W. Eaton <jwe@octave.org>
parents:
7551
diff
changeset
|
1799 2008-03-04 John W. Eaton <jwe@octave.org> |
df583cd2f21e
print.m: fix oops in applying last change
John W. Eaton <jwe@octave.org>
parents:
7551
diff
changeset
|
1800 |
df583cd2f21e
print.m: fix oops in applying last change
John W. Eaton <jwe@octave.org>
parents:
7551
diff
changeset
|
1801 * plot/print.m: Fix oops in applying last change. |
df583cd2f21e
print.m: fix oops in applying last change
John W. Eaton <jwe@octave.org>
parents:
7551
diff
changeset
|
1802 |
7551 | 1803 2008-03-04 Bill Denney <bill@denney.ws> |
1804 | |
7557 | 1805 * plot/allchild.m, plot/findall.m: New functions. |
1806 * plot/Makefile.in (SOURCES): Add them to the list. | |
1807 | |
7551 | 1808 * geometry/rectint.m: New function. |
7557 | 1809 * geometry/Makefile.in (SOURCES): Add it to the list. |
7551 | 1810 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1811 2008-03-04 Michael Goffioul <michael.goffioul@gmail.com> |
7548
9cbf1e2011a3
pkg.m: adapt to changes in isspace for cell arrays of strings.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7547
diff
changeset
|
1812 |
9cbf1e2011a3
pkg.m: adapt to changes in isspace for cell arrays of strings.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7547
diff
changeset
|
1813 * pkg/pkg.m (pkg:configure_make): Make it work with recent changes in |
9cbf1e2011a3
pkg.m: adapt to changes in isspace for cell arrays of strings.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7547
diff
changeset
|
1814 isspace handling with cell arrays of strings. |
9cbf1e2011a3
pkg.m: adapt to changes in isspace for cell arrays of strings.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7547
diff
changeset
|
1815 |
7558
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
1816 2008-03-04 Ben Abbott <bpabbott@mac.com> |
7547 | 1817 |
1818 * polynomial/polyfit.m: Modified tests to respect a relative tolerance. | |
1819 | |
7550
bffb1e2ab732
print.m: Figure handle as argument.
Ben Abbott <bpabbott@mac.com>
parents:
7548
diff
changeset
|
1820 * plot/print.m: Accept a figure handle as an optional input. |
bffb1e2ab732
print.m: Figure handle as argument.
Ben Abbott <bpabbott@mac.com>
parents:
7548
diff
changeset
|
1821 |
7543
b84c5cbc0812
print.m: handle gif and jpg devices
John W. Eaton <jwe@octave.org>
parents:
7542
diff
changeset
|
1822 2008-02-29 John W. Eaton <jwe@octave.org> |
b84c5cbc0812
print.m: handle gif and jpg devices
John W. Eaton <jwe@octave.org>
parents:
7542
diff
changeset
|
1823 |
b84c5cbc0812
print.m: handle gif and jpg devices
John W. Eaton <jwe@octave.org>
parents:
7542
diff
changeset
|
1824 * plot/print.m: Handle gif and jpg devices. |
b84c5cbc0812
print.m: handle gif and jpg devices
John W. Eaton <jwe@octave.org>
parents:
7542
diff
changeset
|
1825 |
7542
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1826 2008-02-28 John W. Eaton <jwe@octave.org> |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1827 |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1828 * plot/__go_draw_axes__.m (get_old_gnuplot_color): New subfunction. |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1829 Use it to replace repeated if/elseif blocks. |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1830 |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1831 2008-02-28 Kai Habel <kai.habel@gmx.de> |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1832 |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1833 * plot/__go_draw_axes__.m: If facecolor property of a surface is |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1834 "none", don't use pm3d mode and set linestyle correctly. |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
1835 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1836 2008-02-25 Ben Abbott <bpabbott@mac.com> |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1837 |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1838 * control/system/zpout.m, finance/irr.m, general/int2str.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1839 general/num2str.m, miscellaneous/bug_report.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1840 miscellaneous/copyfile.m, miscellaneous/dir.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1841 miscellaneous/edit.m, miscellaneous/fullfile.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1842 miscellaneous/mkoctfile.m, miscellaneous/movefile.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1843 miscellaneous/tempdir.m, miscellaneous/unpack.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1844 path/__extractpath__.m, pkg/pkg.m, plot/__ezplot__.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1845 plot/__go_draw_axes__.m, plot/legend.m, plot/print.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1846 signal/spectral_adf.m, signal/spectral_xdf.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1847 statistics/tests/z_test.m, statistics/tests/z_test_2.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1848 strings/Makefile.in, strings/strcat.m, strings/strvcat.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1849 testfun/assert.m, testfun/demo.m, testfun/speed.m, |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1850 testfun/test.m: Use cstrcat instead of strcat. |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1851 |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1852 * strings/strcat.m: New compatible version. |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1853 |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1854 * strings/cstrcat.m: Rename from strings/strcat.m. |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
1855 |
7530
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7525
diff
changeset
|
1856 2008-02-25 John W. Eaton <jwe@octave.org> |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7525
diff
changeset
|
1857 |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7525
diff
changeset
|
1858 * strings/isstrprop.m: New file. |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7525
diff
changeset
|
1859 |
7525 | 1860 2008-02-25 Ryan Hinton <rwh4s@virginia.edu> |
1861 | |
1862 * miscellaneous/unpack.m: Use "-f -" args for tar. | |
1863 | |
7522
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
1864 2008-02-24 John W. Eaton <jwe@octave.org> |
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
1865 |
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
1866 * specfun/log2.m: Ensure returned value of F strictly less than 1. |
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
1867 From Dave Hawthorne <davehawthorne@ieee.org>. |
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
1868 |
7518 | 1869 2008-02-22 Ben Abbott <bpabbott@mac.com> |
1870 | |
1871 * specfun/legendre.m: Doc fix. | |
1872 | |
7515
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
1873 2008-02-22 David Bateman <dbateman@free.fr> |
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
1874 |
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
1875 * sparse/pcg.m, sparse/spdiags, spstats.m: Remove references to |
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
1876 spdiag. |
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
1877 |
7513
05eb3486f650
__stepimp__: don't call subplot for single plot
John W. Eaton <jwe@octave.org>
parents:
7511
diff
changeset
|
1878 2008-02-22 John W. Eaton <jwe@octave.org> |
05eb3486f650
__stepimp__: don't call subplot for single plot
John W. Eaton <jwe@octave.org>
parents:
7511
diff
changeset
|
1879 |
7514
4f6a73fd8df9
fullfile: improve handling of args ending with filesep
John W. Eaton <jwe@octave.org>
parents:
7513
diff
changeset
|
1880 * miscellaneous/fullfile.m: Improve handling of empty args and |
4f6a73fd8df9
fullfile: improve handling of args ending with filesep
John W. Eaton <jwe@octave.org>
parents:
7513
diff
changeset
|
1881 args ending with filesep. |
4f6a73fd8df9
fullfile: improve handling of args ending with filesep
John W. Eaton <jwe@octave.org>
parents:
7513
diff
changeset
|
1882 |
7513
05eb3486f650
__stepimp__: don't call subplot for single plot
John W. Eaton <jwe@octave.org>
parents:
7511
diff
changeset
|
1883 * control/base/__stepimp__.m: Don't use subplot for just one plot. |
05eb3486f650
__stepimp__: don't call subplot for single plot
John W. Eaton <jwe@octave.org>
parents:
7511
diff
changeset
|
1884 |
7510
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
1885 2008-02-21 John W. Eaton <jwe@octave.org> |
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
1886 |
7511
f028e7aa77a7
imshow.m: use axis ("image")
John W. Eaton <jwe@octave.org>
parents:
7510
diff
changeset
|
1887 * image/imshow.m: Call axis ("image"). |
f028e7aa77a7
imshow.m: use axis ("image")
John W. Eaton <jwe@octave.org>
parents:
7510
diff
changeset
|
1888 From Michael G. Ross <mgross@MIT.EDU>. |
f028e7aa77a7
imshow.m: use axis ("image")
John W. Eaton <jwe@octave.org>
parents:
7510
diff
changeset
|
1889 |
7510
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
1890 * plot/errorbar.m: If nargout > 0, return vector of handles to |
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
1891 line objects. |
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
1892 * plot/__go_draw_axes__.m: Improve handling of line style for |
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
1893 errorbar plots. |
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
1894 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1895 2008-02-20 Marco Caliari <marco.caliari@univr.it> |
7507
bc6573d2fa40
legendre.m: Added normalization and improved stability.
Ben Abbott <bpabbott@mac.com>
parents:
7505
diff
changeset
|
1896 |
bc6573d2fa40
legendre.m: Added normalization and improved stability.
Ben Abbott <bpabbott@mac.com>
parents:
7505
diff
changeset
|
1897 * specfun/legendre.m: Accept normalization options ("sch", "norm"), |
bc6573d2fa40
legendre.m: Added normalization and improved stability.
Ben Abbott <bpabbott@mac.com>
parents:
7505
diff
changeset
|
1898 and improve stability for higher orders. |
bc6573d2fa40
legendre.m: Added normalization and improved stability.
Ben Abbott <bpabbott@mac.com>
parents:
7505
diff
changeset
|
1899 |
7504
ddcf233d765b
detect cellstr args in strcat
John W. Eaton <jwe@octave.org>
parents:
7502
diff
changeset
|
1900 2008-02-20 John W. Eaton <jwe@octave.org> |
ddcf233d765b
detect cellstr args in strcat
John W. Eaton <jwe@octave.org>
parents:
7502
diff
changeset
|
1901 |
ddcf233d765b
detect cellstr args in strcat
John W. Eaton <jwe@octave.org>
parents:
7502
diff
changeset
|
1902 * strings/strcat.m: Detect cellstr args. |
ddcf233d765b
detect cellstr args in strcat
John W. Eaton <jwe@octave.org>
parents:
7502
diff
changeset
|
1903 |
7505
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
1904 2008-02-20 David Bateman <dbateman@free.fr> |
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
1905 |
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
1906 * sparse/colperm.m, sparse/nonzero.m, sparse/spdiags.m, |
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
1907 sparse/spfun.m, sparse/spones.m, sparse/sprand.m, |
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
1908 sparse/sprandn.m, sparse/sprandsym.m, sparse/spy.m: Use generic |
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
1909 version of find rather than spfind. |
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
1910 |
7499
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
1911 2008-02-19 Ben Abbott <bpabbott@mac.com> |
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
1912 |
7502
2ce6b4258e96
Modified for consistency with Matlab. Modified to respect partial paths needed for overloaded functions.
Ben Abbott <bpabbott@mac.com>
parents:
7501
diff
changeset
|
1913 * miscellaneous/edit.m: New option EDITINPLACE. Prefer file list |
2ce6b4258e96
Modified for consistency with Matlab. Modified to respect partial paths needed for overloaded functions.
Ben Abbott <bpabbott@mac.com>
parents:
7501
diff
changeset
|
1914 rather than path list. Return option structure with "get all". |
2ce6b4258e96
Modified for consistency with Matlab. Modified to respect partial paths needed for overloaded functions.
Ben Abbott <bpabbott@mac.com>
parents:
7501
diff
changeset
|
1915 |
7501 | 1916 * polynomial/polyfit.m: Use QR decomposition. Handle |
1917 normalization option. | |
1918 * polynomial/polyval.m: Normalize dependent variable. Optionally | |
1919 generate 50% prediction intervals. | |
1920 | |
7499
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
1921 * miscellaneous/ver.m: Include package version information in |
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
1922 output. Improve consistency with Matlab. |
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
1923 |
7498 | 1924 2008-02-19 John W. Eaton <jwe@octave.org> |
1925 | |
1926 * pkg/pkg.m: Style fixes. | |
1927 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
1928 2008-02-19 Carlo de Falco <carlo.defalco@gmail.com> |
7497 | 1929 |
1930 * pkg/pkg.m: Handle 'describe' command. | |
1931 (parse_pkg_idx, print_package_description): New subfunctions. | |
1932 | |
7493 | 1933 2008-02-19 Bill Denney <bill@denney.ws> |
1934 | |
1935 * time/datestr.m: Avoid confusion for datenum vectors that are 6 | |
1936 elements wide. | |
1937 | |
7494
bd2bd04e68ca
Treat integer types for mod/rem correctly
David Bateman <dbateman@free.fr>
parents:
7493
diff
changeset
|
1938 2008-02-18 David Bateman <dbateman@free.fr> |
bd2bd04e68ca
Treat integer types for mod/rem correctly
David Bateman <dbateman@free.fr>
parents:
7493
diff
changeset
|
1939 |
bd2bd04e68ca
Treat integer types for mod/rem correctly
David Bateman <dbateman@free.fr>
parents:
7493
diff
changeset
|
1940 * general/rem.m, general/mod.m: Treat integer types correctly. |
bd2bd04e68ca
Treat integer types for mod/rem correctly
David Bateman <dbateman@free.fr>
parents:
7493
diff
changeset
|
1941 |
7485 | 1942 2008-02-15 Timo Lindfors <timo.lindfors@iki.fi> |
1943 | |
1944 * statistics/tests/kruskal_wallis_test.m: Handle ties. | |
1945 * general/runlength.m: New function from Paul Kienzle. | |
1946 | |
7484 | 1947 2008-02-15 Rolf Fabian <r.fabian@jacobs-university.de> |
1948 | |
1949 * linear-algebra/cond.m: New optional second argument to | |
1950 specify 1-norm, inf-norm, or frobenius-norm. | |
1951 | |
7475 | 1952 2008-02-12 Kostas Poulios <poulios.konstantinos@googlemail.com> |
1953 | |
1954 * plot/__quiver__.m: make arrow head be in z-plane of the arrow | |
1955 body. Allow the linespec to specify the arrow color. | |
1956 | |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1957 2008-02-12 David Bateman <dbateman@free.fr> |
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1958 |
7474 | 1959 * miscellaneous/cast.m: Also treat the logical type. |
1960 | |
7472
2d8315dcd8d2
Fix colorbar with contours
David Bateman <dbateman@free.fr>
parents:
7471
diff
changeset
|
1961 * plot/__go_draw_axes__.m: Set pm3d implict to fix colorbars on |
2d8315dcd8d2
Fix colorbar with contours
David Bateman <dbateman@free.fr>
parents:
7471
diff
changeset
|
1962 contour plots. |
2d8315dcd8d2
Fix colorbar with contours
David Bateman <dbateman@free.fr>
parents:
7471
diff
changeset
|
1963 |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1964 * plot/__go_draw_axes__.m: Use the cdatamapping property to set |
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1965 the cbrange. |
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1966 * plot/__img__.m: Set cdatamapping to "direct". |
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1967 * plot/imagesc.m: Set cdatamapping to "scaled". |
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1968 |
7461
da8e4aa06134
limit data read to data chunk in wavread.m
John W. Eaton <jwe@octave.org>
parents:
7436
diff
changeset
|
1969 2008-02-08 Julien Pommier <pommier@pianoteq.com> |
da8e4aa06134
limit data read to data chunk in wavread.m
John W. Eaton <jwe@octave.org>
parents:
7436
diff
changeset
|
1970 |
da8e4aa06134
limit data read to data chunk in wavread.m
John W. Eaton <jwe@octave.org>
parents:
7436
diff
changeset
|
1971 * audio/wavread.m: Limit data read to end of data chunk. |
da8e4aa06134
limit data read to data chunk in wavread.m
John W. Eaton <jwe@octave.org>
parents:
7436
diff
changeset
|
1972 |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1973 2008-02-08 David Bateman <dbateman@free.fr> |
7462
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
1974 |
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
1975 * plot/__contour__.m: Respect the graphic handle options that are |
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
1976 passed. |
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
1977 * plot/__go_draw_axes__.m: Respect the linewidth for patch objects. |
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
1978 |
7436 | 1979 2008-02-01 Dave Goel <deego3@gmail.com> |
1980 | |
1981 * signal/arch_rnd.m: Correctly index E and Y vectors. | |
1982 | |
7434 | 1983 2008-02-01 Bill Denney <bill@denney.ws> |
1984 | |
1985 * time/weekday.m: Allow vector inputs and speed up. | |
1986 * time/eomday.m: Return column vector for column vector inputs. | |
1987 | |
7429 | 1988 2008-01-30 John W. Eaton <jwe@octave.org> |
1989 | |
7434 | 1990 * miscellaneous/edit.m: Use "## Created: DATE" instead of "initial |
1991 revision". | |
1992 | |
7431 | 1993 * plot/Makefile.in (SOURCES): Include __plt2sv__.m and |
1994 __plt2vs__.m in the list. | |
1995 | |
7430 | 1996 * miscellaneous/tempdir.m: Append filesep to name for |
1997 compatibility. Warn if not a directory or directory does not | |
1998 exist. | |
1999 | |
7429 | 2000 * strings/deblank.m: Improve compatibility. |
2001 | |
7428 | 2002 2008-01-29 John W. Eaton <jwe@octave.org> |
2003 | |
2004 * strings/str2double.m: Delete unused variable FLAG_OCTAVE. | |
2005 | |
2006 2008-01-28 Michael Goffioul <michael.goffioul@gmail.com> | |
7425 | 2007 |
2008 * plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: | |
2009 Return the label handle, not the current axis handle. | |
2010 | |
7421 | 2011 2008-01-25 Alexander Barth <barth.alexander@gmail.com> |
2012 | |
2013 * general/interpn.m: Compatibility fix. Don't ndgrid vector | |
2014 abscissa. | |
2015 | |
2016 2008-01-25 David Bateman <dbateman@free.fr> | |
2017 | |
7423 | 2018 * general/__splinen__.m: Treat mixed orientation vectors. |
7421 | 2019 * plot/__scatter__.m: Remove NaN values from data. |
2020 * plot/__patch__.m: Vectorize treatment of trailing NaN values. | |
2021 | |
7418 | 2022 2008-01-25 Thomas Weber <thomas.weber.mail@gmail.com> |
2023 | |
2024 * linear-algebra/trace.m: Test cases for non 2-d args. | |
2025 | |
2026 2008-01-25 James Packer <james.packer@wadh.ox.ac.uk> | |
2027 | |
2028 * geometry/griddata3.m: Call griddata, not gridata. | |
2029 | |
7415 | 2030 2008-01-24 Schloegl Alois <alois.schloegl@tugraz.at> |
2031 | |
2032 * linear-algebra/trace.m: Require 2-d args. Handle vectors properly. | |
2033 | |
7411 | 2034 2008-01-22 Thomas Weber <thomas.weber.mail@gmail.com> |
2035 | |
2036 * linear-algebra/cond.m, linear-algebra/trace.m: | |
2037 Move tests here from test/test_linalg.m. | |
2038 | |
2039 * general/diff.m, general/fliplr.m, general/flipud.m, | |
2040 general/logspace.m, general/rot90.m, general/shift.m, general/tril.m, | |
2041 general/triu.m, linear-algebra/vec.m, linear-algebra/vech.m, | |
2042 special-matrix/hankel.m, special-matrix/hilb.m, | |
2043 special-matrix/invhilb.m, special-matrix/sylvester_matrix.m, | |
2044 special-matrix/toeplitz.m, special-matrix/vander.m: | |
2045 Move tests here from test/test_matrix.m. | |
2046 | |
2047 * general/isscalar.m, general/issquare.m, general/isvector.m: | |
2048 Move tests here from test/test_number.m. | |
2049 | |
2050 * deprecated/polyinteg.m, polynomial/compan.m, polynomial/conv.m, | |
2051 polynomial/deconv.m, polynomial/poly.m, polynomial/polyderiv.m, | |
2052 polynomial/polyfit.m, polynomial/polyreduce.m, polynomial/polyval.m, | |
2053 polynomial/polyvalm.m, polynomial/roots.m: | |
2054 Move tests here from test/test_poly.m. | |
2055 | |
2056 * signal/unwrap.m: | |
2057 Move tests here from test/test_signal.m. | |
2058 | |
2059 * statistics/base/corrcoef.m, statistics/base/cov.m, | |
2060 statistics/base/kurtosis.m, statistics/base/mahalanobis.m, | |
2061 statistics/base/mean.m, statistics/base/median.m, | |
2062 statistics/base/skewness.m, statistics/base/std.m: | |
2063 Move tests here from test/test_stats.m. | |
2064 | |
2065 * general/int2str.m, general/num2str.m, strings/bin2dec.m, | |
2066 strings/blanks.m, strings/deblank.m, strings/dec2bin.m, | |
2067 strings/dec2hex.m, strings/findstr.m, strings/hex2dec.m, | |
2068 strings/index.m, strings/rindex.m, strings/split.m, strings/str2mat.m, | |
2069 strings/str2num.m, strings/strcat.m, strings/strrep.m, | |
2070 strings/substr.m: | |
2071 Move tests here from test/test_string.m. | |
2072 | |
2073 * miscellaneous/computer.m, miscellaneous/ls.m, | |
2074 miscellaneous/version.m, time/asctime.m, time/clock.m, time/ctime.m, | |
2075 time/date.m, time/etime.m, time/is_leap_year.m: | |
2076 Move tests here from test/test_system.m. | |
2077 | |
7410 | 2078 2008-01-22 Schloegl Alois <alois.schloegl@tugraz.at> |
2079 | |
2080 * specfun/erfinv.m: Replace z_old and z_new by a single variable z. | |
2081 Simplify initial checks on argument values. | |
2082 | |
7408 | 2083 2008-01-22 Michael Goffioul <michael.goffioul@gmail.com> |
2084 | |
2085 * plot/gnuplot_drawnow.m: New function corresponding to the | |
2086 implementation of the gnuplot-based graphics backend (derived from | |
2087 drawnow.m). | |
2088 * plot/drawnow.m: Deleted (converted to C++). | |
2089 | |
7401 | 2090 2008-01-15 Rolf Fabian <Rolf.Fabian@gmx.de> |
2091 | |
2092 * linear-algebra/__norm__.m: Only scale if inf norm is finite. | |
2093 New tests. | |
2094 | |
7399 | 2095 2008-01-18 John W. Eaton <jwe@octave.org> |
2096 | |
2097 * optimization/sqp.m: End each function with endfunction. | |
2098 | |
7398 | 2099 2008-01-18 Ben Abbott <bpabbott@mac.com> |
2100 | |
2101 * polynomial/residue.m: For each group of pole multiplicity, set | |
2102 the poles of the group to the value of the group's average. | |
2103 | |
7396 | 2104 2008-01-17 Tetsuro KURITA <tkurita@mac.com> |
2105 | |
2106 * plot/print.m: Handle PDF output. | |
2107 * plot/drawnow.m: Add "PDF" in a list of enhanced_terminals. | |
2108 | |
7392 | 2109 2008-01-17 John W. Eaton <jwe@octave.org> |
2110 | |
7393 | 2111 * path/savepath.m: Print newline before initial comment line. |
2112 Double up single quote characters. | |
2113 * path/__extractpath__.m: Return just the path as a string. | |
2114 Undo single quote character doubling. | |
2115 | |
2116 * path/pathdef.m: Avoid eval. Simplify. | |
2117 | |
7392 | 2118 * path/pathdef.m: Use fullfile instead of concatenating with filesep. |
2119 * path/__extractpath__.m, path/savepath.m: Use unwind_protect to | |
2120 avoid possible file descriptor leak. | |
2121 | |
2122 2008-01-17 Ben Abbott <bpabbott@mac.com> | |
2123 | |
2124 * path/savepath.m: Warn if modified file is not explicitly specified. | |
2125 * startup/main-rcfile: Call atexit ("__finish__"). | |
2126 | |
7388 | 2127 2008-01-16 John W. Eaton <jwe@octave.org> |
2128 | |
7390 | 2129 * plot/__go_draw_axes__.m (__do_enhanced_option__): New subfunction. |
2130 Use it to disable enhanced mode for individual labels and titles. | |
2131 | |
7392 | 2132 * startup/Makefile.in (SOURCES): Add __finish__.m to the list. |
7388 | 2133 (install install-strip, uninstall): Handle function files. |
2134 | |
2135 2008-01-16 Ben Abbott <bpabbott@mac.com> | |
2136 | |
7392 | 2137 * startup/__finish__.m: New file. |
2138 * path/__extractpath__.m, path/matlabroot.m, | |
2139 path/pathdef.m: New files. | |
7388 | 2140 * path/Makefile.in (SOURCES): Add them to the list. |
2141 | |
7385 | 2142 2008-01-15 Thomas Weber <thomas.weber.mail@gmail.com> |
2143 | |
7387 | 2144 * special-matrix/vander.m: Vectorize. New test. |
2145 | |
7385 | 2146 * elfun/acot.m, elfun/acoth.m, elfun/acsc.m, elfun/acsch.m, |
2147 elfun/asec.m, elfun/asech.m, elfun/cot.m, elfun/coth.m, | |
2148 elfun/csc.m,elfun/csch.m, elfun/lcm.m, elfun/sec.m, elfun/sech.m, | |
2149 general/rem.m, miscellaneous/bincoeff.m, miscellaneous/xor.m, | |
2150 specfun/beta.m, specfun/log2.m, specfun/pow2.m: | |
2151 Move tests here from test/test_arith.m. | |
2152 | |
7382 | 2153 2008-01-15 John W. Eaton <jwe@octave.org> |
2154 | |
2155 * linear-algebra/__norm__.m: Use sum(abs(x),2), not sum(abs(x.')). | |
2156 | |
7379 | 2157 2008-01-15 Michael Goffioul <michael.goffioul@gmail.com> |
2158 | |
2159 * plot/drawnow.m, plot/__go_draw_figure__.m, plot/__go_draw_axes__.m: | |
2160 Call __get__ instead of get. | |
2161 | |
2162 2008-01-15 Ben Abbott <bpabbott@mac.com> | |
2163 | |
2164 * linear-algebra/__norm__.m: Avoid divide by zero error for | |
2165 Frobenius norm if matrix is all zeros. Use transpose instead of | |
2166 hermitian operator. | |
2167 | |
7376 | 2168 2008-01-14 Bill Denney <bill@denney.ws> |
2169 | |
2170 * plot/axis.m: Correctly handle "tight" and "image" options. | |
2171 | |
8149 | 2172 2008-01-14 S�ren Hauberg <hauberg@gmail.com> |
7375 | 2173 |
2174 * image/hsv2rgb.m, image/ntsc2rgb.m, image/rgb2hsv.m, | |
2175 image/rgb2ntsc.m: Also accept images as input. | |
2176 | |
2177 * image/gray2ind.m: Handle image type other than double. | |
2178 Improve error checking and documentation. | |
2179 | |
7371 | 2180 2008-01-14 John W. Eaton <jwe@octave.org> |
2181 | |
7372 | 2182 * plot/__go_draw_axes__.m (get_fontname_and_size): Use strcmpi |
2183 instead of calling tolower on first arg. Default font name is | |
2184 Helvetica, not helvetica. Don't downcase user-specified font name. | |
2185 (__maybe_munge_text__): Fix typo. | |
2186 | |
7371 | 2187 * optimization/sqp.m: Fix function definitions in test code. |
2188 | |
7361 | 2189 2008-01-12 John W. Eaton <jwe@octave.org> |
2190 | |
2191 * plot/gnuplot_binary.in: New file. | |
2192 * plot/gnuplot_binary.m: Delete. | |
2193 * plot/Makefile.in (SOURCES): Remove gnuplot_binary.m from the list. | |
2194 (SOURCES_IN, GEN_M): New macros. | |
2195 (DISTFILES): Include $(SOURCES_IN) in the list. | |
2196 (FCN_FILES): Include $(GEN_M) in the list. | |
2197 (all): Depend on $(GEN_M). | |
2198 ($(GEN_M): %.m : $(TOPDIR)/Makeconf): New pattern rule. | |
7362 | 2199 (distclean): Also remove $(GEN_M). |
7361 | 2200 |
2201 2008-01-11 John W. Eaton <jwe@octave.org> | |
2202 | |
2203 * optimization/sqp.m: New test from example in doc string. | |
2204 | |
7360 | 2205 2008-01-10 Ben Abbott <bpabbott@mac.com> |
2206 | |
2207 * polynomial/mpoles.m: Avoid cases where poles could be assigned | |
2208 to more than one multiplicity group. | |
2209 | |
7358 | 2210 2008-01-10 John W. Eaton <jwe@octave.org> |
2211 | |
2212 * plot/gnuplot_binary.m: New file. | |
2213 * plot/Makefile.in (SOURCES): Add it to the list. | |
2214 | |
7355 | 2215 2008-01-09 John W. Eaton <jwe@octave.org> |
2216 | |
2217 * plot/drawnow.m: Fail if filename includes a directory part that | |
2218 does not exist. | |
2219 | |
7352 | 2220 2008-01-07 John W. Eaton <jwe@octave.org> |
2221 | |
2222 * miscellaneous/copyfile.m, miscellaneous/movefile.m: | |
2223 Error if glob call fails to match any files. | |
2224 | |
7346 | 2225 2008-01-04 Thomas Treichl <Thomas.Treichl@gmx.net> |
2226 | |
2227 * strings/strtrim.m: Doc fix. | |
2228 | |
7345 | 2229 2008-01-04 Muthiah Annamalai <muthuspost@gmail.com> |
2230 | |
2231 * general/sub2ind.m, general/ind2sub.m: Doc fix. | |
2232 | |
8149 | 2233 2008-01-04 S�ren Hauberg <hauberg@gmail.com> |
7344 | 2234 |
2235 * set/create_set.m, set/union.m: Accept "rows" argument. | |
2236 | |
7341 | 2237 2008-01-02 John W. Eaton <jwe@octave.org> |
2238 | |
2239 * plot/print.m: Correctly handle pbm terminal. | |
2240 | |
7340 | 2241 2007-12-28 John W. Eaton <jwe@octave.org> |
2242 | |
2243 * miscellaneous/edit.m: Use strcat instead of fullfile to add file | |
2244 extensions. | |
2245 | |
7337 | 2246 2007-12-28 David Bateman <dbateman@free.fr> |
2247 | |
2248 * ezcontourf.m, ezcontour.m, ezmeshc.m, ezmesh.m, ezplot3.m, | |
2249 __ezplot__.m, ezpolar.m, ezsurfc.m, ezsurf.m: New functions. | |
2250 * Makefile.in (SOURCES): Add to the sources. | |
2251 | |
2252 2007-12-28 Kai Habel <kai.habel@gmx.de> | |
2253 | |
2254 * plot/pcolor.m: Swap 1st and 2nd argument in call to meshgrid. | |
2255 Remove unnecessary call of size function. | |
2256 | |
7334 | 2257 2007-12-21 John W. Eaton <jwe@octave.org> |
2258 | |
2259 Version 3.0.0 released. | |
2260 | |
8149 | 2261 2007-12-21 S�ren Hauberg <hauberg@gmail.com> |
7331 | 2262 |
2263 * image/imshow.m: Accept empty value for display_range. | |
2264 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2265 2007-12-20 Michael Goffioul <michael.goffioul@gmail.com> |
7329 | 2266 |
2267 * pkg/pkg.m: Add .lib as architecture-dependent suffix. | |
2268 | |
8149 | 2269 2007-12-19 S�ren Hauberg <hauberg@gmail.com> |
7328 | 2270 |
2271 * image/imshow.m: Store uint8 images as doubles. Handle default | |
2272 display ranges correctly. | |
2273 | |
7327 | 2274 2007-12-19 Alexander Barth <barth.alexander@gmail.com> |
2275 Peter A. Gustafson <petegus@umich.edu> | |
2276 | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
2277 * plot/contourc.m: Allow usage of irregular spaced x, y data. |
7327 | 2278 |
7325 | 2279 2007-12-19 John W. Eaton <jwe@octave.org> |
2280 | |
2281 * miscellaneous/edit.m: New function. | |
2282 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
2283 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2284 2007-12-19 Michael Goffioul <michael.goffioul@gmail.com> |
7325 | 2285 |
2286 * plot/__bar__.m: Handle "basevalue" option. | |
2287 * plot/__bars__.m: New arg, base_value. | |
2288 | |
7321 | 2289 2007-12-17 David Bateman <dbateman@free.fr> |
2290 | |
2291 * plot/rose.m, plot/feather.m, plot/compass.m: New functions | |
2292 * plot/Makefiles (SOURCES): Add them to the sources | |
2293 * plot/polar.m: Set the x and y limits to the maximum polar | |
2294 radius. Set the axes to be square. | |
2295 * plot/__go_draw_axes__.m: Allow {x|y}axislocation to be "zero" | |
2296 and print axis at zero if this is used. | |
2297 | |
2298 * plot/__go_draw_axes__.m: Use "set pm3d explicit" so that | |
2299 contours can overlay pcolor plots. Priveldge no hidden line | |
2300 removal when there are multiple objects in the plot. | |
2301 | |
7320 | 2302 2007-12-17 Peter A. Gustafson <petegus@umich.edu> |
2303 | |
2304 * plot/__go_draw_axes__.m: Fix mirrored tics and borders for | |
2305 set (gca (), "[xy]axislocation", "{right|top}", "box", "off"). | |
2306 | |
7319 | 2307 2007-12-17 Ben Abbott <bpabbott@mac.com> |
2308 | |
2309 * miscellaneous/run.m: Replace script with f when looking for | |
2310 file to run. | |
2311 | |
7316 | 2312 2007-12-14 David Bateman <dbateman@free.fr> |
2313 | |
7317 | 2314 * plot/contour3.m, plot/__contour__.m: Handle linespec. |
2315 * plot/contour.m: Doc fix. | |
2316 * plot/__go_draw_axes__.m (case "patch"): Include "lt" in lt string. | |
2317 Include linetype in withclause. | |
2318 | |
7316 | 2319 * plot/__go_draw_axes__.m (__calc_dimensions__): New function. |
2320 Use it to determine dimensions. Consolidate all 3-d settings. | |
2321 | |
7315 | 2322 2007-12-13 John W. Eaton <jwe@octave.org> |
2323 | |
2324 * image/imshow.m: Turn axis visibility off. | |
2325 Don't scale true color images. | |
2326 * image/image.m: Set axis layer property to "top". | |
2327 | |
7307 | 2328 2007-12-12 John W. Eaton <jwe@octave.org> |
2329 | |
7313 | 2330 * image/loadimage.m: Avoid calling eval. Avoid calling exist. |
2331 | |
2332 * plot/pie.m: Avoid calling "exist". | |
2333 | |
7309 | 2334 * linear-algebra/condest.m: Use nargin instead of size(varargin,2). |
7312 | 2335 Condense argument processing logic. Allow 6 arguments. |
2336 Use issquare. Avoid calling "exist". | |
7309 | 2337 |
7307 | 2338 * plot/__go_draw_axes__.m: Handle the axes layer property. |
2339 | |
7305 | 2340 2007-12-12 David Bateman <dbateman@free.fr> |
2341 | |
2342 * plot/ellipsoid.m: Port from octave-forge, editing for style. | |
2343 * plot/Makefile.in (SOURCES): Add to the sources. | |
2344 | |
7290 | 2345 2007-12-11 John W. Eaton <jwe@octave.org> |
2346 | |
7298 | 2347 * plot/surf.m: Set xgrid, ygrid, and zgrid on here. |
2348 * plot/surface.m: Not here. | |
2349 | |
7297 | 2350 * plot/__go_draw_axes__.m: Always use "set grid front". Send a |
2351 subsequent "unset grid" if there is no grid. | |
2352 | |
7296 | 2353 * plot/__go_draw_axes__.m: Include "front" in "set label" options. |
2354 | |
7293 | 2355 * plot/surface.m: Don't set facecolor property in call to |
2356 __go_surface__. | |
2357 | |
7290 | 2358 * plot/__plt2vs__.m, plot/__plt2sv__.m: New functions. |
2359 * plot/__plt2__.m: Handle scalar-vector and vector-scalar cases. | |
2360 | |
7292 | 2361 2007-12-11 Kai Habel <kai.habel@gmx.de> |
2362 | |
7295 | 2363 * plot/__patch__.m: Fix typo. Improve argument checking, so that a |
2364 color string is not taken as z value. | |
2365 | |
7292 | 2366 * plot/slice.m: Remove unused variable, set xgrid, ygrid, and |
2367 zgrid to "on" and box to "off" for used axes. | |
2368 | |
2369 * plot/__go_draw_axes__.m, plot/plot3.m, plot/ribbon.m, | |
2370 plot/slice.m: Use size_equal(var1,var2,...) when possible. | |
2371 | |
7286 | 2372 2007-12-11 David Bateman <dbateman@free.fr> |
2373 | |
7288 | 2374 * miscelleaneous/fullfile.m: Ignore empty arguments. |
2375 | |
7287 | 2376 * sparse/spstats.m: Drop argument to Fsparse to force mutation. |
2377 * statistics/base/mode.m: Ditto. | |
2378 | |
7286 | 2379 * plot/__plt_get_axis_arg__.m: Ignore integer valued handles as |
2380 object handles are all now non integer. | |
2381 | |
7278 | 2382 2007-12-10 John W. Eaton <jwe@octave.org> |
2383 | |
7282 | 2384 * plot/sombrero.m, plot/peaks.m: Use surf instead of mesh. |
2385 | |
7281 | 2386 * general/issymmetric.m: Use ' instead of .' for compatibility |
2387 with previous versions of Octave. | |
2388 * general/ishermitian.m: Delete. | |
7285 | 2389 * general/Makefile.in (SOURCES): Remove ishermitian.m from the list. |
7281 | 2390 |
7280 | 2391 * plot/fplot.m: In N is not specified, increase initial number of |
2392 points from 3 and 5 to 5 and 8. | |
2393 | |
7279 | 2394 * signal/detrend.m: Move tests here from test/test_signal.m. |
2395 Loosen tolerance on first test from 10*eps to 20*eps. | |
2396 | |
7278 | 2397 * finance/rate.m: Don't request info from fsolve. |
2398 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2399 2007-12-10 Michael Goffioul <michael.goffioul@gmail.com> |
7277 | 2400 |
2401 * plot/__line__.m: Pass initial property/value pairs to __go_line__. | |
2402 * plot/surface.m: Pass initial property/value pairs to __go_surface__. | |
2403 | |
7276 | 2404 2007-12-10 David Bateman <dbateman@free.fr> |
2405 | |
2406 * image/image.m: Rewritten to allow trailing properties to be | |
2407 passed to underlying image object. | |
2408 * image/__img__.m: Pass additional arguments to __go_image__. | |
2409 * plot/__patch__.m: Don't set clim, rely on autoscaling. | |
2410 | |
7274 | 2411 2007-12-10 John W. Eaton <jwe@octave.org> |
2412 | |
2413 * plot/__go_draw_axes__.m: If we have a grid, send "set grid | |
2414 front" to gnuplot. | |
2415 | |
7271 | 2416 2007-12-10 David Bateman <dbateman@free.fr> |
2417 | |
7274 | 2418 * plot/__go_draw_axes__.m: Issue "set view map" for pcolor, and "set |
7271 | 2419 border front" from images. |
7274 | 2420 * plot/__go_draw_figure__.m: Issue "set autoscale fix" for gnuplot. |
2421 * plot/pcolor.m: Set axis "box" property. | |
2422 * plot/title.m, plot/xlabel.m, plot/ylabel.m, plot/xlabel.m: | |
2423 Mark as commands. | |
7271 | 2424 |
7269 | 2425 2007-12-07 David Bateman <dbateman@free.fr> |
2426 | |
2427 * plot/surf.m: Don't set facecolor property. | |
2428 | |
7265 | 2429 2007-12-06 John W. Eaton <jwe@octave.org> |
2430 | |
7269 | 2431 * plot/print.m: Pass mono to drawnow. |
2432 * plot/drawnow.m: New arg, mono. Pass it to __go_draw_figure__. | |
2433 * plot/__go_draw_figure__.m: New arg, mono. Pass it to __go_draw_axes. | |
2434 * plot/__go_draw_axes__.m: New arg, mono. If mono is true, | |
2435 disable color specifications. | |
2436 | |
7265 | 2437 * general/issymmetric.m: Move tests here from test/test_number.m |
2438 | |
2439 2007-12-06 Jason Riedy <ejr@cs.berkeley.edu> | |
2440 | |
2441 * general/issymmetric.m: To keep its argument sparse and the | |
2442 function quick, use the infinity norm rather than the 2-norm. | |
2443 Also measure the symmetric part rather than the Hermitian part. | |
2444 * general/ishermitian.m: New file. Measure the Hermitian part. | |
2445 * general/Makefile.in: Add ishermitian.m to SOURCES. | |
2446 | |
7248 | 2447 2007-12-04 John W. Eaton <jwe@octave.org> |
2448 | |
7257 | 2449 * plot/__go_draw_axes__.m: Omit "font \"NAME,SIZE\"" in gnuplot |
2450 text and label commands if font is "*". | |
2451 | |
7248 | 2452 * linear-algebra/krylov.m: Doc fixes. |
2453 From Marco Caliari <caliari@sci.univr.it>. | |
2454 | |
7250 | 2455 2007-12-04 Kai Habel <kai.habel@gmx.de> |
2456 | |
2457 * plot/shading.m: Use __plt_get_axis_arg__ for optional axes argument. | |
2458 Add "## PKG_ADD: mark_as_command axis" line. | |
2459 | |
7245 | 2460 2007-12-03 John W. Eaton <jwe@octave.org> |
2461 | |
2462 * contour.m, contour3.m, contourc.m, contourf.m, cylinder.m, | |
2463 fplot.m, plot3.m, plotyy.m, quiver3.m, scatter.m, scatter3.m, | |
2464 slice.m, sombrero.m, stairs.m, stem.m, stem3.m: | |
2465 Generate demos from examples. | |
2466 | |
7240 | 2467 2007-12-03 David Bateman <dbateman@free.fr> |
2468 | |
7243 | 2469 * testfun/test.m: Disable "testif" test block to avoid spurious |
2470 skipped test for "make check". Avoid printing variables for | |
2471 skipped tests. | |
2472 | |
7242 | 2473 * testfun/test.m: Add "testif" type to allow for conditional tests. |
2474 | |
7240 | 2475 * plot/plotyy.m: Use activepositionproperty property of axes |
2476 object. Set second axis color to "none". | |
2477 * plot/__go_draw_axes__.m: Respect the activepositionproperty | |
2478 property of the axis objects. | |
2479 | |
7239 | 2480 2007-12-03 Thomas Treichl <Thomas.Treichl@gmx.net> |
2481 | |
2482 * linear-algebra/condest.m: Loosen tolerance in test. | |
2483 | |
7236 | 2484 2007-12-02 John W. Eaton <jwe@octave.org> |
2485 | |
2486 * plot/__go_draw_axes__.m: Remove unnecessary call to | |
2487 get_data_limits. | |
2488 | |
7222 | 2489 2007-11-30 John W. Eaton <jwe@octave.org> |
2490 | |
2491 * plot/__go_draw_axes__.m: Don't compute data or axis limits. | |
2492 (get_data_limits, get_axis_limits): Delete. | |
2493 | |
7228 | 2494 2007-11-30 David Bateman <dbateman@free.fr> |
2495 | |
7235 | 2496 * plot/__scatter__.m: Avoid out of bounds varargin element access. |
2497 | |
7228 | 2498 * plot/__go_draw_axes__.m (do_tics_1): regexprep the cell array of |
2499 tick labels rather than one by one on the labels themselves. | |
2500 * plot/pareto.m: Bug in numerical labels fixed. Bug in search for | |
2501 95% crossing fixed. | |
2502 | |
7217 | 2503 2007-11-29 David Bateman <dbateman@free.fr> |
2504 | |
7220 | 2505 * plot/pareto.m: New file. |
2506 * plot/Makefile.in (SOURCES): Add it to the sources. | |
2507 * plot/__go_draw_axes__.m (do_tics1): Replace "%" with "%%" in tic | |
2508 marks to avoid gnuplot error about formating. More colorspec to | |
2509 after the tics. | |
2510 * plot/plotyy.m: More generic check for appropriate axis color. | |
2511 | |
7217 | 2512 * plot/__stem__.m: New file based on old stem.m expanded to treat |
2513 2- and 3-D. | |
2514 * plot/stem3.m: New function. | |
2515 * plot/Makefile.in (SOURCES): Add them to the sources. | |
2516 * plot/stem.m: Adapt to use __stem__. | |
2517 | |
7216 | 2518 2007-11-29 John W. Eaton <jwe@octave.org> |
2519 | |
2520 * plot/contour.m, plot/contour3.m, plot/fill.m, plot/patch.m, | |
2521 plot/surf.m, plot/surface.m: Don't return handle value unless | |
2522 requested. | |
2523 | |
2524 * plot/patch.m: Omit isnan check on handle returned from | |
2525 __plt_get_axis_arg__. | |
2526 | |
2527 * plot/__plt_get_axis_arg__.m: Don't fail if current figure exists | |
2528 but has no axes. | |
2529 | |
7215 | 2530 2007-11-28 David Bateman <dbateman@free.fr> |
2531 | |
2532 * __plt_get_axis_handle__.m: Also allow hggroup and return axes | |
2533 ancestor. If leading argument is logical set variable nogca to see | |
2534 if gca() should be called if there is no active handle found. | |
2535 * __bar__.m, caxis.m, scatter.m, contourf.m, __axes_limits__.m, | |
2536 fill.m, surf.m, meshz.m, axis.m, pie.m, contour.m, | |
2537 quiver.m, area.m, grid.m, cylinder.m, contour3.m, surface.m, | |
2538 patch.m, scatter3.m, plot.m, sphere.m, quiver3.m, plotyy.m, | |
2539 xlabel.m, ylabel.m, surfnorm.m, zlabel.m: Adapt to use | |
2540 __plt__get_axis_arg__ to find axis handle. | |
2541 * polar.m: Typo. | |
2542 | |
7213 | 2543 2007-11-28 John W. Eaton <jwe@octave.org> |
2544 | |
2545 * plot/__go_draw_axes__.m (get_data_limits): Delete unused arg TX. | |
2546 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2547 2007-11-28 Michael Goffioul <michael.goffioul@gmail.com> |
7211 | 2548 |
2549 * plot/drawnow.m: Fix typo. | |
2550 | |
7206 | 2551 2007-11-27 David Bateman <dbateman@free.fr> |
2552 | |
7207 | 2553 * plot/errorbar.m, plot/loglog.m, plot/loglogerr.m, plot/polar.m, |
2554 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, | |
2555 plot/semilogyerr.m: Treat an axis handle as the first argument. | |
2556 | |
2557 * plot/meshz.m: New function. | |
2558 * plot/Makefile.in (SOURCES): Add it to the list. | |
2559 * plot/surface.m: Allow surface to accept an axis handle as the | |
2560 first argument. | |
2561 * plot/meshc.m: Extract z from the the surface object rather than | |
2562 varargin so that we can rely on code in surface to treat leading | |
2563 axis handles. | |
2564 | |
7206 | 2565 * plot/__go_draw_axes__.m: Add nomirror to "set ytics" and "set |
2566 y2tics" in the case of a plotyy plot. | |
2567 * plot/plotyy.m: ensure the position property is set correct for | |
2568 the second axis, by setting it after the plot itself. In the case | |
2569 of a plot that returns multiple handles, base the color selection | |
2570 on the first. | |
2571 | |
7204 | 2572 2007-11-27 Kai Habel <kai.habel@gmx.de> |
2573 | |
2574 * plot/__go_draw_axes__.m: Set quadrilateral color according to | |
2575 z-value of vertex 'c3'. | |
2576 | |
7203 | 2577 2007-11-27 John W. Eaton <jwe@octave.org> |
2578 | |
2579 * image/image.m: Allow nargin == 0 case to work again. | |
2580 | |
7202 | 2581 2007-11-27 David Bateman <dbateman@free.fr> |
2582 | |
2583 * plot/__go_draw_figure__.m: Force a multiplot mode with a | |
2584 colorbar, to ensure that the colorbar is on the canvas for png and | |
2585 postscipt outputs. | |
2586 | |
7189 | 2587 2007-11-26 David Bateman <dbateman@free.fr> |
2588 | |
7197 | 2589 * sparse/spstats.m, statistics/base/mode.m: More care with sparse |
2590 return values. | |
2591 | |
7194 | 2592 * plot/plotyy.m: New function |
2593 * plot/Makefile.in (SOURCES): Add it here. | |
2594 * plot/__go_draw_axes__.m: Force axis margins for plotyy. Set text | |
2595 color for {x|y|z}label and {x|y|z}tics. Also force the label of | |
2596 {x|y}label to respect the axis position. | |
2597 * plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: Accept an axis | |
2598 handle as the first argument. | |
2599 | |
7192 | 2600 * pkg/pkg.m (pkg:install): When loading the installed packages |
2601 index into installed_pkgs_lst and not descriptions.. | |
2602 | |
7189 | 2603 * plot/quiver3.m, plot/surfnorm.m, plot/__quiver__.m: New functions. |
2604 * plot/Makefile.in (SOURCES): Add them to the sources. | |
2605 * plot/quiver.m: Modify to use __quiver__.m. | |
2606 | |
2607 * plot/hist.m: Avoid saturation when the x values are in an | |
2608 inetger type. | |
2609 | |
2610 2007-11-26 Jason Riedy <ejr@cs.berkeley.edu> | |
2611 | |
2612 * linear-algebra/condest.m, linear-algebra/onenormest.m: New | |
2613 functions. | |
2614 * linear-algebra/Makefile.in (SOURCES): Add them to the sources. | |
2615 | |
2616 2007-11-26 David Bateman <dbateman@free.fr> | |
2617 | |
2618 * plot/__go_draw_axes__.m: Prevent the cbrange from being of zero | |
2619 extent. | |
2620 | |
2621 * plot/colorbar.m: New function. | |
2622 * plot/Makefile.in (SOURCES): Add it to the sources. | |
2623 * plot/__go_draw_axes__.m: Calculate the colorbar position, | |
2624 precalculate the clim, set pm3d except for mesh. | |
2625 * plot/__contour__.m: Don't scale the contours to clim, but rather | |
2626 save the real values so that colorbar corresponds to the contour | |
2627 levels. | |
2628 | |
2629 * plot/stem.m: Set marker color the same as the line color. Draw | |
2630 a single discontinous line object for the stems. | |
2631 | |
2632 * plot/sphere.m: New function ported from JHandles. | |
2633 * plot/Makefile.in (SOURCES): Add it to the sources. | |
2634 | |
2635 * plot/__go_draw_axes__.m: Pass the have_newer_gnuplot arg to | |
2636 __maybe_munge_text__. Use it to reforce fontname for gnuplot 4.0 | |
2637 to get enhanced mode to work correctly for the X11 terminal. | |
2638 | |
2639 * plot/imagesc.m, plot/image.m: Scale colormap to image and not | |
2640 the reverse. Allow an axes handle to be passed and/or returned. | |
2641 * plot/__go_draw_axes__.m: Autoscale colormap for images. | |
2642 | |
2643 * plot/__go_draw_axes__.m: Add depthorder flag to "set pm3d" to | |
2644 sort surface patches by their depth and not the order they are | |
2645 rendered in. | |
2646 | |
2647 * plot/__patch__.m: Set clim correctly. | |
2648 * plot__go_draw_axes__.m: Allow patch objects to have markers, and | |
2649 the marker color is determined by the cmap. | |
2650 * plot/scatter.m: New function to 2D scatter plots. | |
2651 * plot/scatter3.m: New function to 3D scatter plots. | |
2652 * plot/__scatter__.m: Support function for scatter plots | |
2653 * Makefile.in (SOURCES): Ad dnew functions here. | |
2654 | |
2655 * plot/drawnow.m (open_gnuplot_stream, init_gnuplot_stream): | |
2656 Return whether the terminal supports enhanced text or not. | |
2657 (drawnow:enhanced_term): New sub-function to determine if terminal | |
2658 supports enhanced mode. | |
2659 * plot/__go_draw_figure__.m: Accept enhanced flag and pass to | |
2660 __go_draw_axes__. | |
2661 * plot/__go_draw_axes__.m: Accept enhanced flag and munge text if | |
2662 needed to support the enhanced mode. | |
2663 * plot/print.m: Remove "enhanced" option as this is now treated in | |
2664 drawnow.m. | |
2665 | |
2666 | |
2667 * plot/caxis.m: New function to control the color axis limits. | |
2668 * plot/Makefile.in (SOURCES): Include it. | |
2669 * plot/axis.m: Allow the first argument to be an axes handle. | |
2670 * plot/__go_draw_axes__.m: Move the setting of the caxis, also | |
2671 autoscale caxis for patches. If any(isinf(clim)) don't set the | |
2672 caxis limits. | |
2673 | |
2674 * image/gmap40.m: New gnuplot 4.0 specific colormap fucntion. | |
2675 * image/Makefile.in (SOURCES): Include it. | |
2676 * plot/__bar__.h: Allow axis handles to be passed. Set the color | |
2677 of the bars for the colormap. | |
2678 * plot/bar.m, plot/barh.m: Document that axis handles can be | |
2679 passed. | |
2680 * plot/__contour.m: Avoid possible divide by zero error. | |
2681 * plot/contour.m: Missing semicolon. | |
2682 * plot/surface.m: Don't attempt to set additional arguments if | |
2683 there are none. | |
2684 * plot/Makefile.in (SOURCES): Include __bars__.m | |
2685 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2686 2007-11-19 Michael Goffioul <michael.goffioul@gmail.com> |
7189 | 2687 |
2688 * plot/__bar__.m: put bar creation code into separate function | |
2689 to allow easy hook up from other graphic backends | |
2690 | |
2691 * plot/__bars__.m: new function containing bar creation code | |
2692 | |
7186 | 2693 2007-11-26 Alexander Barth <barth.alexander@gmail.com> |
2694 | |
2695 * general/accumarray.m: Correct dimension check. | |
2696 | |
7183 | 2697 2007-11-26 John W. Eaton <jwe@octave.org> |
2698 | |
2699 * polynomial/residue.m: Prepad along second dimension. | |
2700 From Doug Stewart <dastew@sympatico.ca>. | |
2701 | |
7181 | 2702 2007-11-26 Kai Habel <kai.habel@gmx.de> |
2703 | |
7183 | 2704 * plot/cylinder.m, plot/slice.m: New functions. |
2705 * plot/Makefile.in (SOURCES): Add them to the list. | |
7181 | 2706 |
7177 | 2707 2007-11-14 Michael Goffioul <michael.goffioul@gmail.com> |
2708 | |
2709 * plot/patch.m: Handle arg may also be hggroup object. | |
2710 Use ancestor to find parent axes object. | |
2711 | |
7175 | 2712 2007-11-14 David Bateman <dbateman@free.fr> |
2713 | |
2714 * plot/__contour__.m: Treat unclosed contours by adding NaN to | |
2715 flag to patch that it is not closed. Allow z to take string | |
2716 arguments and use it to flag that the contours are placed at the | |
2717 z level of the contour itself. | |
2718 * plot/__go_draw_axes__.m: Treat hidden line removal in patch | |
2719 objects as well. Let hidden removal take precedence in case of a | |
2720 conflict. | |
2721 * plot/surface.m: Allow surface to treat handles being passed or | |
2722 returned. Any additional arguments arr used to set the surface | |
2723 handle. | |
2724 * plot/contour3.m: New function | |
2725 * plot/Makefile.in (SOURCES): Add it to the sources. | |
2726 | |
7173 | 2727 2007-11-14 John W. Eaton <jwe@octave.org> |
2728 | |
2729 * specfun/bessel.m: Update doc string from | |
2730 src/DLD-FUNCTIONS/besselj.cc. | |
2731 | |
7170 | 2732 2007-11-12 David Bateman <dbateman@free.fr> |
2733 | |
2734 * plot/contour.m: Allow handles to be passed and returned. Split | |
2735 the countour function itself into __contour__.m to be shared with | |
2736 surfc and meshc. | |
2737 * plot/__contour__.m: New file | |
2738 * plot/Makefile.in (SOURCES): Add it to the sources. | |
2739 * plot/__go_draw_axes.m: For patch objects don't attempt to patch | |
2740 the face or edge if the facecolor or edge color are marked as | |
2741 "none". Allow the edgecolor to be determined by the cdata in the | |
2742 same manner as the facecolor. Fail if facecolor is not "none" and | |
2743 a 3-D plot is desired, rather than ignoring zdata. Make the | |
2744 storage of 3D/4D data consistent between line, surface and patch | |
2745 objects. | |
2746 * plot/meshc.m: Use new __contour__.m to plot the contours. | |
2747 * plot/surfc.m: Use new __contour__.m to plot the contours. | |
7168 | 2748 |
2749 * plot/__go_draw_axes__.m (get_fontname_and_size): | |
2750 Handle fontweight and fontangle properties. | |
2751 | |
7163 | 2752 2007-11-12 Kai Habel <kai.habel@gmx.de> |
2753 | |
2754 * plot/spinmap.m, plot/ribbon.m: New functions. | |
2755 * plot/Makefile.in (SOURCES): Add them to the list. | |
2756 | |
2757 2007-11-12 John W. Eaton <jwe@octave.org> | |
2758 | |
2759 * plot/__go_draw_axes__.m (get_fontname_and_size): New subfunction. | |
2760 Use it to avoid duplicated code. | |
2761 | |
7161 | 2762 2007-11-12 David Bateman <dbateman@free.fr> |
2763 | |
7162 | 2764 * plot/title.m: Fix return value for nargout > 0. |
2765 | |
2766 * plot/__go_draw_axes.m: Allow the font and fontsize to be | |
2767 specified for the title, xlabel, ylabel and text objects. | |
2768 | |
7161 | 2769 * plot/__go_draw_axes.m: Allow arbitrary colormaps with gnuplot |
2770 4.0 and surface plots. | |
2771 | |
7160 | 2772 2007-11-12 Michael Goffioul <michael.goffioul@gmail.com> |
2773 | |
2774 * plot/__patch__.m: Fix computation of faces when patch is defined | |
2775 with X/Y/Z data. | |
2776 | |
7146 | 2777 2007-11-09 John W. Eaton <jwe@octave.org> |
2778 | |
7152 | 2779 * plot/__go_draw_axes__.m: Correct test for have_data. |
7154 | 2780 Correct logic in setting palette data. |
7152 | 2781 |
7151 | 2782 * audio/wavread.m, control/base/__bodquist__.m, |
2783 control/base/dare.m, control/base/dlqr.m, control/hinf/h2norm.m, | |
2784 control/system/c2d.m, control/system/is_detectable.m, | |
2785 control/system/is_signal_list.m, control/system/is_stabilizable.m, | |
2786 control/system/tfout.m, general/isdefinite.m, | |
2787 linear-algebra/krylov.m, miscellaneous/compare_versions.m, | |
2788 optimization/glpk.m, path/savepath.m, plot/findobj.m, | |
2789 plot/shading.m, polynomial/mpoles.m, polynomial/polyint.m, | |
2790 signal/freqz.m, signal/hurst.m, sparse/spfun.m, sparse/spones.m, | |
2791 sparse/spstats.m, testfun/assert.m, testfun/fail.m, | |
2792 testfun/test.m: Use specific end keywords. | |
2793 | |
7146 | 2794 * plot/surfc.m, plot/meshc.m: Don't change view if hold is on. |
2795 | |
2796 2007-11-09 Kai Habel <kai.habel@gmx.de> | |
2797 | |
2798 * plot/mesh.m, plot/pcolor.m, plot/surf.m, plot/surface.m: | |
2799 Don't change view if hold is on. | |
2800 | |
7142 | 2801 2007-11-09 David Bateman <dbateman@free.fr> |
2802 | |
7149 | 2803 * plot/hidden.m: New function. |
2804 * plot/Makefile.in (SOURCES): Add it here. | |
2805 * plot/meshc.m, plot/mesh.m: Set facecolor to White for hidden | |
2806 line removal. | |
2807 * plot/__go_draw_axes__.m: If facecolor is white flag hidden line | |
2808 removal and if it is "none" don't do hidden line removal. | |
2809 | |
7148 | 2810 * plot/legend.m: Also allow labels for surface and patch types. |
2811 * plot/__bar__.m: Split into separate patch pbjects to allow | |
2812 setting of the legend. | |
2813 * plot/__go_draw_axes__.m: Set titlespec from keylabel for patch | |
2814 objects as well. | |
2815 | |
7146 | 2816 * plot/area.m, plot/__area__.m: New functions |
2817 * plot/Makefile.in (SOURCES): Add them to the list of files. | |
2818 | |
7142 | 2819 * plot/patch.m: Correctly handle case of axis handle as first arg. |
2820 | |
7144 | 2821 2007-11-09 Joseph P. Skudlarek <Jskud@Jskud.com> |
2822 | |
2823 * sparse/spdiags.m: Tweak documentation entries to match other uses. | |
2824 | |
7131 | 2825 2007-11-08 John W. Eaton <jwe@octave.org> |
2826 | |
7133 | 2827 * control/base/dcgain.m, control/base/dre.m, |
2828 control/base/impulse.m, control/base/step.m, | |
2829 control/system/dmr2d.m, control/system/ord2.m, | |
2830 control/system/sys2ss.m, control/system/sysdimensions.m, | |
2831 control/system/sysgetsignals.m, control/system/sysout.m, | |
2832 control/system/tfout.m, control/system/ugain.m, | |
2833 control/system/zpout.m, control/util/strappend.m: | |
2834 Don't fail with usage message if nargout is too large. | |
2835 | |
7131 | 2836 * control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
2837 control/hinf/hinfnorm.m, control/hinf/hinfsyn.m, | |
2838 control/hinf/hinfsyn_chk.m, control/hinf/is_dgkf.m, | |
7134 | 2839 control/hinf/wgt1o.m, control/obsolete/dezero.m, |
2840 control/obsolete/dlqg.m, control/obsolete/minfo.m, | |
2841 control/obsolete/packsys.m, control/obsolete/qzval.m, | |
2842 control/obsolete/rotg.m, control/obsolete/series.m, | |
2843 control/obsolete/swapcols.m, control/obsolete/swaprows.m, | |
2844 control/obsolete/syschnames.m, control/obsolete/unpacksys.m, | |
7136 | 2845 control/system/__syschnamesl__.m, |
2846 control/system/__syscont_disc__.m, | |
2847 control/system/__sysdefioname__.m, control/system/__sysgroupn__.m, | |
2848 control/system/__tf2sysl__.m, control/system/__zp2ssg2__.m, | |
2849 control/system/abcddim.m, control/system/buildssic.m, | |
2850 control/system/c2d.m, control/system/cellidx.m, | |
2851 control/system/d2c.m, control/system/dmr2d.m, | |
2852 control/system/fir2sys.m, control/system/is_abcd.m, | |
2853 control/system/is_controllable.m, control/system/is_detectable.m, | |
2854 control/system/is_digital.m, control/system/is_observable.m, | |
2855 control/system/is_stabilizable.m, control/system/is_stable.m, | |
2856 control/system/jet707.m, control/system/listidx.m, | |
2857 control/system/parallel.m, control/system/ss.m, | |
2858 control/system/ss2sys.m, control/system/ss2zp.m, | |
2859 control/system/starp.m, control/system/sys2ss.m, | |
2860 control/system/sys2tf.m, control/system/sys2zp.m, | |
2861 control/system/sysadd.m, control/system/sysappend.m, | |
2862 control/system/sysconnect.m, control/system/syscont.m, | |
2863 control/system/sysdimensions.m, control/system/sysdisc.m, | |
7135 | 2864 control/system/sysdup.m, control/system/sysgetsignals.m, |
2865 control/system/sysgroup.m, control/system/sysmin.m, | |
7136 | 2866 control/system/sysmult.m, control/system/sysout.m, |
2867 control/system/sysprune.m, control/system/sysreorder.m, | |
7135 | 2868 control/system/sysscale.m, control/system/syssetsignals.m, |
7136 | 2869 control/system/syssub.m, control/system/sysupdate.m, |
2870 control/system/tf.m, control/system/tf2ss.m, | |
2871 control/system/tf2sys.m, control/system/tfout.m, | |
2872 control/system/zp.m, control/system/zp2ss.m, | |
2873 control/system/zp2sys.m, control/system/zp2tf.m, | |
2874 control/system/zpout.m, control/util/__outlist__.m, | |
2875 control/util/__zgpbal__.m, control/util/axis2dlim.m, | |
2876 control/util/prompt.m, control/util/sortcom.m, | |
2877 control/util/zgfmul.m, control/util/zgfslv.m, | |
2878 control/util/zginit.m, control/util/zgreduce.m, | |
2879 control/util/zgrownorm.m, control/util/zgscal.m: Style fixes. | |
7131 | 2880 |
7130 | 2881 2007-11-08 David Bateman <dbateman@free.fr> |
2882 | |
2883 * plot/quiver.m: Fix arrowheads. | |
2884 | |
7128 | 2885 2007-11-07 Ben Abbott <bpabbott@mac.com> |
2886 | |
2887 * set/ismember.m: Call cell_ismember to handle cellstr args. | |
7129 | 2888 Handle "rows" argument. New tests. |
7128 | 2889 (cell_ismember): New function. |
2890 | |
7127 | 2891 2007-11-07 John W. Eaton <jwe@octave.org> |
2892 | |
2893 * control/base/__bodquist__.m, control/base/__freqresp__.m, | |
2894 control/base/__stepimp__.m, control/base/are.m, | |
2895 control/base/ctrb.m, control/base/damp.m, control/base/dare.m, | |
2896 control/base/dcgain.m, control/base/dgram.m, control/base/dlqr.m, | |
2897 control/base/dre.m, control/base/impulse.m, control/base/lqe.m, | |
2898 control/base/lqg.m, control/base/lqr.m, control/base/lsim.m, | |
2899 control/base/ltifr.m, control/base/nichols.m, | |
2900 control/base/nyquist.m, control/base/obsv.m, control/base/place.m, | |
2901 control/base/rlocus.m, control/base/step.m, control/base/tzero.m: | |
2902 Style fixes. | |
2903 | |
7125 | 2904 2007-11-07 Muthiah Annamalai <muthuspost@gmail.com> |
2905 | |
2906 * control/base/bode_bounds.m, control/base/dgram.m, | |
2907 control/base/dlyap.m, control/base/freqchkw.m, | |
2908 control/base/gram.m, control/base/place.m, | |
2909 control/hinf/hinf_ctr.m, control/hinf/hinfsyn_chk.m, | |
2910 control/hinf/hinfsyn_ric.m, control/system/is_sample.m, | |
2911 control/system/is_signal_list.m, control/system/ss2tf.m, | |
2912 control/system/sys2fir.m, control/system/sysgettsam.m, | |
2913 control/system/sysgettype.m, control/system/sysreorder.m, | |
2914 control/system/tf2sys.m, control/system/zp2tf.m, | |
2915 control/util/axis2dlim.m, control/util/swap.m, | |
2916 control/util/zgfmul.m, control/util/zgfslv.m, | |
2917 control/util/zginit.m, control/util/zgreduce.m, | |
2918 control/util/zgrownorm.m, control/util/zgscal.m, | |
2919 control/util/zgsgiv.m, control/util/zgshsr.m, general/isa.m, | |
2920 geometry/inpolygon.m, linear-algebra/housh.m, | |
2921 miscellaneous/compare_versions.m, miscellaneous/inputname.m, | |
2922 miscellaneous/run.m, quaternion/qconj.m, | |
2923 quaternion/qcoordinate_plot.m, quaternion/qderiv.m, | |
2924 quaternion/qderivmat.m, quaternion/qinv.m, quaternion/qmult.m, | |
2925 quaternion/qtrans.m, quaternion/qtransvmat.m, signal/fractdiff.m, | |
2926 signal/freqz_plot.m, signal/periodogram.m, signal/rectangle_lw.m, | |
2927 signal/rectangle_sw.m, signal/sinc.m, signal/triangle_lw.m, | |
2928 signal/triangle_sw.m, signal/yulewalker.m, sparse/colperm.m, | |
2929 sparse/etreeplot.m, sparse/nonzeros.m, sparse/spalloc.m, | |
2930 sparse/spones.m, sparse/spy.m, specfun/isprime.m, | |
2931 statistics/distributions/empirical_cdf.m, | |
2932 statistics/distributions/empirical_inv.m, | |
2933 statistics/distributions/empirical_pdf.m, | |
2934 statistics/models/logistic_regression_derivatives.m, | |
2935 statistics/models/logistic_regression_likelihood.m: Check nargin. | |
2936 | |
7118 | 2937 2007-11-07 David Bateman <dbateman@free.fr> |
2938 | |
7120 | 2939 * general/gradient.m: Correctly convert deltax and deltay scalar |
2940 values are scalars to vectors. | |
2941 | |
7119 | 2942 * plot/__go_draw_axes__.m: Fix surfaces for gnuplot 4.0 and for |
2943 the meshc.m function. | |
2944 * plot/meshc.m: Also use the surface function. | |
2945 | |
7120 | 2946 * plot/meshc.m, plot/quiver.m, plot/surfc.m, : New files. |
7118 | 2947 * plot/Makefile.in (SOURCES): Add them to the list. |
2948 Also add pcolor.m, shading.m, surf.m, and surface.m to the list. | |
2949 | |
7117 | 2950 2007-11-07 Michael Zeising <michael@michaels-website.de> |
2951 | |
2952 * audio/wavwrite.m, audio/wavwrite.m: Correct sample scaling. | |
2953 | |
7115 | 2954 2007-11-07 John W. Eaton <jwe@octave.org> |
2955 | |
2956 * plot/__go_draw_axes__.m: Also set have_data to false if any of | |
2957 the data limits are infinite. | |
2958 (get_data_limits): Don't do anything if xdat or tx are empty. | |
2959 (get_axis_limits): Don't do anything if min_val or max_val are | |
2960 infinite. | |
2961 | |
7112 | 2962 2007-11-06 David Bateman <dbateman@free.fr> |
2963 | |
2964 * plot/hist.m: Pass any additional arguments to bar for | |
2965 treatment. Create a default x value that is always a vector. | |
2966 | |
7111 | 2967 2007-11-06 Thomas Treichl <Thomas.Treichl@gmx.net> |
2968 | |
2969 * pkg/pkg.m.m: Check for environment variables CC, CXX, AR, RANLIB | |
2970 when calling ./configure and add quotes to preserve spaces. | |
7109 | 2971 |
2972 2007-11-06 Kai Habel <kai.habel@gmx.de> | |
2973 | |
2974 * plot/pcolor.m, plot/shading.m, plot/surf.m, plot/surface.m: | |
2975 New files. | |
2976 * plot/mesh.m: Call surface to do the real work. | |
2977 * plot/__go_draw_axes__.m: Use pm3d mode to handle new surface | |
2978 properties. | |
2979 | |
2980 * image/colormap.m: Also return current colormap if nargout and | |
2981 nargin are both 0. | |
2982 | |
7106 | 2983 2007-11-05 Michael Goffioul <michael.goffioul@gmail.com> |
2984 | |
2985 * startup/inputrc: Delete key bindings starting with \340 code. | |
2986 | |
7112 | 2987 2007-11-05 David Bateman <dbateman@free.fr> |
7101 | 2988 |
2989 * linear-algebra/__norm__.m: Scale frobenius norm by infinity norm | |
2990 to avoid issues of over- and underflow. From Rolf Fabian | |
2991 <Rolf.Fabian@gmx.de>. | |
2992 | |
7097 | 2993 2007-11-02 Olli Saarela <Olli.Saarela@kcl.fi> |
2994 | |
2995 * time/asctime.m, general/structfun.m: Fix broken @examples in | |
2996 help texts. | |
2997 | |
7096 | 2998 2007-11-02 Kai Habel <kai.habel@gmx.de> |
2999 | |
3000 * plot/bar.m, plot/barh.m: Doc fix. | |
3001 | |
7094 | 3002 2007-10-31 John W. Eaton <jwe@octave.org> |
3003 | |
3004 * plot/__go_draw_axes__.m: Call undo_string_escapes on obj.keylabel. | |
3005 | |
7086 | 3006 2007-10-31 Michael goffioul <michael.goffioul@gmail.com> |
3007 | |
3008 * plot/subplot.m: Ignore legend objects when parsing existing axes | |
3009 objects and legend objects are implemented with a separate axes | |
3010 object. | |
3011 | |
7078 | 3012 2007-10-30 David Bateman <dbateman@free.fr> |
3013 | |
7081 | 3014 * control/base/DEMOcontrol.m: Doc fixes for small book format. |
3015 | |
7078 | 3016 * plot/__go_draw_axes__.m (do_linestyle_command): |
3017 Use point type 0 for ".". | |
3018 | |
7073 | 3019 2007-10-26 John W. Eaton <jwe@octave.org> |
3020 | |
7074 | 3021 * image/imshow.m: Improve compatibility. |
3022 * image/image.m: Return handle if nargou > 0. | |
3023 | |
7073 | 3024 * pkg/pkg.m: Delete PKG_ADD directive for autoloading packes. |
3025 | |
7069 | 3026 2007-10-25 John W. Eaton <jwe@octave.org> |
3027 | |
3028 * miscellaneous/compare_versions.m: Style fixes. | |
3029 | |
7060 | 3030 2007-10-24 John W. Eaton <jwe@octave.org> |
3031 | |
7061 | 3032 * image/saveimage.m: Use functional form of save instead of eval. |
3033 Use -text instead of -ascii. | |
3034 | |
7060 | 3035 * plot/__go_draw_axes__.m: Handle visible = "off" for axes objects. |
3036 | |
7054 | 3037 2007-10-23 Peter A. Gustafson <petegus@umich.edu> |
3038 | |
3039 * plot/legend.m: Also extract location string from varargin (lost | |
3040 when 2007-10-08 patch was applied). | |
3041 | |
7049 | 3042 2007-10-23 David Bateman <dbateman@free.fr> |
3043 | |
3044 * plot/xlim.m, plot/ylim.m, plot/zlim.m, plot/__axes_limits__.m, | |
3045 miscellaneous/what.m: New functions | |
3046 * plot/Makefile.in, miscellaneous/Makefile.in (SOURCES): Add new | |
3047 functions. | |
3048 | |
7045 | 3049 2007-10-22 David Bateman <dbateman@free.fr> |
3050 | |
3051 * miscellaneous/cputime.m, time/tic.m, time/toc.m: Delete. | |
3052 * miscellaneous/Makefile.in (SOURCES): remove cputim.m | |
3053 * time/Makefile.in (SOURCES): Remov tic.m and toc.m | |
3054 | |
7042 | 3055 2007-10-19 Kai Habel <kai.habel@gmx.de> |
3056 | |
3057 * plot/contourf.m: New function. | |
3058 * plot/Makefile.in (SOURCES): Add it to the list. | |
3059 | |
7040 | 3060 2007-10-19 John W. Eaton <jwe@octave.org> |
3061 | |
3062 * plot/subplot.m: Doc fix. | |
3063 | |
7039 | 3064 2007-10-19 David Bateman <dbateman@free.fr> |
3065 | |
7041 | 3066 * plot/__bar__.m, plot/fill.m: Call newplot as needed. |
7039 | 3067 |
7037 | 3068 2007-10-17 Carlo de Falco <kingcrimson@tiscali.it> |
3069 | |
3070 * plot/print.m: Handle -textspecial and -textnormal flags for fig | |
3071 output. | |
3072 | |
7031 | 3073 2007-10-15 S�ren Hauberg <hauberg@gmail.com> |
3074 | |
3075 * general/rat.m, sparse/pcg.m, sparse/pcr.m, optimization/sqp.m, | |
3076 statistics/models/logistic_regression.m, polynomial/polygcd.m, | |
3077 control/system/ss.m, signal/arch_rnd.m, control/system/ss2sys.m, | |
3078 control/system/syssetsignals.m, control/base/lqg.m, | |
3079 strings/str2double.m, control/system/sysscale.m, | |
3080 control/hinf/hinfdemo.m, general/cplxpair.m: | |
3081 Make help text fit on pages when using smallbook. | |
3082 | |
7028 | 3083 2007-10-15 David Bateman <dbateman@free.fr> |
3084 | |
7032 | 3085 * plot/print.m: Call drawnow before printing to ensure the plot is |
3086 on the screen. | |
3087 | |
7028 | 3088 * testfun/test.m: In error/warning blocks test for an error before |
3089 a warning to avoid unexpected failures. | |
3090 | |
7027 | 3091 2007-10-15 Kim Hansen i<kimhanse@gmail.com> |
3092 | |
3093 * testfun/assert.m: Correct documentation of absolution versus | |
3094 relative error tolerance and add tests. | |
3095 | |
7024 | 3096 2007-10-14 David Bateman <dbateman@free.fr> |
3097 | |
3098 * pkg/pkg.m (pkg:configure_make): Treat case of no files to install in | |
3099 src directory. | |
3100 * plot/Makefile.in (SOURCES): Add fill.m. | |
3101 | |
7020 | 3102 2007-10-13 David Bateman <dbateman@free.fr> |
3103 | |
3104 * plot/__patch__.m: Allow multiple patches to be defined and | |
3105 return a single patch object. Allow Faces/Vertices form of | |
3106 patch. Flag failure so the patch can call print_usage. | |
3107 * plot/patch.m: Update help string for Faces/Vertices | |
3108 call. Respect the fail flag returned by __patch__. Add demo code | |
3109 that tests the functionality of patch. | |
3110 * plot/__go_draw_axes__.m: Treat an array of patches in a single | |
3111 patch object. | |
3112 * plot/fill.m: New function. | |
3113 | |
7016 | 3114 2007-10-12 John W. Eaton <jwe@octave.org> |
3115 | |
3116 * Change copyright notices in all files that are part of Octave to | |
3117 GPLv3 or any later version. | |
3118 | |
7012 | 3119 2007-10-11 John W. Eaton <jwe@octave.org> |
3120 | |
3121 * plot/__go_draw_axes__.m (get_axis_limits): | |
3122 Return lim = [] if logscale and no positive values. | |
3123 (__go_draw_axes__): Skip plotting if computed axis limits are empty. | |
3124 Set initial min and min positive values to Inf, max values to -Inf. | |
3125 (get_data_limits): Correctly handle xminp when no positive values | |
3126 are found. | |
3127 | |
7011 | 3128 2007-10-11 Ben Abbott <bpabbott@mac.com> |
3129 | |
3130 * polynomial/residue.m: New optional input for pole multiplicity. | |
3131 Doc fix. Fix tests. | |
3132 | |
7010 | 3133 2007-10-11 Thomas Treichl <Thomas.Treichl@gmx.net> |
3134 | |
3135 * toplev.cc (Foctave_config_info): Add field "mac". | |
3136 | |
3137 * miscellaneous/ismac.m: New function. | |
3138 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
3139 * miscellaneous/ispc.m, miscellaneous/isunix.m: Doc fix. | |
3140 | |
7009 | 3141 2007-10-11 Arno Onken <asnelt@asnelt.org> |
3142 | |
3143 * statistics/distributions/hygernd.m: Allow size to be specified | |
3144 as a scalar. Handle three argument case. Allow T, M, and N to be | |
3145 scalars or matrices of a common size. | |
3146 | |
7007 | 3147 2007-10-11 Brian Gough <bjg@network-theory.co.uk> |
3148 | |
3149 * control/csrefcard.lt, control/system/is_detectable.m, | |
3150 control/system/sysgroup.m, geometry/voronoin.m, | |
3151 miscellaneous/dir.m, sparse/pcg.m, sparse/treeplot.m, | |
3152 statistics/base/mode.m, statistics/distributions/betarnd.m, | |
3153 statistics/distributions/binornd.m, | |
3154 statistics/distributions/cauchy_rnd.m, | |
3155 statistics/distributions/chi2rnd.m, | |
3156 statistics/distributions/discrete_rnd.m, | |
3157 statistics/distributions/exprnd.m, | |
3158 statistics/distributions/frnd.m, | |
3159 statistics/distributions/gamrnd.m, | |
3160 statistics/distributions/geornd.m, | |
3161 statistics/distributions/laplace_rnd.m, | |
3162 statistics/distributions/logistic_rnd.m, | |
3163 statistics/distributions/lognrnd.m, | |
3164 statistics/distributions/nbinrnd.m, | |
3165 statistics/distributions/normrnd.m, | |
3166 statistics/distributions/poissrnd.m, | |
3167 statistics/distributions/stdnormal_rnd.m, | |
3168 statistics/distributions/trnd.m, | |
3169 statistics/distributions/unifrnd.m, | |
3170 statistics/distributions/wblrnd.m: Spelling fixes. | |
3171 | |
7005 | 3172 2007-10-10 Thomas Treichl <Thomas.Treichl@gmx.net> |
3173 | |
3174 * time/tic.m: New optional output value. | |
3175 | |
3176 * general/int2str.m: Doc fix. | |
3177 | |
7002 | 3178 2007-10-10 Arno Onken <asnelt@asnelt.org> |
3179 | |
3180 * statistics/distributions/hygecdf.m, | |
3181 statistics/distributions/hygeinv.m, | |
3182 statistics/distributions/hygepdf.m, | |
3183 statistics/distributions/hygernd.m: | |
3184 Swap order of T and M args for compatibility. | |
3185 | |
7001 | 3186 2007-10-10 Olli Saarela <Olli.Saarela@kcl.fi> |
3187 | |
3188 * control/hinf/hinfsyn.m, control/hinf/wgt1o.m, | |
3189 control/system/buildssic.m, control/system/c2d.m, | |
3190 control/system/d2c.m, control/system/ord2.m, control/system/ss.m, | |
3191 control/system/ss2sys.m, control/system/ss2tf.m, | |
3192 control/system/syscont.m, control/system/sysdimensions.m, | |
3193 control/system/sysdisc.m, control/system/sysmult.m, | |
3194 control/system/sysrepdemo.m, control/system/tf2ss.m, elfun/lcm.m, | |
3195 finance/fv.m, general/cumtrapz.m, general/gradient.m, | |
3196 general/interp1.m, general/interp2.m, general/interp3.m, | |
3197 general/interpft.m, general/interpn.m, general/polyarea.m, | |
3198 general/rat.m, general/structfun.m, general/trapz.m, | |
3199 geometry/tsearchn.m, image/rgb2hsv.m, linear-algebra/krylov.m, | |
3200 miscellaneous/ans.m, miscellaneous/gzip.m, optimization/glpk.m, | |
3201 optimization/sqp.m, plot/findobj.m, plot/legend.m, plot/peaks.m, | |
3202 plot/plot3.m, plot/stem.m, polynomial/deconv.m, | |
3203 polynomial/pchip.m, polynomial/spline.m, polynomial/unmkpp.m, | |
3204 sparse/pcr.m, sparse/spalloc.m, sparse/spconvert.m, | |
3205 specfun/factor.m, specfun/legendre.m, statistics/base/mean.m, | |
3206 statistics/base/meansq.m, statistics/base/var.m, | |
3207 statistics/tests/chisquare_test_independence.m, | |
3208 statistics/tests/t_test.m, statistics/tests/u_test.m, | |
3209 strings/dec2base.m, strings/mat2str.m, testfun/speed.m, | |
3210 testfun/test.m: Spelling fixes. | |
3211 | |
6998 | 3212 2007-10-10 Ben Abbott <bpabbott@mac.com> |
3213 | |
3214 * polynomial/mpoles.m: Return indx = ordr(indx), not indx(ordr). | |
3215 | |
6997 | 3216 2007-10-10 John W. Eaton <jwe@octave.org> |
3217 | |
3218 * general/num2str.m: Always allow for sign for automatically | |
3219 computed format widths. | |
3220 | |
6988 | 3221 2007-10-09 David Bateman <dbateman@free.fr> |
3222 | |
3223 * plot/patch.m: Accept a handle as the first argument. | |
3224 | |
6987 | 3225 2007-10-09: Kim Hansen <kimhanse@gmail.com> |
3226 | |
7010 | 3227 * general/repmat.m: Handle sparse input. Add tests. |
6987 | 3228 |
6985 | 3229 2007-10-09 John W. Eaton <jwe@octave.org> |
3230 | |
3231 * audio/wavwrite.m: Accept arguments in compatible order. | |
3232 | |
6979 | 3233 2007-10-08 David Bateman <dbateman@free.fr> |
3234 | |
3235 * general/interp2.m: Relax test for values outside the grid to | |
3236 allow monotonically decreasing abscissa as well. | |
3237 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
3238 2007-10-08 Ben Abbott <bpabbott@mac.com> |
6978 | 3239 |
3240 * polynomial/residue.m: Doc fix. Add tests. Restore multiplicity | |
3241 as output parameter. | |
3242 | |
6977 | 3243 2007-10-08 Peter A. Gustafson <petegus@umich.edu> |
3244 | |
3245 * plot/__go_draw_axes__.m, plot/legend.m: | |
3246 Handle compatible position specifiers as strings. | |
3247 | |
6975 | 3248 2007-10-08 John Swensen <jpswensen@comcast.net> |
3249 | |
3250 * general/num2str.m: Eliminate extra whitespace in output. | |
3251 * strings/strtrim.m: New function. | |
3252 * strings/Makefile.in (SOURCES): Add it to the list. | |
3253 | |
6968 | 3254 2007-10-06 John W. Eaton <jwe@octave.org> |
3255 | |
3256 * polynomial/residue.m: New test from test/test_poly.m. | |
3257 | |
6967 | 3258 2007-10-06 S�ren Hauberg <hauberg@gmail.com> |
3259 | |
3260 * image/saveimage.m: Handle saving color images without a colormap. | |
3261 * image/__img_via_file__.m: Add missing semicolon. | |
3262 | |
3263 2007-10-06 Bill Denney <wsloand@gmail.com> | |
3264 | |
7010 | 3265 * general/__splinen__.m, general/isscalar.m, general/rat.m, |
6967 | 3266 strings/dec2base.m: Use numel(x) instead of prod(size(x)). |
3267 | |
6965 | 3268 2007-10-06 Francesco Potorti` <Potorti@isti.cnr.it> |
3269 | |
3270 * plot/print.m: Handle svg output type. Accept new -S option to | |
3271 specify size for PNG and SVG output types. | |
3272 | |
3273 2007-10-05 Ben Abbott <bpabbott@mac.com> | |
6964 | 3274 |
3275 * polynomial/mpoles.m: New function. | |
3276 * polynomial/residue.m: Modified to behave in reciprocal | |
3277 manner. No longer compute 4th output, "e". No longer accept | |
3278 tolerance input. Explicitly set tolerance parameter to 0.001. | |
3279 Respect maximum relative difference in poles when determining | |
3280 their multiplicity. Use mpoles to determine the multiplicity of | |
3281 poles. | |
3282 | |
6963 | 3283 2007-10-05 Peter A. Gustafson <petegus@umich.edu> |
3284 | |
3285 * plot/__go_draw_axes__.m: Add cbrange to the plot stream | |
3286 for surface plots. | |
3287 | |
6962 | 3288 2007-10-05 John W. Eaton <jwe@octave.org> |
3289 | |
3290 * plot/__next_line_color__.m: Get color_rotation from axes | |
3291 colororder property. | |
3292 | |
6953 | 3293 2007-10-03 John W. Eaton <jwe@octave.org> |
3294 | |
6955 | 3295 * miscellaneous/dir.m: Handle symbolic links in compatible way. |
3296 Use S_ISDIR (st.mode) instead of checking st.modestr(1) == "d". | |
3297 | |
6953 | 3298 * linear-algebra/Makefile.in (SOURCES): Rename norm.m to __norm__.m. |
3299 * linear-algebra/__norm__.m: Rename from norm.m. Eliminate | |
3300 special for __vnorm__. | |
3301 | |
6951 | 3302 2007-10-03 Quentin Spencer <qspencer@ieee.org> |
3303 | |
6952 | 3304 * linear-algebra/norm.m: Special case vector 1-norm and 2-norm. |
6951 | 3305 |
6950 | 3306 2007-10-03 David Bateman <dbateman@free.fr> |
3307 | |
3308 * pkg/pkg.m (is_architecture_dependent): New function to identify | |
3309 if a file is architecture dependent based on a list of file | |
3310 extensions. | |
3311 (configure_make): Simplify the search for architecture dependent | |
3312 files based on this function. | |
3313 (load_pakages_and_dependencies): Also look for bin directory in | |
3314 the architecture dependent directory. | |
3315 | |
6947 | 3316 2007-10-03 John W. Eaton <jwe@octave.org> |
3317 | |
3318 * miscellaneous/dir.m: Create empty struct with field names. | |
3319 Include datenum in struct. | |
3320 | |
6943 | 3321 2007-10-02 David Bateman <dbateman@free.fr> |
3322 | |
3323 * miscellaneous/ls.m: If nargout return string array of files | |
3324 returned by ls. | |
3325 | |
6942 | 3326 2007-10-01 John W. Eaton <jwe@octave.org> |
3327 | |
3328 * plot/__go_draw_axes__.m: Use %.15e instead of %.15g when setting | |
3329 range values. | |
3330 | |
6937 | 3331 2007-10-01 David Bateman <dbateman@free.fr> |
3332 | |
7010 | 3333 * linear-algebra/norm.m: Inline the isvector(x) calculation for |
6938 | 3334 speed with small vectors. |
6937 | 3335 * pkg/pkg.m (archprefix): Set using octave_config_info("libexecdir") |
3336 rather than OCTAVE_HOME(). | |
3337 | |
6935 | 3338 2007-09-30 Ben Abbott <bpabbott@mac.com> |
3339 | |
3340 * plot/findobj.m: New function. | |
3341 * plot/Makefile.m (SOURCES): Add it to SOURCES. | |
3342 | |
6925 | 3343 2007-09-26 David Bateman <dbateman@free.fr> |
3344 | |
3345 * pkg/pkg.m: Add second argument to setting for prefix for | |
3346 architecture dependent files. Use throughout. | |
3347 (pkg:issuperuser): New function, use through to check for | |
3348 root user. | |
3349 (pkg:getarchprefix): function to give the archiecture dependent | |
3350 prefix for a package. | |
3351 (pkg:getarchdir): New function giving location of architetcure | |
3352 dependent directory. Use through out. | |
3353 (pkg:install): Treat architecture dependent directory separately | |
3354 as in might not be a sub-directory of the package directory. | |
3355 (pkg:uninstall): ditto. | |
3356 (pkg:create_pkgadddel): Check for global or local install for | |
3357 architecture dependent directory. | |
3358 (pkg:finish_installation): ditto. | |
3359 (pkg:write_INDEX): ditto. | |
3360 (pkg:load_packages_and_dependencies): ditto. | |
3361 (pkg:copy_files): ditto. Add step to copy architecture dependent | |
3362 files to a new location if user is root. | |
3363 (pkg:rm_rf): Check if file or directory exists before removing. | |
3364 (pkg:dirempty): Check if directory exists before checking. | |
3365 | |
3366 * plot/___patch__.m: Allow face colors to be passed as strings | |
3367 | |
3368 * plot/__plt_get_axis_arg__.m: Treat case of empty "varargin" | |
3369 needed for calls to "hold" without an argument. | |
3370 | |
6920 | 3371 2007-09-21 John W. Eaton <jwe@octave.org> |
3372 | |
6921 | 3373 * optimization/sqp.m: Fix typo. |
3374 | |
6920 | 3375 * plot/__go_draw_axes__.m (do_tics_1): Use %g, not %.15g here. |
3376 | |
6919 | 3377 2007-09-21 Luther Tychonievich <lty@cs.byu.edu> |
3378 | |
3379 * control/hinf/h2norm: Compute d*d', not d'*d. | |
3380 | |
6918 | 3381 2007-09-21 Thomas Weber <thomas.weber.mail@gmail.com> |
3382 | |
3383 * statistics/distributions/Makefile.in (SOURCES): Add unidcdf.m, | |
3384 unidpdf.m and unidinv.m | |
3385 | |
6914 | 3386 2007-09-18 John W. Eaton <jwe@octave.org> |
3387 | |
3388 * plot/__go_draw_axes__.m: Use %.15g throughout. | |
3389 (do_tics_1): Set numeric axes formats to "%.15g". | |
3390 | |
6912 | 3391 2007-09-18 David Bateman <dbateman@free.fr> |
3392 | |
3393 * plot/__go_draw_axes__.m (__gnuplot_write_data__): Use %e instead | |
3394 of %g when writing data. | |
3395 | |
6908 | 3396 2007-09-17 John W. Eaton <jwe@octave.org> |
3397 | |
3398 * plot/__go_draw_axes__.m: Omit linestyle clause for errorbar plots. | |
3399 | |
6903 | 3400 2007-09-14 Ulrich Tipp <ulrich.tipp@hsnr.de> |
3401 | |
3402 * miscellaneous/bincoeff.m: Fix calculation of bincoeff (n, k) for | |
3403 noninteger N with N-K < 1. | |
3404 | |
6901 | 3405 2007-08-04 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
3406 | |
3407 * strings/index.m: Correct for strings differing after the third | |
3408 position (bug reported by Maude Martin). | |
3409 | |
6895 | 3410 2007-09-13 John W. Eaton <jwe@octave.org> |
3411 | |
3412 * plot/__default_colormap__.m: Delete. | |
3413 * plot/Makefile (SOURCES): Remove from the list. | |
3414 | |
6898 | 3415 2007-09-13 Christof Zeile <cz-oct07@cvmx.com> |
3416 | |
3417 * pol2cart.m: Make it work with mixed scalar/nonscalar arguments. | |
3418 | |
6885 | 3419 2007-09-10 David Bateman <dbateman@free.fr> |
3420 | |
3421 * plot/__go_draw_axes__.m: Allow gnuplot 4.0 with patches, but | |
3422 limit the selection of colors in the same way as for lines. | |
3423 * plot/__patch__.m: Allow matrix arguments with one patch per | |
3424 column. | |
3425 * plot/__bar__.m: Adapt to use "patch". | |
3426 | |
6870 | 3427 2007-09-06 John W. Eaton <jwe@octave.org> |
3428 | |
3429 * plot/drawnow.m (drawnow): New arg, debug_file. | |
3430 (init_plot_stream): Split from open_plot_stream. | |
3431 * plot/print.m: Accept -debug=FILE argument. | |
3432 | |
6868 | 3433 2007-09-06 David Bateman <dbateman@free.fr> |
3434 | |
7010 | 3435 * general/celldisp.m: New function. |
3436 * general/Makefile.in (SOURCES): Add celldisp.m. | |
3437 * miscellaneous/swapbytes.m: New function. | |
3438 * miscellaneous/gzip.m: New function. | |
3439 * miscellaneous/Makefile.in (SOURCES): Add swapbytes.m and gzip.m. | |
6868 | 3440 |
6863 | 3441 2007-09-05 David Bateman <dbateman@free.fr> |
3442 | |
7010 | 3443 * general/structfun.m: New function. |
3444 * general/Makefile.in (SOURCES): Add it to sources. | |
3445 * miscellaneous/run.m: New function. | |
3446 * miscellaneous/Makefile.in (SOURCES): Add it to sources. | |
3447 * statistics/base/mode.m: New function. | |
3448 * statistics/base//Makefile.in (SOURCES): Add it to sources. | |
6863 | 3449 |
6862 | 3450 2007-09-05 John W. Eaton <jwe@octave.org> |
3451 | |
3452 * miscellaneous/orderfields.m: Use numel instead of length. | |
3453 | |
3454 2007-09-05 Michael goffioul <michael.goffioul@gmail.com> | |
3455 | |
3456 * miscellaneous/orderfields.m: Handle empty structs. | |
3457 | |
6861 | 3458 2007-09-05 John W. Eaton <jwe@octave.org> |
3459 | |
3460 * plot/__go_draw_axes__.m: Consistently index PARAMETRIC with | |
3461 DATA_IDX. | |
3462 | |
3463 2007-09-04 David Bateman <dbateman@free.fr> | |
3464 | |
3465 * general/isdir.m: Return a logical value. | |
3466 | |
6859 | 3467 2007-09-04 David Bateman <dbateman@free.fr> |
3468 | |
3469 * statistics/distributions/chi2pdf.m, | |
3470 statistics/distributions/chi2cdf.m, | |
3471 statistics/distributions/chi2inv.m: Modifiy the call to the gamma | |
3472 distribution functions to account for inverse of scale factor in | |
3473 gamma functions. | |
3474 | |
6857 | 3475 2007-09-01 John W. Eaton <jwe@octave.org> |
3476 | |
3477 * plot/Makefile.in (SOURCES): Add ancestor.m to the list. | |
3478 | |
6853 | 3479 2007-09-01 David Bateman <dbateman@free.fr> |
3480 | |
3481 * polynomial/polyint.m: New function like polyinteg but with | |
3482 explicit integration constant. | |
3483 * polynomial/polyinteg.m: Remove. | |
3484 * polynomial/Makefile.in (SOURCES): Add polyint.m and remove | |
3485 polyinteg.m. | |
3486 * deprecated/polyinteg.m: Move version here. | |
3487 * deprecated/Makefile.in (SOURCES): Add polyinteg.m. | |
3488 | |
6852 | 3489 * geometry/voronoi.m: Add large box around data to get a good |
3490 approximation of the rays to infinity. | |
3491 | |
6851 | 3492 2007-08-31 Michael goffioul <michael.goffioul@gmail.com> |
3493 | |
3494 * plot/axes.m: Allow parent to be specified when creating axes | |
3495 objects. Support non-figure parents. | |
3496 | |
3497 2007-08-31 John W. Eaton <jwe@octave.org> | |
3498 | |
3499 * plot/ancestor.m: New function, adapted from Octave Forge. | |
3500 | |
6850 | 3501 2007-08-31 S�ren Hauberg <hauberg@gmail.com> |
3502 | |
7010 | 3503 * polynomial/polygcd.m: Better layout of example. |
3504 * polynomial/compan.m: Remove unnecessary check. | |
3505 * polynomial/roots.m: Added example to help text. | |
3506 * polynomial/polyderiv.m: Change 'polyder' to 'polyderiv' in help text. | |
3507 * polynomial/poly.m: Added example to help text. | |
6850 | 3508 |
6848 | 3509 2007-08-30 John W. Eaton <jwe@octave.org> |
3510 | |
3511 * optimization/qp.m: Increase maxit to 200. | |
3512 | |
6847 | 3513 2007-08-30 David Bateman <dbateman@free.fr> |
3514 | |
3515 * geometry/inpolygon.m: New file. | |
3516 * geometry/Makefile.in (SOURCES): Add inpolygon.m. | |
3517 | |
6843 | 3518 2007-08-29 Peter A. Gustafson <petegus@umich.edu> |
3519 | |
3520 * plot/__go_draw_axes__.m: Disable linetype in do_linestyle_command. | |
3521 | |
6829 | 3522 2007-08-24 David Bateman <dbateman@free.fr> |
3523 | |
3524 * plot/__go_draw_axes__.m: Treat text color property. | |
3525 | |
6828 | 3526 2007-08-24 John W. Eaton <jwe@octave.org> |
3527 | |
3528 * plot/subplot.m, plot/plot.m, plot/grid.m: | |
3529 Use p = get (h, "prop") instead of obj = get (h); p = obj.prop. | |
3530 | |
3531 * miscellaneous/movefile.m: Separate second and third args and | |
3532 use p1 and p2, not f1 and f2 when constructing arguments for | |
3533 calls to system. From Michael Goffioul <michael.goffioul@gmail.com>. | |
3534 | |
6825 | 3535 2007-08-24 Michael Goffioul <michael.goffioul@gmail.com> |
3536 | |
3537 * set/intersect.m: Make it work with cell arrays of strings. | |
3538 | |
6823 | 3539 2007-08-24 David Bateman <dbateman@free.fr> |
3540 | |
7010 | 3541 * geometry/convhull.m, geometry/delaunay.m, geometry/delaunay3.m, |
6823 | 3542 geometry/griddata.m, geometry/voronoi.m, geometry/voronoin.m: New |
3543 functions ported from octave-forge. | |
7010 | 3544 * geometry/delaunayn.m, geometry/dsearch.m, geometry/dsearchn.m, |
6823 | 3545 geometry/griddata3.m, geometry/griddatan.m, geometry/trimesh.m, |
3546 geometry/triplot.m, geometry/tsearchn.m: | |
3547 New functions. | |
7010 | 3548 * geometry/voronoi.m: Remove duplicate edges from Voronoi diagram. |
3549 * geometry/Makefile.in (SOURCES): Add functions above. | |
3550 * configure.in (AC_CONFIG_FILES): Add new file geometry/Makefile. | |
6823 | 3551 |
6820 | 3552 2007-08-23 John W. Eaton <jwe@octave.org> |
3553 | |
3554 * pkg/pkg.m: Avoid using installed_packages for both function and | |
3555 variable name. | |
3556 | |
3557 2007-08-23 David Bateman <dbateman@free.fr> | |
3558 | |
3559 * plot/plot.m: Allow first arg to be axes handle. | |
3560 | |
6818 | 3561 2007-08-22 David Bateman <dbateman@free.fr> |
3562 | |
3563 * control/base/nichols.m: Correct for misnamed variable, and ensure | |
3564 outputs are returned only if requested. | |
3565 | |
3566 2007-08-22 Donald Parsons <dparsons@brightdsl.net> | |
3567 | |
3568 * control/base/nichols.m: Fix typo. | |
3569 | |
6813 | 3570 2007-08-13 John W. Eaton <jwe@octave.org> |
3571 | |
3572 * plot/meshgrid.m: Use repmat instead of multiplication. | |
3573 | |
6809 | 3574 2007-08-10 Peter A. Gustafson <petegus@umich.edu> |
3575 | |
3576 * plot/__go_draw_axes__.m: Add axes position to the usingclause, | |
3577 use axes position in each appropriate gnuplot set statement. | |
3578 | |
6808 | 3579 2007-08-10 John W. Eaton <jwe@octave.org> |
3580 | |
3581 * image/Makefile.in (DISTFILES): Also include $(IMAGES) in the list. | |
3582 (install install-strip): Use $(IMAGES), not $(IMAGE_FILES_NO_DIR). | |
3583 (uninstall): Use $(IMAGES), not $(IMAGE_FILES_NO_DIR). | |
3584 (IMAGE_FILES, IMAGE_FILES_NO_DIR): Delete obsolete variables. | |
3585 | |
6807 | 3586 2007-08-10 Kai Habel <kai.habel@gmx.de> |
3587 | |
3588 * plot/patch.m, plot/__patch__.m: New files. | |
3589 * plot/Makefile.in (SOURCES): Add them to the list. | |
3590 | |
3591 2007-08-07 John W. Eaton <jwe@octave.org> | |
3592 | |
3593 * path/savepath.m: Use single quotes for argument to PATH command | |
3594 that is inserted in file. | |
3595 | |
6805 | 3596 2007-07-27 John W. Eaton <jwe@octave.org> |
3597 | |
3598 * plot/drawnow.m: Only set default value for term if GNUTERM is | |
3599 not set in the environment. | |
3600 | |
6796 | 3601 2007-07-25 David Bateman <dbateman@free.fr> |
3602 | |
3603 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
3604 control/base/Makefile.in, control/hinf/Makefile.in, | |
3605 control/obsolete/Makefile.in, control/system/Makefile.in, | |
3606 control/util/Makefile.in, deprecated/Makefile.in, | |
3607 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, | |
3608 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, | |
3609 miscellaneous/Makefile.in, optimizaton/Makefile.in, | |
3610 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, | |
3611 polynomial/Makefile.in, quaternion/Makefile.in, | |
3612 set/Makefile.in, signal/Makefile.in, sparse/Makefile.in, | |
3613 specfun/Makefile.in, special-matrix/Makefile.in, | |
3614 startup/Makefile.in, statistics/Makefile.in, | |
3615 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
3616 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
3617 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: | |
3618 Adjust DISTFILES to allow out of tree "make dist" to work. | |
3619 | |
6795 | 3620 2007-07-25 John W. Eaton <jwe@octave.org> |
3621 | |
3622 * plot/__plt2__.m: Return [](0x1) if both X and Y are empty. | |
3623 | |
6793 | 3624 2007-07-24 David Bateman <dbateman@free.fr> |
3625 | |
3626 * image/flag.m: New colormap function. | |
3627 * images/Makefile.in: Include it in SOURCES. | |
3628 | |
3629 * image/autumn.m image/bone.m image/cool.m image/copper.m | |
3630 image/hot.m image/hsv.m image/jet.m image/pink.m image/prism.m | |
3631 image/rainbow.m image/spring.m image/summer.m image/white.m | |
3632 image/winter.m, image/brighten.m: Use isscalar and not is_scalar. | |
3633 * image/gray.m, image/ocean.m: Use the same means of finding the | |
3634 number of colormap elements as the other colormap functions. | |
3635 | |
6790 | 3636 2007-07-24 Kai Habel <kai.habel@gmx.de> |
3637 | |
3638 * plot/__go_draw_axes__.m: Handle patch. | |
3639 | |
6788 | 3640 2007-07-23 David Bateman <dbateman@free.fr> |
3641 | |
3642 * general/rat.m: New function for ration approximation imported | |
3643 from octave-forge. | |
3644 * general/del2.m: New function for discrete laplacian operator. | |
3645 * general/Makefile.in: Include rat.m and del2.m in SOURCES. | |
3646 | |
3647 * image/autumn.m image/bone.m image/cool.m image/copper.m | |
3648 image/hot.m image/hsv.m image/jet.m image/pink.m image/prism.m | |
3649 image/rainbow.m image/spring.m image/summer.m image/white.m | |
3650 image/winter.m, image/brighten.m: Port image functions from | |
3651 octave-forge. | |
3652 * image/Makefile.in: Add ported functions to SOURCES. | |
3653 * image/gray.m, image/ocean.m: Don't set the colormap for | |
3654 compatibility with matlab. | |
3655 | |
3656 * plot/meshc.m, plot/peaks.m: Port plotting function from | |
3657 octave-forge | |
3658 * plot/Makefile.in: Add ported functions to SOURCES. | |
3659 * plot/__go_draw_axes__.m: Set the palette for the surfaces if | |
3660 using gnuplot 4.2 or greater. | |
3661 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
3662 2007-07-23 Claudio Belotti <c.belotti@imperial.ac.uk> |
6785 | 3663 |
3664 * general/cart2sph.m: Fix unbalanced paranthesis. | |
3665 | |
6781 | 3666 2007-07-19 David Bateman <dbateman@free.fr> |
3667 | |
3668 * plot/fplot.m: More compatible version. | |
3669 | |
6780 | 3670 2007-07-18 Michael Goffioul <michael.goffioul@gmail.com> |
3671 | |
3672 * plot/clf.m: Check for valid handle before deleting. | |
3673 | |
3674 * plot/figure.m: Pass "figure" property/value pairs directly to | |
3675 __go_figure__ instead of using regular "set" call. | |
3676 | |
6779 | 3677 2007-07-18 Paul Kienzle <pkienzle@users.sf.net> |
3678 | |
3679 * plot/drawnow.m: Prefer GNUTERM to DISPLAY when choosing terminal | |
3680 type for gnuplot. | |
3681 | |
6778 | 3682 2007-07-18 John W. Eaton <jwe@octave.org> |
3683 | |
3684 * plot/__go_draw_axes__.m: Unconditionally send "unset label" to | |
3685 gnuplot for each set of axes. | |
3686 | |
6777 | 3687 2007-07-18 David Bateman <dbateman@free.fr> |
3688 | |
6778 | 3689 * statistics/distributions/gamcdf.m, statistics/distributions/gaminv.m, |
3690 statistics/distributions/gampdf.m, statistics/distributions/gamrnd.m, | |
3691 statistics/distributions/expcdf.m, statistics/distributions/expinv.m, | |
3692 statistics/distributions/exppdf.m, statistics/distributions/exprnd.m: | |
3693 Use standard scale factor rather than one on the scale factor for | |
3694 compatibility. | |
3695 | |
3696 * deprecated/gamma_cdf.m, deprecated/gamma_inv.m, | |
3697 deprecated/gamma_pdf.m, deprecated/gamma_rnd.m, | |
3698 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, | |
3699 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m: | |
3700 Preserve backward compatibility. | |
6777 | 3701 |
6776 | 3702 2007-07-17 Michael Goffioul <michael.goffioul@gmail.com> |
3703 | |
3704 * pkg/pkg.m (pkg:installed_packages): Use findstr rather than regexp | |
3705 to avoid issues with regexp special characters in the path strings. | |
3706 | |
6770 | 3707 2007-07-06 David Bateman <dbateman@free.fr> |
3708 | |
6778 | 3709 * general/accumarray.m: New function to create an array by |
3710 accumulating the elements. | |
6770 | 3711 |
6768 | 3712 2007-06-29 Marcus W. Reble <reble@wisc.edu> |
3713 | |
3714 * optimization/sqp.m (sqp): New args, lb, ub, maxiter, and tolerance. | |
3715 (fdjac): Set nx outside of if block. | |
3716 (cf_ub_lb, cigrad_ub_lb): New subfunctons. | |
3717 | |
6765 | 3718 2007-06-28 Michael Goffioul <michael.goffioul@gmail.com> |
3719 | |
3720 * plot/subplot.m: Add 'ishandle' check when parsing the existing axes. | |
3721 | |
3722 * plot/axis.m: Also set "visible" property when setting axes to | |
3723 on/off. | |
3724 | |
6762 | 3725 2007-06-27 Michael Goffioul <michael.goffioul@swing.be> |
3726 | |
3727 * image/colormap.m: Only return colormap if nargout > 0. | |
3728 Mark as command. | |
3729 | |
6758 | 3730 2007-06-25 John W. Eaton <jwe@octave.org> |
3731 | |
3732 * plot/drawnow.m, plot/__go_draw_axes__.m: Use strcmpi instead of | |
3733 strcmp for selected property comparisons. | |
3734 | |
6756 | 3735 2007-06-25 S�ren Hauberg <hauberg@gmail.com> |
3736 | |
6778 | 3737 * image/imshow.m: Fix check for colormap arguments. |
6756 | 3738 |
6754 | 3739 2007-06-25 Joel Keay <keay@nhn.ou.edu> |
3740 | |
3741 * plot/drawnow.m: Handle GNUTERM=aqua if DISPLAY is not set. | |
3742 | |
6756 | 3743 2007-06-25 S�ren Hauberg <hauberg@gmail.com> |
6754 | 3744 |
6778 | 3745 * statistics/base/median.m: Update help text to mention 'dim' |
6754 | 3746 argument, and note that the data should be sorted for the |
3747 definition of the median to be correct. | |
3748 | |
6778 | 3749 * statistics/base/std.m: Add missing square to definition of |
6754 | 3750 standard deviation. |
3751 | |
6778 | 3752 * statistics/base/cov.m: Add definition of covariance to the help text. |
3753 | |
3754 * statistics/base/kurtosis.m, statistics/base/skewness.m, | |
6754 | 3755 statistics/base/std.m: |
3756 Note that \bar{x} is the mean value of x in the help text. | |
3757 | |
6778 | 3758 * specfun/nchoosek.m: Add alternative definition of the binomial |
6754 | 3759 coefficient to the help text. |
3760 | |
6778 | 3761 * specfun/perms.m, statistics/base/values.m: Add example in help text. |
3762 | |
3763 * statistics/base/var.m: Put N in @math in help text. | |
3764 | |
3765 * statistics/base/qqplot.m, statistics/base/ppplot.m, | |
6754 | 3766 statistics/tests/kolmogorov_smirnov_test.m: |
3767 Write about possible values of 'dist' in help text. | |
3768 | |
6778 | 3769 * statistics/base/corrcoef.m, statistics/base/cor.m: |
6754 | 3770 Add definition of correlation to the help text. |
3771 | |
6778 | 3772 * statistics/base/logit.m, statistics/base/kendall.m, |
3773 statistics/base/cloglog.m, statistics/tests/hotelling_test_2.m, | |
6754 | 3774 statistics/distributions/wblcdf.m, statistics/distributions/wblpdf.m: |
3775 TeXification of help text. | |
3776 | |
3777 * statistics/tests/hotelling_test.m: Write T^2 in @math in help text. | |
3778 | |
3779 * statistics/tests/var_test.m, statistics/tests/welch_test.m: | |
3780 Add missing @var's to help text. | |
3781 | |
3782 * statistics/models/logistic_regression.m: Fix typos in help text. | |
3783 | |
3784 * statistics/distributions/kolmogorov_smirnov_cdf.m: Fix TeX part | |
3785 of help text. | |
3786 | |
3787 * statistics/distributions/unidinv.m: Add a missing 'discrete' to | |
3788 help text. | |
3789 | |
3790 * statistics/distributions/unidpdf.m, | |
3791 statistics/distributions/discrete_pdf.m: | |
3792 Replace 'pDF' with 'PDF' in help text. | |
3793 | |
6753 | 3794 2007-06-25 John W. Eaton <jwe@octave.org> |
3795 | |
3796 * strings/substr.m: Use offset consistently in code and doc string. | |
3797 From Rafael Laboissiere <rafael@debian.org>. | |
3798 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
3799 2007-06-25 Pete Gustafson <petegus@umich.edu> |
6752 | 3800 |
6778 | 3801 * plot/__go_draw_axes__.m: Handle units for text objects. |
6752 | 3802 |
6751 | 3803 2007-06-25 John W. Eaton <jwe@octave.org> |
3804 | |
3805 * plot/__go_draw_axes__.m: Handle char arrays for tic labels. | |
3806 Recycle tic labels if necessary. From Juhani Saastamoinen | |
3807 <juhani@cs.joensuu.fi>. | |
3808 | |
6748 | 3809 2007-06-20 John W. Eaton <jwe@octave.org> |
3810 | |
6749 | 3811 * strings/index.m: Allow strings to be empty. |
3812 From Hartmut Wziontek <hwz@hwz.bv.TU-Berlin.DE> | |
3813 | |
6748 | 3814 * plot/__go_draw_axes__.m (do_tics_1): Fix typo (xtic -> tics). |
3815 | |
6747 | 3816 2007-06-19 Vittoria Rezzonico <vittoria.rezzonico@epfl.ch> |
3817 | |
3818 * sparse/pcg.m: Allow the preconditioner to be passed as two | |
3819 separate matrices. | |
3820 | |
6746 | 3821 2007-06-19 David Bateman <dbateman@free.fr> |
3822 | |
3823 * plot/axis.m: Prefer to use legend rather than the older Octave | |
3824 only ";;" legend syntax. | |
3825 * polynomial/mkpp.m: ditto. | |
3826 * polynomial/pchip.m: ditto. | |
3827 * signal/freqz_plot.m: ditto. | |
3828 * sparse/gplot.m: ditto. | |
3829 * sparse/treeplot.m: ditto. | |
3830 | |
6745 | 3831 2007-06-19 John W. Eaton <jwe@octave.org> |
3832 | |
3833 * plot/__go_draw_axes__.m (do_tics, do_tics_1): New functions. | |
3834 (__go_draw_axes__): Call do_tics to handle tic marks. | |
3835 | |
6742 | 3836 2007-06-18 S�ren Hauberg <hauberg@gmail.com> |
3837 | |
6778 | 3838 * general/interp1.m, general/interp2.m, general/interp3.m, |
6742 | 3839 general/interpn.m: Replace, NaN with NA. Use isna instead of == |
3840 to check for NA. | |
3841 | |
6741 | 3842 2007-06-18 S�ren Hauberg <hauberg@gmail.com> |
3843 | |
6778 | 3844 * optimization/glpk.m: TeXified the help text. |
3845 * optimization/qp.m: TeXified the help text. | |
3846 * optimization/sqp.m: TeXified the help text. | |
6741 | 3847 |
6740 | 3848 2007-06-16 S�ren Hauberg <hauberg@gmail.com> |
3849 | |
6778 | 3850 * plot/legend.m: Replace 'vargin' with 'varargin'. |
6740 | 3851 |
6738 | 3852 2007-06-15 John W. Eaton <jwe@octave.org> |
3853 | |
3854 * plot/__go_draw_axes__.m: Only attempt label rotation if | |
3855 have_newer_gnuplot is true. | |
3856 | |
6736 | 3857 2007-06-15 Pete Gustafson <petegus@umich.edu> |
3858 | |
6778 | 3859 * plot/__go_draw_axes__.m Handle rotation arg for axis labels. |
3860 * plot/__axis_label__.m Assign ylabel default rotation property | |
6737 | 3861 to 90, all others 0. |
3862 | |
6778 | 3863 * plot/__errplot__.m: Set ifmt from fmt.linestyle. |
3864 * plot/__go_draw_axes__.m: Removed undefined tx from call to | |
6736 | 3865 get_data_limits. |
6778 | 3866 * plot/__plotopt1__.m: Intercept and strip format string when |
6736 | 3867 called by __errplot__. |
3868 | |
6730 | 3869 2007-06-15 John W. Eaton <jwe@octave.org> |
3870 | |
3871 * testfun/test.m: Also return number of expected failures. | |
3872 | |
6724 | 3873 2007-06-14 John W. Eaton <jwe@octave.org> |
3874 | |
6730 | 3875 * set/ismember.m: Mark two tests known to fail with xtest. |
3876 | |
6724 | 3877 * plot/__go_draw_axes__.m: Handle text rotation property. |
3878 | |
6728 | 3879 2007-06-14 Paul Kienzle <pkienzle@users.sf.net> |
3880 | |
3881 * testfun/test.m: Add xtest support for tests known to fail. | |
3882 | |
6727 | 3883 2007-06-14 Sebastian Schubert <sebastian-schubert@gmx.de> |
3884 | |
3885 * plot/print.m: Handle pstex, pslatex, epslatex, and | |
3886 epslatexstandalone terminals. | |
3887 | |
6721 | 3888 2007-06-14 David Bateman <dbateman@free.fr> |
3889 | |
3890 * general/__splinen__.m: Check also for ND vectors. Fix for N > 2, | |
3891 as permutation of results was incorrect. | |
3892 * general/interp1.m: Add demo on second derivative | |
3893 * general/interpn.m: Convert "y" to vectors for __splinen__ | |
6722 | 3894 call. Add 3D demo. Fix typos |
3895 * general/interp3.m: Fix typos. Correct permutation for use of | |
3896 interpn. | |
6721 | 3897 * polynomial/mkpp.m: Correction for matrices of 3 or more dimensions. |
3898 | |
6717 | 3899 2007-06-13 John W. Eaton <jwe@octave.org> |
3900 | |
3901 * miscellaneous/mkoctfile.m: Quote args too. | |
6712 | 3902 |
6706 | 3903 2007-06-13 Michael Goffioul <michael.goffioul@swing.be> |
3904 | |
3905 * miscellaneous/mkoctfile.m: Quote script name for call to system. | |
3906 | |
6704 | 3907 2007-06-12 Michael Goffioul <michael.goffioul@swing.be> |
3908 | |
3909 * plot/__pltopt1__.m: Set linestyle to "none" instead of "". | |
3910 Set have_linestyle to true if two character linestyle is found. | |
3911 | |
6702 | 3912 2007-06-12 David Bateman <dbateman@free.fr> |
3913 | |
6717 | 3914 * general/Makefile.in (SOURCES): Include __spline__.m, interp3.m |
3915 and interpn.m. | |
3916 | |
3917 * pkg/pkg.m (pkg:load_package_dirs): Check for field "loaded" in | |
3918 structure before using it. | |
3919 | |
3920 2007-06-12 David Bateman <dbateman@free.fr> | |
3921 | |
6704 | 3922 * general/interp1.m: Change examples to use new graphics interface. |
6702 | 3923 * general/__splinen__.m: New support function for N-dimensional |
3924 spline interpolation. | |
3925 * general/bicubic.m: Allow definition of extrapolation | |
3926 value. Adapt tests to use new graphics interface | |
3927 * general/interp2.m: Call __splinen__ for 2-D spline | |
3928 interpolation. Make the lookup table code only be called for | |
3929 linear and nearest methods. | |
3930 * general/interpn.m: New function for N-dimensional, linear, nearest | |
3931 and spline interpolation. | |
3932 * general/interp3.m: New function for 3-dimensional, linear, nearest | |
3933 and spline interpolation. | |
6704 | 3934 * polynomial/spline.m: Change examples to use new graphics interface. |
6702 | 3935 |
6701 | 3936 2007-06-12 Steve M. Robbins <steve@sumost.ca> |
3937 | |
3938 * statistics/tests/wilcoxon_test.m: Error if N <= 25. | |
3939 | |
6699 | 3940 2007-06-12 S�ren Hauberg <soren@hauberg.org> |
3941 | |
3942 * plot/fplot.m: If function is inline, vectorize it. | |
3943 | |
6698 | 3944 2007-06-10 David Bateman <dbateman@free.fr> |
3945 | |
3946 * pkg/pkg.m (pkg:installed_packages): truncate start of package | |
3947 directory if need to, so that it fits on a line. | |
3948 | |
6695 | 3949 2007-06-07 David Bateman <dbateman@free.fr> |
3950 | |
3951 * pkg/pkg.m (pkg): For rebuild target, force package order in | |
3952 saved file so that dependent packages are loaded first, and if | |
3953 nargout==0 don't return any arguments. | |
3954 (pkg:install): Only load packages that are marked autoload after | |
3955 install. Various fixes. Save in order. | |
3956 (pkg:uninstall): Save in order | |
3957 (pkg:load_packages): Use load_package_and_dependencies to load | |
3958 packages. | |
3959 (pkg:save_order): New function to sort package list with dependent | |
3960 packages first. | |
3961 (pkg:load_packages_and_dependencies): New function to load both a | |
3962 list of packages and their dependencies. | |
3963 (pkg:load_package_dirs): New function that returns a vector of the | |
3964 indexes into the installed package list indicating the packages to | |
3965 load and the order to load them in to respect the dependencies. | |
3966 | |
6688 | 3967 2007-06-03 S�ren Hauberg <soren@hauberg.org> |
3968 | |
3969 * plot/axes.m: Eliminate redundant else clause. | |
3970 | |
6686 | 3971 2007-06-03 David Bateman <dbateman@free.fr> |
3972 | |
3973 * polynomial/spline.m: Add a small tolerance to spline tests. | |
6687 | 3974 * pkg/pkg.m: Protect against multiple actions being define. |
3975 | |
6683 | 3976 2007-06-01 David Bateman <dbateman@free.fr> |
3977 | |
3978 * pkg.m (pkg:is_superuser): Remove function used in one place and | |
3979 incorporate into main pkg function. | |
3980 (pkg:install): Check for existence of files to install before | |
3981 globbing and warn the user if they don't exist. | |
3982 | |
6675 | 3983 2007-05-31 David Bateman <dbateman@free.fr> |
3984 | |
6679 | 3985 * miscellaneous/copyfile.m: Split copying of multiple files to a |
3986 directory over several copy command to limit the line length. | |
3987 * miscellaneous/movefile.m: Ditto. | |
3988 | |
6675 | 3989 * pkg.m: Add build option to allow binary Octave packages to be |
3990 built from source packages. Probe absolute path of prefix, global | |
3991 and local lists. Use strcat, rather that [] for strings. | |
3992 (pkg:build): New function to binary binary package. | |
3993 (pkg:absolute_pathname): Use fileattrib to probe absolute path. | |
3994 (pkg:repackage): Package binary Octave package from installation. | |
3995 (pkg:create_pkgadddel): Extract PKG_ADD and PKG_DEL directives | |
3996 from m-files into main installation directory. | |
3997 (pkg:shell): Suppress verbose messages from shell and only display | |
3998 them with the verbose flag. | |
3999 (pkg:installed_packages): Also include the loaded flag in the | |
4000 local and global packages. | |
4001 (pkg:uninstall): On uninstall, only rmpath the package if it is | |
4002 flagged as loaded. | |
4003 | |
4004 2007-05-31 Michael Goffioul <michael.goffioul@swing.be> | |
4005 | |
4006 * pkg.m (pkg:load_packages): Correctly load a mix of packages | |
4007 with and without architecture dependent directories. | |
4008 (pkg:installed_packages): Probe the global_list file even if it is | |
4009 the same as the local_list. | |
4010 | |
6669 | 4011 2007-05-29 John W. Eaton <jwe@octave.org> |
4012 | |
4013 * sparse/spy.m: Set axis to "ij" mode. | |
4014 | |
6664 | 4015 2007-05-24 John W. Eaton <jwe@octave.org> |
4016 | |
4017 * set/ismember.m: Quote first arg of "fail" tests. | |
4018 | |
6663 | 4019 2007-05-24 David Bateman <dbateman@free.fr> |
4020 | |
6778 | 4021 * pkg/pkg.m (pkg:rebuild): Thinko in rebuild logic. |
6663 | 4022 |
6655 | 4023 2007-05-22 David Bateman <dbateman@free.fr> |
4024 | |
4025 * pkg/pkg.m: Use rethrow(lasterror()) throughout rather than | |
4026 error(lasterr()(8:end)). | |
4027 (pkg:install): Warning for empty packages being removed. Suppress | |
4028 spurious output. Warning rather than error for uninstalling a | |
4029 package that is not installed to avoid RPM issue. | |
4030 (pkg:configure_make): Fix for parsing of src/FILES. Don't create | |
4031 inst or architecture dependent directory if it exists. | |
4032 | |
6653 | 4033 2007-05-22 Thomas Weber <thomas.weber.mail@gmail.com> |
4034 | |
4035 * ChangeLog, control/system/is_stabilizable.m, general/bicubic.m, | |
4036 image/ind2gray.m, image/saveimage.m, plot/box.m, plot/grid.m, | |
4037 signal/freqz.m: Fix typos. | |
4038 | |
6645 | 4039 2007-05-21 David Bateman <dbateman@free.fr> |
4040 | |
4041 * pkg/pkg.m: Add rebuild target, and -local, -global option to | |
4042 force installation location. | |
4043 (rebuild): New subfunction to rebuild package database from | |
4044 installed packages. Also allows changing of autoload status | |
4045 (install): Warn use if attempting to install from non existent | |
4046 file. | |
4047 (issuperuser): Use 'geteuid() == 0' instead of 'strcmp (getenv( | |
4048 "USER", "root"))' for root test. | |
4049 | |
4050 2007-05-21 Michael Goffioul <michael.goffioul@swing.be> | |
4051 | |
4052 * miscellaneous/copyfile.m: check for cp.exe on Windows platforms | |
4053 and replace "\" characters with "/". | |
4054 * pkg/pkg.m: Use shell rather than system throughout. Replace "\" | |
4055 characters with "/" throughout. | |
4056 (shell): New subfunction that wraps system and is careful with the | |
4057 shell on windows platforms. | |
4058 (configure_make): Explictly pass complier etc to configure | |
4059 process. | |
4060 (issuperuser): Force default to global install for Windows machines. | |
4061 | |
6636 | 4062 2007-05-19 Kristan Onu |
4063 | |
4064 * plot/Makefile.in (SOURCES): Remove hbar.m and add barh.m. | |
4065 | |
6634 | 4066 2007-05-18 David Bateman <dbateman@free.fr> |
4067 | |
4068 * pkg/pkg.m (install): More verbosity. | |
4069 (configure_make): Ditto. | |
4070 (create_pkgadddel): Install in architecture dependent directory if | |
4071 it exists to address issues with autoload/mfilename. | |
4072 (write_INDEX): Check in archiecture dependent directories as well. | |
4073 | |
6633 | 4074 2007-05-17 David Bateman <dbateman@free.fr> |
4075 | |
4076 * plot/hbar.m: Remove. | |
4077 * plot/barh.m: and move it here. | |
4078 | |
6631 | 4079 2007-05-16 S�ren Hauberg <soren@hauberg.org> |
4080 | |
4081 * general/sub2ind.m, general/ind2sub.m: Doc fix. | |
4082 | |
6629 | 4083 2007-05-16 John W. Eaton <jwe@octave.org> |
4084 | |
4085 * general/logspace.m: Return second arg if fewer than two values | |
4086 are requested. | |
4087 | |
6619 | 4088 2007-05-14 John W. Eaton <jwe@octave.org> |
4089 | |
4090 * plot/__go_draw_figure__.m: Ensure that a reset commands starts | |
4091 on a new line. | |
4092 | |
6617 | 4093 2007-05-14 Tarmigan Casebolt <tarmigan+list@gmail.com> |
4094 | |
4095 * statistics/distributions/norminv.m, | |
4096 statistics/distributions/norminv.m, | |
4097 statistics/distributions/normpdf.m, | |
4098 statistics/distributions/normrnd.m: | |
4099 Use standard deviation, not variance. | |
4100 * statistics/distributions/lognpdf.m: Adapt to change in norminv. | |
4101 * statistics/distributions/logninv.m: Refer to norminv, not normal_inv. | |
4102 * deprecated/normal_cdf.m, deprecated/normal_inv.m, | |
4103 deprecated/normal_pdf.m, deprecated/normal_rnd.m: Preserve | |
4104 backward compatibility. | |
4105 | |
6616 | 4106 2007-05-14 David Bateman <dbateman@free.fr> |
4107 | |
4108 * pkg/pkg.m: Mark loaded packages with "*". | |
4109 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
4110 2007-05-13 S�ren Hauberg <soren@hauberg.org> |
6615 | 4111 |
4112 * miscellaneous/single.m: Doc fix. | |
4113 Convert to double instead of returning argument unchanged. | |
4114 | |
4115 * miscellaneous/doc.m: Doc fix. | |
4116 | |
4117 * miscellaneous/ver.m: Doc fix. | |
4118 Don't display information about Octave Forge. | |
4119 | |
6614 | 4120 2007-05-12 David Bateman <dbateman@free.fr> |
4121 | |
4122 * pkg/pkg.m: Add a "-verbose" option that allows all output of an | |
4123 install to be printed. An error in the on_uninstall script causes | |
4124 a failure to uninstall. Place oct- and mex-files in an | |
4125 architecture dependent directory. | |
4126 | |
6611 | 4127 2007-05-09 John W. Eaton <jwe@octave.org> |
4128 | |
4129 * plot/__go_draw_axes__.m: Break plot command over multiple lines. | |
4130 | |
6609 | 4131 2007-05-09 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4132 | |
4133 * statistics/distributions/normcdf.m: Use standard deviation | |
4134 instead of variance for compatibility. | |
4135 | |
4136 2007-05-08 John W. Eaton <jwe@octave.org> | |
4137 | |
4138 | |
4139 * set/unique.m, set/ismember.m: Use numel(x) instead of prod(size(x)). | |
4140 | |
4141 * set/ismember.m: Always return logical values. | |
4142 | |
4143 * set/ismember.m: Return early if no matches are found. New tests. | |
6749 | 4144 From David Grohmann <grohmann@arlut.utexas.edu>. |
6609 | 4145 |
4146 * general/__isequal__.m: Allow numeric values of different classes | |
4147 to compare equal. | |
4148 | |
6606 | 4149 2007-05-07 David Bateman <dbateman@free.fr> |
4150 | |
6607 | 4151 * sparse/spy.m: Reverse Y axis for new graphics code. Make more |
4152 compatiable, accepting LineSpec and markersize arguments. | |
6606 | 4153 |
6605 | 4154 2007-05-02 John W. Eaton <jwe@octave.org> |
4155 | |
4156 * plot/__go_draw_axes__.m: Convert NA to NaN before writing. | |
4157 | |
6604 | 4158 2007-05-02 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4159 | |
4160 * contour.m: Rewrite help string. | |
4161 | |
6599 | 4162 2007-04-28 John W. Eaton <jwe@octave.org> |
4163 | |
4164 * miscellaneous/unzip.m, miscellaneous/untar.m, | |
4165 miscellaneous/bunzip2.m, miscellaneous/gunzip.m: | |
4166 Special case nargout == 0. | |
4167 | |
6597 | 4168 2007-04-27 Kim Hansen <kimhanse@gmail.com> |
4169 | |
4170 * general/sub2ind.m: Handle empty input, add tests. | |
4171 | |
6590 | 4172 2007-04-27 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4173 | |
4174 * plot/contourc.m: Doc fix. | |
4175 | |
6586 | 4176 2007-04-26 David Bateman <dbateman@free.fr> |
4177 | |
4178 * plot/hist.m: Partially remove previous patch. | |
4179 | |
6582 | 4180 2007-04-26 David Bateman <dbateman@free.fr> |
4181 | |
4182 * plot/hist.m: Support returning of handle | |
4183 * plot/__bar__.m: __pltopt__ should only be called on strings or | |
4184 cells. | |
4185 | |
6575 | 4186 2007-04-25 John W. Eaton <jwe@octave.org> |
4187 | |
6579 | 4188 * plot/__go_draw_axes__.m: For images, set titlespec{data_idx} to |
4189 "title \"\"", not "". | |
4190 | |
6575 | 4191 * plot/legend.m: Initialize WARNED to false. |
4192 | |
6567 | 4193 2007-04-24 John W. Eaton <jwe@octave.org> |
4194 | |
4195 * io/beep.m: Fix cut and paste error. | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
4196 From S�ren Hauberg <soren@hauberg.org>. |
6567 | 4197 |
4198 2007-04-23 John W. Eaton <jwe@octave.org> | |
4199 | |
4200 * plot/box.m: Delete extra endfunction keyword. | |
4201 | |
6560 | 4202 2007-04-23 David Bateman <dbateman@free.fr> |
4203 | |
4204 * plot/plot3.m: Call newplot. | |
4205 | |
6553 | 4206 2007-04-20 John W. Eaton <jwe@octave.org> |
4207 | |
4208 * plot/Makefile.in (SOURCES): Fix typo in adding __bar__.m to the list. | |
4209 | |
6546 | 4210 2007-04-19 John W. Eaton <jwe@octave.org> |
4211 | |
4212 * miscellaneous/unpack.m: Use gzip -d and bzip2 -d instead of | |
4213 gunzip and bunzip. From Michael Goffioul <michael.goffioul@swing.be>. | |
4214 | |
6544 | 4215 2007-04-19 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
4216 | |
4217 * control/util/axis2dlim.m: Delete extraneous line. | |
4218 | |
6542 | 4219 2007-04-18 John W. Eaton <jwe@octave.org> |
4220 | |
4221 * specfun/factorial.m: Increase tolerance in large value test. | |
4222 | |
6540 | 4223 2007-04-18 David Bateman <dbateman@free.fr> |
4224 | |
4225 * __bar__.m: New support function for bar/hbar to support graphic | |
4226 handles, and additional arguments. | |
4227 * bar.m: Convert to use __bar__. | |
4228 * hbar.m: New function | |
4229 * hist.m: Explicitly set the width of the bar plot. | |
4230 | |
6533 | 4231 2007-04-17 John W. Eaton <jwe@octave.org> |
4232 | |
6534 | 4233 * plot/stem.m (stem_line_spec): Pass false as third arg to __pltopt__. |
4234 | |
6533 | 4235 * set/ismember.m: New tests. |
4236 From David Grohmann <grohmann@arlut.utexas.edu> | |
4237 | |
6532 | 4238 2007-04-17 Paul Kienzle <pkienzle@users.sf.net> |
4239 | |
4240 * specfun/factorial.m: Use gamma function instead of cumprod. | |
4241 Add tests. | |
4242 | |
6527 | 4243 2007-04-16 John W. Eaton <jwe@octave.org> |
4244 | |
6528 | 4245 * gethelp.cc (looks_like_octave_copyright): Use same logic as in |
4246 looks_like_copyright in src/help.cc. | |
4247 From S�ren Hauberg <soren@hauberg.org>. | |
4248 | |
6527 | 4249 * plot/__go_draw_axes__.m: For log plots, omit zero values too. |
4250 | |
6526 | 4251 2007-04-13 John W. Eaton <jwe@octave.org> |
4252 | |
6527 | 4253 * optimization/sqp.m: Initialize info to 0. |
4254 | |
6526 | 4255 * optimization/qp.m: Undo previous change. |
4256 | |
6524 | 4257 2007-04-13 Geordie McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4258 | |
4259 * spdiags.m: Fixed the four-argument case to work for columns of | |
4260 length one. | |
4261 | |
6523 | 4262 2007-04-12 John W. Eaton <jwe@octave.org> |
4263 | |
4264 * optimization/qp.m: Avoid Octave indexing bug. | |
4265 | |
6521 | 4266 2007-04-12 Carlo de Falco <kingcrimson@tiscali.it> |
4267 | |
6522 | 4268 * miscellaneous/menu.m, control/base/bddemo.m, |
4269 control/hinf/dgkfdemo.m, control/system/packedform.m, | |
4270 control/system/sysrepdemo.m: | |
4271 Adapt to page_screen_output as a function. | |
6521 | 4272 |
6518 | 4273 2007-04-11 John W. Eaton <jwe@octave.org> |
4274 | |
4275 * miscellaneous/not.m: Delete. | |
4276 * miscellaneous/Makefile.in (SOURCES): Delete it from the list. | |
4277 | |
4278 2007-04-11 A. S. Hodel <a.s.hodel@eng.auburn.edu> | |
4279 | |
4280 * control/util/axis2dlim.m: Try harder to handle min and max vals | |
4281 that are close but not exactly equal. | |
4282 | |
6515 | 4283 2007-04-11 David Bateman <dbateman@free.fr> |
4284 | |
4285 * general/bitcmp.m: Make it work again. | |
4286 | |
6512 | 4287 2007-04-10 John W. Eaton <jwe@octave.org> |
4288 | |
4289 * plot/__go_draw_axes__.m: Try harder to handle min and max vals | |
4290 that are close but not exactly equal. | |
4291 | |
6511 | 4292 2007-04-09 Daniel J. Sebald <daniel.sebald@ieee.org> |
4293 | |
4294 * plot/stem.m: Add back the baseline line and let it be not adjustable | |
4295 in response to a change in x limits for now. | |
4296 | |
6510 | 4297 2007-04-09 John W. Eaton <jwe@octave.org> |
4298 | |
4299 * plot/__go_draw_axes__.m (__gnuplot_write_data__): New function. | |
4300 (__go_draw_axes__): Use it to write data to plot stream. | |
4301 | |
6509 | 4302 2007-04-09 Daniel J Sebald <daniel.sebald@ieee.org> |
4303 | |
4304 * plot/stem.m: Fix typos in doc string. Fix typo in call to | |
4305 zeros. Set markerfacecolor property in call to plot. | |
4306 | |
6508 | 4307 2007-04-06 John W. Eaton <jwe@octave.org> |
4308 | |
4309 * linear-algebra/norm.m: Use new __vnorm__ function for vector args. | |
4310 | |
4311 2007-04-06 Daniel J Sebald <daniel.sebald@ieee.org> | |
4312 | |
4313 * plot/stem.m: Use plot instead of a series of calls to line. | |
4314 | |
6494 | 4315 2007-04-05 John W. Eaton <jwe@octave.org> |
4316 | |
6499 | 4317 * sparse/nonzeros.m, sparse/normest.m, sparse/spconvert.m, |
4318 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/spones.m, | |
4319 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, | |
4320 sparse/spstats.m, sparse/treeplot.m: Style fixes. | |
4321 | |
6496 | 4322 * pkg/pkg.m: Use "strcat (...)" instead of "[...]". |
6500 | 4323 Use strcmpi instead of strcmp+tolower. |
6496 | 4324 Style fixes. |
4325 | |
6494 | 4326 * testfun/speed.m: Use "strcat (...)" instead of "[...]". |
4327 Plotting fixes. Style fixes. | |
4328 | |
4329 * testfun/test.m: Use "strcat (...)" instead of "[...]". | |
4330 Style fixes. | |
4331 | |
4332 * testfun/fail.m: No need to check for evalin and lastwarn. | |
4333 Style fixes. | |
4334 | |
4335 * testfun/demo.m, testfun/example.m: Style fixes. | |
4336 Use "strcat (...)" instead of "[...]". | |
4337 Use format specifiers in calls to warning. | |
4338 | |
4339 * testfun/assert.m: Use "numel (x)" instead of "prod (size (x))". | |
4340 Use "strcat (...)" instead of "[...]". | |
4341 Use "x(end)" instead of "x(length (x))". | |
4342 Check NA before NaN. | |
4343 Style fixes. | |
4344 | |
6473 | 4345 2007-03-29 John W. Eaton <jwe@octave.org> |
4346 | |
6474 | 4347 * plot/stem.m (stem, set_default_values): Use RGB triple for color. |
6473 | 4348 |
6467 | 4349 2007-03-27 John W. Eaton <jwe@octave.org> |
4350 | |
4351 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
4352 control/base/Makefile.in, control/hinf/Makefile.in, | |
4353 control/obsolete/Makefile.in, control/system/Makefile.in, | |
4354 control/util/Makefile.in, deprecated/Makefile.in, | |
4355 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, | |
4356 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, | |
4357 miscellaneous/Makefile.in, optimization/Makefile.in, | |
4358 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, | |
4359 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
4360 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
4361 special-matrix/Makefile.in, startup/Makefile.in, | |
4362 statistics/Makefile.in, statistics/base/Makefile.in, | |
4363 statistics/distributions/Makefile.in, | |
4364 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
4365 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: | |
4366 Use ln instead of $(LN_S) in dist target. | |
4367 | |
6465 | 4368 2007-03-27 David Bateman <dbateman@free.fr> |
4369 | |
4370 * plot/__go_draw_axes__.m: Allow linewidth settings to work with | |
4371 gnuplot 4.0. | |
4372 | |
6464 | 4373 2007-03-26 John W. Eaton <jwe@octave.org> |
4374 | |
4375 * plot/__go_draw_axes__.m: Send image data to gnuplot via plot stream. | |
4376 | |
6461 | 4377 2007-03-26 Daniel J Sebald <daniel.sebald@ieee.org> |
4378 | |
4379 * plot/__go_draw_axes__.m: Always end palette data to gnuplot via | |
4380 plot stream and using binary data. | |
4381 | |
6459 | 4382 2007-03-26 John W. Eaton <jwe@octave.org> |
4383 | |
4384 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, | |
4385 lot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
4386 plot/__plt2vv__.m: Accept properties in addtition to options struct. | |
4387 | |
4388 2007-03-26 David Bateman <dbateman@free.fr> | |
4389 | |
6461 | 4390 * plot/__go_draw_axes__.m: Send "set ticslevel 0" to plot stream. |
4391 | |
6459 | 4392 * plot/plot3.m: Handle line properties. |
4393 * plot/plot.m: Update docstring. | |
4394 * plot/__plotopt__.m, plot/__pltopt1__.m: New arg, err_on_invalid. | |
4395 * plot/__plt__.m: Also gather properties. | |
4396 | |
6455 | 4397 2007-03-26 Kim Hansen <kimhanse@gmail.com> |
4398 | |
4399 * testfun/assert.m: Delete special check for empty objects. | |
4400 Add test. | |
4401 | |
6453 | 4402 2007-03-26 John W. Eaton <jwe@octave.org> |
4403 | |
6454 | 4404 * plot/drawnow.m: Exit early if call is recursive. |
4405 | |
6453 | 4406 * plot/__go_draw_axes__.m (get_data_limits): New function. |
4407 Check for Inf too. | |
4408 (__go_draw_axes__): Use get_data_limits. | |
4409 | |
6450 | 4410 2007-03-24 John W. Eaton <jwe@octave.org> |
4411 | |
6451 | 4412 * plot/drawnow.m: If GNUTERM is set to wxt in the environment, |
4413 send terminal setting command with title option to plot stream. | |
4414 | |
6450 | 4415 * plot/legend.m: Correctly increment index into list of children.. |
4416 | |
6434 | 4417 2007-03-23 John W. Eaton <jwe@octave.org> |
4418 | |
6448 | 4419 * general/interp2.m, general/bicubic.m, control/base/rldemo.m, |
4420 control/hinf/hinfdemo.m, control/hinf/dhinfdemo.m, | |
4421 control/base/nyquist.m, control/base/nichols.m, | |
4422 control/base/frdemo.m, signal/freqz_plot.m, | |
4423 control/base/__stepimp__.m, control/base/bode.m, | |
4424 quaternion/demoquat.m, quaternion/qcoordinate_plot.m, | |
4425 statistics/base/qqplot.m, statistics/base/ppplot.m, sparse/spy.m: | |
6447 | 4426 Update plotting code. |
4427 | |
4428 * control/base/bode.m: Unwrap phase angle. | |
4429 | |
4430 * miscellaneous/dump_prefs.m: Remove automatic_replot from the list. | |
4431 | |
4432 * plot/axis.m: Don't check automatic_replot, or call replot. | |
4433 | |
4434 * quaternion/demoquat.m: Delete comments with obsolete plotting | |
4435 commands. | |
6446 | 4436 |
6442 | 4437 * plot/__pltopt1__.m: Handle "@" marker same as "+". |
6444 | 4438 Handle numeric color specs. |
6442 | 4439 * plot/plot.m: Remove "-@" and "@" from docstring. |
4440 | |
6441 | 4441 * plot/orient.m: Fix tests to avoid creating a plot window. |
4442 | |
6440 | 4443 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, |
4444 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, | |
4445 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m, | |
4446 general/arrayfun.m, miscellaneous/compare_versions.m, | |
4447 path/savepath.m, pkg/pkg.m, plot/__gnuplot_version__.m, | |
4448 plot/contour.m, plot/contourc.m, plot/legend.m, plot/stem.m, | |
4449 polynomial/pchip.m: Fix copyright notice, correct FSF address. | |
4450 | |
6438 | 4451 * plot/__go_draw_figure__.m: Send reset to gnuplot before every |
4452 plot, not just multiplots. | |
4453 | |
6436 | 4454 * plot/__go_draw_axes__.m: Use %g for label coordinates, not %d. |
4455 | |
6434 | 4456 * plot/contour.m: Don't call drawnow. |
4457 | |
6431 | 4458 2007-03-22 John W. Eaton <jwe@octave.org> |
4459 | |
6432 | 4460 * plot/drawnow.m: Check and optionally, set, the __modified__ |
4461 property of each figure. | |
4462 | |
6431 | 4463 * plot/__go_draw_axes__.m: If no real data, plot a point at Inf, |
4464 Inf to show axes. From Daniel J Sebald <daniel.sebald@ieee.org>. | |
4465 | |
4466 2007-03-21 John W. Eaton <jwe@octave.org> | |
4467 | |
4468 * linear-algebra/null.m: Set elements of retval with magnitudes | |
4469 less than eps to 0. | |
4470 | |
6429 | 4471 2007-03-21 David Bateman <dbateman@free.fr> |
6425 | 4472 |
4473 * plot/__go_draw_axes__.m: Handle some colors with older gnuplot. | |
6429 | 4474 * testfun/speed.m: Documentation and example fix. |
4475 | |
6424 | 4476 2007-03-21 John W. Eaton <jwe@octave.org> |
4477 | |
4478 * plot/subplot.m: If we find an existing subplot region, set | |
4479 it to be the "currentaxes" property for the current figure. | |
6425 | 4480 Delete old axes objects if the new axes object overlaps the old. |
6424 | 4481 |
6422 | 4482 2007-03-20 David Bateman <dbateman@free.fr> |
4483 | |
4484 * general/Makefile.in: Include arrayfun.m in SOURCES. | |
4485 | |
4486 2007-03-20 Bill Denney <denney@seas.upenn.edu> | |
4487 | |
4488 * general/arrayfun.m: New function. | |
4489 | |
6418 | 4490 2007-03-20 John W. Eaton <jwe@octave.org> |
4491 | |
6419 | 4492 * plot/newplot.m: Call __request_drawnow__ after initializing axes. |
4493 * plot/text.m: Call __request_drawnow__ after creating text objects. | |
4494 | |
4495 * plot/clf.m: Don't call drawnow. | |
4496 | |
6431 | 4497 2007-03-20 Daniel J Sebald <daniel.sebald@ieee.org> |
6419 | 4498 |
6420 | 4499 * image/__img__.m: Maybe set yaxis to reverse for images. |
4500 * plot/__go_draw_axes__.m: Don't add flipy to gnuplot command for | |
4501 images. | |
4502 | |
6418 | 4503 * plot/drawnow.m: Make __go_close_all_registered__ persistent |
6419 | 4504 instead of global. Only register __go_close_all__ with atexit if |
4505 the plot stream is successfully opened. | |
6418 | 4506 |
6413 | 4507 2007-03-15 John W. Eaton <jwe@octave.org> |
4508 | |
6418 | 4509 * plot/__go_draw_axes__.m: Make have_newer_gnuplot persistent. |
6413 | 4510 From Daniel J Sebald <daniel.sebald@ieee.org>. |
4511 | |
4512 2007-03-15 Daniel J Sebald <daniel.sebald@ieee.org> | |
4513 | |
4514 * plot/__go_draw_axes__.m (do_linestyle_command): Fix marker types. | |
6415 | 4515 Use numeric line types. |
6413 | 4516 |
4517 * control/base/rlocus.m: Add asymptotes to the plot. Use wider | |
6415 | 4518 lines and larger markers. Remove key titles from line type |
4519 properties. | |
6413 | 4520 |
6405 | 4521 2007-03-14 John W. Eaton <jwe@octave.org> |
4522 | |
6412 | 4523 * plot/__axis_label__.m: Accept additional property-value pairs |
4524 and pass them to __go_text__. Simply return the handle obtained | |
4525 from __go_text__ instead of calling get on the current axis. | |
4526 * plot/xlabel.m, plot/zlabel.m, plot/zlabel.m: Check args here. | |
4527 Allow for extra property value pairs to be passed along. | |
4528 * plot/title.m: Implement with __axis_label__ since it does all | |
4529 that title needs to do. | |
4530 | |
6410 | 4531 * plot/clf.m: Set currentaxes property for current figure to []. |
4532 | |
6405 | 4533 * plot/__axis_label__.m: Convert arg to text handle before calling set. |
4534 | |
4535 * plot/__plt__.m: Return line handles from all calls to __plt1__ | |
4536 and __plt2__, not just the last. | |
4537 | |
4538 * plot/Makefile.in (SOURCES): Rename from SOURCES_M. | |
4539 (SOURCES_IN, GEN_M): Delete. | |
4540 (FCN_FILES): Don't include $(GEN_M). | |
4541 (all): Don't depend on $(GEN_M). | |
4542 ($(GEN_M) : %.m : %.in): Delete pattern rule. | |
4543 | |
4544 * plot/text.m: Use __go_text__ instead of __uiboject_text_ctor__. | |
4545 | |
4546 * plot/newplot.m: Call __go_axes_init__ instead of | |
4547 __uiobject_axes_init__. | |
4548 | |
4549 * plot/mesh.m: Use __go_surface__ instead of | |
4550 __uiobject_surface_ctor__. Don't access object fields directly. | |
4551 | |
4552 * plot/line.m: Use __line__ to do actual work. | |
4553 * plot/__line__.m: New function. | |
4554 | |
4555 * plot/axes.m: Use __go_axes__ to create axes graphics handle. | |
4556 Use get and set instead of accessing object fields directly. | |
4557 | |
4558 * plot/figure.m: Use __go_figure__ to create figure graphics | |
4559 handle. | |
4560 | |
4561 * plot/drawnow.m: Register __go_close_all__ with atexit instead of | |
4562 __uiobject_close_all. Call __go_draw_figure__ instead of | |
4563 __uiobject_draw_figure__. | |
4564 | |
4565 * plot/clf.m: Use get instead of accessing object fields | |
4566 directly. Simply delete children. Don't set currentaxes. | |
4567 | |
4568 * plot/close.m (close_all_figures): New subfunction. | |
4569 Use it instead of getting list of figures to close from | |
4570 __uiobject_figures__. | |
4571 | |
4572 * plot/closereq.m: Simply delete the current figure. Don't set | |
4573 currentfigure. | |
4574 | |
4575 * plot/__errplot__.m: Call __line__ instead of | |
4576 __uiobject_line_ctor__. Use set instead of accesing object fields | |
4577 directly. Don't call __uiobject_adopt__. | |
4578 | |
4579 * plot/__uiobject_adopt__.m, plot/__uiobject_alloc__.in, | |
4580 plot/__uiobject_axes_ctor__.m, plot/__uiobject_axes_dtor__.m, | |
4581 plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m, | |
4582 plot/__uiobject_delete__.m, plot/__uiobject_figure_ctor__.m, | |
4583 plot/__uiobject_figures__.in, plot/__uiobject_free__.in, | |
4584 plot/__uiobject_get_handle__.in, plot/__uiobject_globals__.m, | |
4585 plot/__uiobject_grow_list__.in, plot/__uiobject_handle2idx__.in, | |
4586 plot/__uiobject_image_ctor__.m, plot/__uiobject_init_figure__.in, | |
4587 plot/__uiobject_init_root_figure__.in, | |
4588 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.in, | |
4589 plot/__uiobject_root_figure_ctor__.m, | |
4590 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m: | |
4591 plot/get.in, plot/include-globals.awk, plot/ishandle.m, | |
4592 plot/set.in: Delete. | |
6408 | 4593 * plot/Makefile.in (SOURCES_M, SOURCES_IN): Remove from lists. |
6405 | 4594 |
4595 * plot/__go_close_all__.m: Rename from __uiobject_close_all.m. | |
4596 Pass "hidden" as second arg to close. | |
4597 * plot/__go_draw_axes__.m: Rename from __uiobject_draw_axes.m. | |
4598 * plot/__go_draw_figure__.m: Rename from __uiobject_draw_figure.m. | |
6408 | 4599 * plot/Makefile.in (SOURCES_M): Rename in list. |
4600 | |
6405 | 4601 * image/__img__.m: Use __go_image__ to create image graphics |
4602 handle. | |
4603 | |
4604 * miscellaneous/delete.m: Call __go_delete__, not | |
4605 __uiobject_delete__. Check that arg is a graphics handle before | |
4606 calling __go_delete__. | |
4607 | |
6403 | 4608 2007-03-13 John W. Eaton <jwe@octave.org> |
4609 | |
4610 * miscellaneous/cast.m: Use feval and strcmp with cell to check | |
4611 arg instead of switch statement. | |
6528 | 4612 From S�ren Hauberg <soren@hauberg.org>. |
6403 | 4613 |
4614 2007-03-12 John W. Eaton <jwe@octave.org> | |
4615 | |
4616 * miscellaneous/cast.m: New function. | |
4617 | |
4618 * miscellaneous/delete.m: Call __go_delete__, not __uiobject_delete__. | |
4619 | |
6398 | 4620 2007-03-08 John W. Eaton <jwe@octave.org> |
4621 | |
4622 * miscellaneous/copyfile.m, miscellaneous/movefile.m: Perform | |
4623 tilde expansion on target filename before passing it to the shell. | |
4624 | |
4625 * statistics/base/Makefile.in (SOURCES): Remove unidrnd.m from list. | |
4626 * statistics/distributions/Makefile.in (SOURCES): Add it here. | |
4627 | |
6396 | 4628 2007-03-08 David Bateman <dbateman@free.fr> |
4629 | |
4630 * statistics/base/unidrnd.m: Move to statistics/distributions | |
4631 replacing slower version based on dicrete_rnd. | |
4632 | |
6392 | 4633 2007-03-07 John W. Eaton <jwe@octave.org> |
4634 | |
6395 | 4635 * control/base/rlocus.m: Update for current plotting functions. |
4636 | |
4637 2007-03-07 A. S. Hodel <a.s.hodel@eng.auburn.edu> | |
4638 | |
4639 * control/base/rlocus.m: Improve display. | |
4640 | |
4641 2007-03-07 John W. Eaton <jwe@octave.org> | |
4642 | |
4643 * plot/legend.m: Only handle positions -1:4. | |
4644 * plot/__pltopt1__.m: Don't set linestyle if only marker style is | |
4645 found in option string | |
4646 * plot/__uiobject_draw_axes__.m: Handle key position. | |
4647 | |
6394 | 4648 * plot/newplot.m: Always reset next line color. |
4649 | |
6392 | 4650 * testfun/assert.m: Check that number of dimensions match before |
4651 checking dimensions. | |
4652 | |
6391 | 4653 2007-03-07 Muthiah Annamalai <muthuspost@gmail.com> |
4654 | |
4655 * specfun/perms.m, specfun/factorial.m: Check args. | |
4656 | |
6387 | 4657 2007-03-07 John W. Eaton <jwe@octave.org> |
4658 | |
6390 | 4659 * plot/mesh.m: Call newplot before doing anything. |
4660 | |
4661 * plot/__uiobject_draw_axes__.m: Send "e\n" at end of data, not | |
4662 just "e". Only flush plot stream once. | |
4663 From Daniel J Sebald <daniel.sebald@ieee.org>. | |
4664 | |
6387 | 4665 * strings/blanks.m: Omit first index in assignment. |
4666 | |
6386 | 4667 2007-03-07 Paul Kienzle <pkienzle@users.sf.net> |
4668 | |
4669 * set/setdiff.m: Some code cleanup and a fix for setdiff on rows. | |
4670 | |
6385 | 4671 2007-03-06 David Bateman <dbateman@free.fr> |
4672 John W. Eaton <jwe@octave.org> | |
4673 | |
4674 * set/setdiff.m: Ignore "rows" for cell array args. | |
4675 Handle cellstr args. | |
4676 | |
6382 | 4677 2007-03-05 John W. Eaton <jwe@octave.org> |
4678 | |
4679 * optimization/sqp.m: Defer first call to obj_hess until after | |
4680 calling obj_fun. | |
4681 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
4682 2007-03-02 Bob Weigel <rweigel@gmu.edu> |
6377 | 4683 |
4684 * specfun/nchoosek.m: Fix nargin check. | |
4685 | |
6376 | 4686 2007-03-01 Daniel J Sebald <daniel.sebald@ieee.org> |
4687 | |
4688 * image/__img__.m: Don't set xlim and ylim properties. | |
4689 | |
6374 | 4690 2007-03-01 Paul Kienzle <pkienzle@users.sf.net> |
4691 | |
4692 * general/interp1.m: Fix *style cases for decreasing x. | |
4693 | |
6372 | 4694 2007-03-01 Muthiah Annamalai <muthuspost@gmail.com> |
4695 | |
4696 * polynomial/roots.m: Check nargin before accessing arg. | |
4697 | |
6369 | 4698 2007-02-28 John W. Eaton <jwe@octave.org> |
4699 | |
4700 * plot/__uiobject_draw_axes__.m: If looking at image data, Don't | |
4701 increment data_idx unless using gnuplot for display. | |
4702 | |
6368 | 4703 2007-02-28 Daniel J Sebald <daniel.sebald@ieee.org> |
4704 | |
4705 * plot/__uiobject_draw_axes__.m: Improve calculation of limits for | |
4706 plots with images. | |
4707 * image/image.m, image/imagesc.m, image/imshow.m: | |
4708 Deprecate zoom argument. | |
4709 | |
6366 | 4710 2007-02-28 John W. Eaton <jwe@octave.org> |
4711 | |
4712 * plot/__uiobject_draw_axes__.m: Use fullfile to generate | |
4713 temporary file names. Keep image and colormap file ids separate. | |
4714 | |
4715 * general/interp1.m: Correctly compute min and max values when | |
4716 values are decreasing and not evenly spaced. | |
4717 From Ricardo Marranita <ricardo.marranita@gmail.com>. | |
4718 | |
6365 | 4719 2007-02-27 John W. Eaton <jwe@octave.org> |
4720 | |
4721 * testfun/test.m (test): Handle possibility of file_in_loadpath | |
4722 returning an empty cell array. | |
4723 | |
6546 | 4724 2007-02-27 Michael Goffioul <michael.goffioul@swing.be> |
6364 | 4725 |
4726 * pkg/pkg.m: Use fullfile to create filenames from parts. | |
4727 | |
6546 | 4728 2007-02-26 Michael Goffioul <michael.goffioul@swing.be> |
6358 | 4729 |
4730 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
4731 control/base/Makefile.in, control/hinf/Makefile.in, | |
4732 control/obsolete/Makefile.in, control/system/Makefile.in, | |
4733 control/util/Makefile.in, deprecated/Makefile.in, | |
4734 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, | |
4735 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, | |
4736 miscellaneous/Makefile.in, optimization/Makefile.in, | |
4737 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, | |
4738 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
4739 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
4740 special-matrix/Makefile.in, startup/Makefile.in, | |
4741 statistics/Makefile.in, statistics/base/Makefile.in, | |
4742 statistics/distributions/Makefile.in, | |
4743 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
4744 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: | |
4745 Use $(LN_S) instead of ln or ln -s. | |
4746 | |
6356 | 4747 2007-02-24 David Bateman <dbateman@free.fr> |
4748 | |
4749 * pkg/pkg.m (configure_make): Ignore blank lines and trailing | |
4750 '\n' in FILES file. | |
6357 | 4751 (configure_make): Also install any mex files. |
6356 | 4752 |
6353 | 4753 2007-02-24 David Bateman <dbateman@free.fr> |
4754 | |
4755 * statistics/distributions (SOURCES): Add nbincdf.m, | |
4756 nbininv.m, nbinpdf.m and nbinrnd.m. | |
4757 | |
6351 | 4758 2007-02-23 John W. Eaton <jwe@octave.org> |
4759 | |
4760 * statistics/distributions/Makefile.in (SOURCES): Remove | |
4761 pascal_cdf.m pascal_inv.m pascal_pdf.m pascal_rnd.m from the list. | |
4762 | |
4763 * deprecated/Makefile.in (SOURCES): Add pascal_cdf.m, | |
4764 pascal_inv.m, pascal_pdf.m, and pascal_rnd.m to the list. | |
4765 | |
6349 | 4766 2007-02-23 David Bateman <dbateman@free.fr> |
4767 | |
4768 * statistics/distributions/discrete_rnd.m, | |
4769 statistics/distributions/geornd.m, | |
4770 statistics/distributions/lognnd.m, | |
4771 statistics/distributions/nbinrnd.m, | |
4772 statistics/distributions/wblrnd.m: Accelerate distributions. | |
4773 | |
4774 * statistics/distributions/unidcdf.m, | |
4775 statistics/distributions/unidinv.m, | |
4776 statistics/distributions/unidpdf.m, | |
4777 statistics/distributions/unidrnd.m: New functions based on | |
6351 | 4778 discrete_cdf, etc. |
6349 | 4779 |
4780 * statistics/distributions/pascal_cdf.m, | |
4781 statistics/distributions/pascal_inv.m, | |
4782 statistics/distributions/pascal_pdf.m, | |
4783 statistics/distributions/pascal_rnd.m: Remove. | |
4784 * statistics/distributions/nbincdf.m, | |
4785 statistics/distributions/nbininv.m, | |
4786 statistics/distributions/nbinpdf.m, | |
4787 statistics/distributions/nbinrnd.m: Replace with matlab | |
4788 compatible functions. | |
4789 * deprecated/pascal_cdf.m, deprecated/pascal_inv.m, | |
4790 deprecated/pascal_pdf.m, deprecated/pascal_rnd.m: Use the new | |
4791 nbincdf, etc functions to implement these. | |
4792 | |
6344 | 4793 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
4794 | |
4795 * plot/__uiobject_draw_axes__.m: Insert newline between plot | |
4796 command and data. | |
4797 | |
4798 2007-02-22 John W. Eaton <jwe@octave.org> | |
4799 | |
4800 * miscellaneous/doc.m: If index search fails, try again without | |
4801 the index search option. | |
4802 | |
6339 | 4803 2007-02-22 David Bateman <dbateman@free.fr> |
4804 | |
6341 | 4805 * miscellaneous/doc.m: Find doc.info file correctly in user directories. |
4806 | |
6340 | 4807 * statistics/distributions/frnd.m, statistics/distributions/exprnd.m, |
4808 statistics/distributions/gamrnd.m, statistics/distributions/trnd.m, | |
4809 statistics/distributions/poissrnd.m, statistics/distributions/chi2rnd.m, | |
4810 statistics/distributions/betarnd.m: Convert to use randg, rande | |
4811 and randp to accelerate. | |
4812 | |
6339 | 4813 * pkg/pkg.m (fix_depends): Support > and < operators as well. |
4814 | |
6338 | 4815 2007-02-22 John W. Eaton <jwe@octave.org> |
4816 | |
4817 * plot/__uiobject_draw_axes__.m: If not using gnuplot for images, | |
4818 cache data and display after xlim and ylim have been determined. | |
4819 | |
6337 | 4820 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
4821 | |
4822 * plot/__uiobject_draw_axes__.m: | |
4823 Allow multiple images to be displayed with gnuplot. | |
4824 | |
6333 | 4825 2007-02-20 Rafael Laboissiere <rafael@debian.org> |
4826 | |
4827 * optimization/glpk.m: Document the fact that extra.mem does not work | |
4828 for versions of GLPK 4.15 and later. | |
4829 | |
6328 | 4830 2007-02-19 John W. Eaton <jwe@octave.org> |
4831 | |
4832 * plot/__uiobject_alloc__.in: If next available element in | |
4833 __uiobject_list__ is 0, grow list before doing anything else. | |
4834 * plot/__uiobject_grow_list__.in: Only set __uiobject_head__ on | |
4835 first call when size of __uiobject_list__ is 0. | |
4836 | |
6323 | 4837 2007-02-16 John W. Eaton <jwe@octave.org> |
4838 | |
4839 * miscellaneous/Makefile.in (SOURCES): Remove popen2.m from the list. | |
4840 | |
6321 | 4841 2007-02-16 Michael Goffioul <michael.goffioul@swing.be> |
4842 | |
4843 * miscellaneous/popen2.m: Remove as replaced with builtin. | |
4844 | |
6316 | 4845 2007-02-16 Muthiah Annamalai <muthuspost@gmail.com> |
4846 | |
4847 * specfun/nchoosek.m: Check nargin. | |
4848 | |
6314 | 4849 2007-02-15 John W. Eaton <jwe@octave.org> |
4850 | |
6315 | 4851 * path/addpath.m, path/rmpath.m: Delete |
4852 * path/Makefile.in (SOURCES): Remove them from the list. | |
4853 | |
6314 | 4854 * plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m: |
4855 Delete title, xlabel, ylabel, and zlabel properties before | |
4856 reassigning. | |
4857 * plot/__uiobject_axes_init__.in: New arg, mode. | |
4858 Don't init outerposition if "mode" is "replace". | |
4859 * plot/newplot.m: Check both figure and axes nextplot properties. | |
4860 If axes nextplot property is replace, pass "replace" as mode arg | |
4861 to __uiobject_axes_init__. | |
4862 | |
6308 | 4863 2007-02-15 Daniel J Sebald <daniel.sebald@ieee.org> |
4864 | |
6310 | 4865 * image/imshow.m: Don't restore old colormap. |
4866 | |
6309 | 4867 * plot/__uiobject_image_ctor__.m: Set xdata and ydata properties. |
4868 * image/__img__.m: New file containing common parts of image.m and | |
4869 imshow.m. | |
6312 | 4870 * image/Makefile.in (SOURCES): Add __img__.m to the list. |
6309 | 4871 * image/image.m, image/imshow.m: Call __img__. |
4872 * plot/__uiobject_draw_axes__.m: | |
4873 Handle rgb imaged data stored in 3-d arrays. | |
4874 | |
6308 | 4875 * plot/figure.m: Doc fix. |
4876 | |
6304 | 4877 2007-02-14 Thomas Weber <thomas.weber.mail@gmail.com> |
4878 | |
4879 * audio/wavread.m, audio/wavwrite.m: Use types with specific sizes | |
4880 for reading and writing data. New tests. Improve rounding. | |
4881 | |
6302 | 4882 2007-02-13 John W. Eaton <jwe@octave.org> |
4883 | |
6303 | 4884 * plot/stem.m: New file, adapted from OctPlot. |
4885 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
4886 | |
6302 | 4887 * plot/__errcomm__.m, plot/__plr1__.m, plot/__plr2__.m, |
4888 plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, | |
4889 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
4890 plot/__plt2vv__.m, plot/__plt__.m, plot/loglog.m, | |
4891 plot/loglogerr.m, plot/plot.m, plot/plot3.m, plot/polar.m, | |
4892 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, | |
4893 plot/semilogyerr.m: Return handles to line objects. | |
4894 | |
6301 | 4895 2007-02-11 John W. Eaton <jwe@octave.org> |
4896 | |
4897 * plot/__uiobject_close_all.m: New file. | |
4898 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
4899 | |
6298 | 4900 2007-02-10 John W. Eaton <jwe@octave.org> |
4901 | |
4902 * plot/drawnow.m: Arrange for plot streams to be close on exit. | |
4903 * plot/__uiobject_globals__.m: Don't call mlock. | |
4904 | |
4905 * plot/drawnow.m: Only check for DISPLAY if isunix returns true. | |
4906 * plot/__uiobject_delete__.m: Send quit command and flush stream | |
4907 before calling pclose. | |
4908 | |
6291 | 4909 2007-02-09 John W. Eaton <jwe@octave.org> |
4910 | |
6295 | 4911 * plot/subplot.m: Delete spurious call to axes. |
4912 | |
6293 | 4913 * plot/figure.m: Call drawnow for current figure before creating |
4914 or switching to a new figure. | |
4915 * plot/__uiobject_init_figure__.in: Handle empty arg the same as | |
4916 nargin == 0 case. | |
4917 | |
6291 | 4918 * testfun/assert.m: Try to avoid problems when comparisons involve |
4919 strange values like Inf+NaNi. | |
4920 | |
6283 | 4921 2007-02-08 John W. Eaton <jwe@octave.org> |
4922 | |
6286 | 4923 * plot/drawnow.m: Use gnuplot_binary() instead of just "gnuplot" |
4924 and check gnuplot_use_title_option instead of just assuming -title | |
4925 works. From Michael Goffioul <michael.goffioul@swing.be>. | |
4926 | |
6285 | 4927 * Makefile.in (DISTFILES): Add move-if-change to the list. |
4928 | |
6284 | 4929 * audio/Makefile.in, control/base/Makefile.in, |
4930 control/hinf/Makefile.in, control/obsolete/Makefile.in, | |
4931 control/system/Makefile.in, control/util/Makefile.in, | |
4932 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, | |
4933 general/Makefile.in, image/Makefile.in, io/Makefile.in, | |
4934 linear-algebra/Makefile.in, miscellaneous/Makefile.in, | |
4935 optimization/Makefile.in, plot/Makefile.in, | |
4936 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
4937 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
4938 special-matrix/Makefile.in, startup/Makefile.in, | |
4939 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
4940 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
4941 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in, | |
4942 path/Makefile.in, pkg/Makefile.in: Explicitly list source files. | |
4943 | |
6283 | 4944 * plot/figure.m: Don't call drawnow. Correctly init figure when |
4945 only given property list. | |
4946 | |
6278 | 4947 2007-02-07 John W. Eaton <jwe@octave.org> |
4948 | |
6280 | 4949 * plot/__uiobject_draw_axes__.m: Handle xdir, ydir, and zdir axis |
4950 properties. | |
4951 | |
6278 | 4952 * plot/sombrero.m: Call box ("off") after mesh. |
4953 | |
4954 * plot/__uiobject_draw_axes__.m: Avoid rgb colors and "set style | |
4955 line default" commands with older versions of gnuplot. | |
4956 | |
4957 * plot/close.m: Use get (0, "currentifgure") instead of gcf. | |
4958 | |
6273 | 4959 2007-02-06 John W. Eaton <jwe@octave.org> |
4960 | |
4961 * plot/__uiobject_draw_axes__.m: Set pt to 0 if marker is ".". | |
4962 * sparse/gplot.m: Use line style - instead of 1. | |
4963 | |
6272 | 4964 2007-02-05 Rafael Laboissiere <rafael@debian.org> |
4965 | |
4966 * plot/print.m: Avoid error message from cellidx. | |
4967 | |
4968 2007-02-05 John W. Eaton <jwe@octave.org> | |
4969 | |
4970 * plot/legend.m: Fix check for data. | |
4971 | |
6270 | 4972 2007-02-05 Thomas Treichl <Thomas.Treichl@gmx.net> |
4973 | |
4974 * plot/__uiobject_draw_axes__.m (do_linestyle_command): | |
4975 Always set lt and pt. | |
4976 | |
6269 | 4977 2007-02-05 Shai Ayal <shaiay@users.sourceforge.net> |
4978 | |
4979 * plot/contourc.m: Correctly compute X and Y. | |
4980 | |
6268 | 4981 2007-02-05 John W. Eaton <jwe@octave.org> |
4982 | |
4983 * plot/__uiobject_draw_axes__.m: Use title "" if no explicit title. | |
4984 When setting {x,y,z}lim, also set {x,y,z}limmode to "auto. | |
4985 | |
6264 | 4986 2007-02-01 John W. Eaton <jwe@octave.org> |
4987 | |
6266 | 4988 * plot/__uiobject_draw_axes__.m: |
4989 Don't try to set axis limits unless we have data. | |
4990 | |
6264 | 4991 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
4992 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
4993 plot/__plt2vv__.m, plot/__plt__.m, plot/__pltopt1__.m, | |
4994 plot/__pltopt__.m, plot/plot3.m: Set and use options struct | |
4995 instead of of key and fmt strings. | |
4996 | |
4997 * plot/__pltopt1__.m: Greatly simplify. | |
4998 | |
4999 * plot/__next_line_color__.m: New file. | |
5000 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5001 * plot/newplot.m: Call __next_line_color__ here to reset rotation. | |
5002 | |
5003 * plot/__default_plot_options__.m: New file. | |
5004 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5005 | |
5006 * plot/__plt3__.m: Delete. | |
5007 * plot/Makefile.in (SOURCES_M): Remove it from the list. | |
5008 | |
6259 | 5009 2007-01-31 John W. Eaton <jwe@octave.org> |
5010 | |
6263 | 5011 * plot/__uiobject_draw_axes__.m: Set defaults for color, |
5012 linestyle, linewidth, marker, and markersize properties. | |
5013 * plot/__uiobject_draw_axes__.m: Attempt to handle line and marker | |
5014 colors and widths, and line styles. | |
5015 | |
5016 * plot/__plt__.m, image/image.m: Don't call drawnow. | |
6262 | 5017 |
6261 | 5018 * plot/__gnuplot_version__.m: Restore from CVS Attic. |
5019 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5020 | |
5021 * plot/__uiobject_draw_axes__.m: Delete useless call to | |
5022 __gnuplot_save_data__. | |
5023 | |
6259 | 5024 * image/image.m: Accept 2 args, but ignore the second for now. |
5025 | |
6258 | 5026 2007-01-30 David Bateman <dbateman@free.fr> |
5027 | |
5028 * pkg/pkg.m (pkg, isautoload, install, load_packages): Add ability | |
5029 to flag a package as to be autoloaded. Add install flags -noauto, | |
5030 -auto to force autoload behavior. | |
5031 (installed_packages): Make list of installed packages unique. | |
5032 | |
6259 | 5033 2007-01-30 John W. Eaton <jwe@octave.org> |
5034 | |
5035 * Merge of changes from graphics-branch: | |
5036 | |
5037 2007-01-29 John W. Eaton <jwe@octave.org> | |
6257 | 5038 |
5039 * plot/subplot.m: Set nextplot property of current figure to "add". | |
5040 | |
5041 * plot/__uiobject_draw_axes__.m: Only handle outerposition | |
5042 property if it exists. | |
5043 | |
6259 | 5044 2007-01-26 John W. Eaton <jwe@octave.org> |
6257 | 5045 |
5046 * plot/__uiobject_draw_axes__.m: Move initialization of max and | |
5047 min values outside of loop over child objects. | |
5048 | |
5049 * plot/contour.m, plot/contourc.m: New files. | |
5050 * plot/Makefile.in (SOURCES_M): Add them to the list. | |
5051 | |
5052 * image/image_viewer.m: Set view_fcn to "gnuplot_internal" if we | |
5053 find a gnuplot version newer than 4.0. | |
5054 * image/__img_gnuplot__.m: Delete. | |
5055 * image/image.m: Create image graphics object. | |
5056 Call newplot to setup and drawnow to finish. | |
5057 Eliminate ZOOM arg. | |
5058 | |
5059 * plot/__uiobject_draw_axes__.m: Handle image data. | |
5060 | |
5061 * plot/legend.m: Eliminate useless variable "warned". | |
5062 | |
5063 * plot/__uiobject_image_ctor__.m: New file. | |
5064 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5065 | |
5066 * plot/gcf.m: Also create new figure if currentfigure is 0. | |
5067 * plot/drawnow.m: Use get (0, "currentfigure") instead of gcf. | |
5068 | |
5069 * plot/__uiobject_root_figure_ctor__.m: Set visible property. | |
5070 | |
5071 * plot/__default_colormap__.m: New file. | |
5072 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5073 * plot/__uiobject_figure_ctor__.m: Use it to set default colormap | |
5074 property. | |
5075 * image/colormap.m: Use colormap property of current figure | |
5076 to store colormap instead of using persistent variable. | |
5077 Call __default_colormap__ to get default map value. | |
5078 * image/ocean.m, image/gray.m: Set colormap for current figure. | |
5079 | |
5080 * plot/__uiobject_draw_axes__.m: Handle aspect ratio property. | |
5081 Handle some tick mark options. | |
5082 | |
5083 * plot/__uiobject_axes_setr__.m: If we see xtick, ytick, or ztick, | |
5084 set corresponding *mode to "manual". If we set dataaspectratio, | |
5085 set dataaspectratiomode to "manual". | |
5086 | |
5087 * plot/__uiobject_axes_init__.m: Include *tick, *tickmode, | |
5088 *ticklabelmode, dataaspectratio, dataaspectratiomode properties. | |
5089 | |
5090 * plot/axis.m: New file. | |
5091 * plot/Makefile.in (SOURCES_M): Include it in the list. | |
5092 | |
5093 * plot/__uiobject_axes_setr__.m: If we see xlim, ylim, or zlim, | |
5094 set corresponding *limmode to "manual". | |
5095 * plot/__uiobject_draw_axes__.m (get_axis_limits): New subfunction. | |
5096 Use it to compute autosclaled limits. | |
5097 Arg is now handle, not object. Change all callers. | |
5098 Compute data limits. | |
5099 | |
6259 | 5100 2007-01-25 John W. Eaton <jwe@octave.org> |
6257 | 5101 |
5102 * plot/drawnow: Fix visibility check for zero args. | |
5103 | |
5104 * plot/text.m: New file. | |
5105 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5106 * plot/__uiobject_draw_axes__.m: Handle text objects. | |
5107 * plot/__uiobject_text_ctor__.m: Include units, position, and | |
5108 horizontalalignment properties. | |
5109 | |
5110 * plot/figure.m: Set options for f we just constructed or were | |
5111 given as an argument, not gcf. Only return handle if nargout > 0. | |
5112 | |
5113 * plot/drawnow.m: Handle visible field for figure here. | |
5114 * plot/__uiobject_figure_ctor__.m: Set default visible field. | |
5115 | |
5116 * plot/__uiobject_draw_axes__.m: Call undo_string_escapes on | |
5117 title and axis labels. | |
5118 | |
5119 * plot/plot3.m, plot/mesh.m: Set default 3-d view here. | |
5120 * plot/__uiobject_draw_axes__.m: Handle view for 3-d plots. | |
5121 * plot/__uiobject_axes_init__.in: Set default view field for object. | |
5122 * plot/view.m: New file. | |
5123 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5124 | |
5125 * plot/__uiobject_make_handle__.in, plot/set.m, plot/drawnow.m: | |
5126 Call __request_drawnow__. | |
5127 | |
5128 * plot/newplot.m: For "replace" action, call __uiobject_axes_init__. | |
5129 | |
5130 * plot/__uiobject_axes_ctor__.m, plot/__uiobject_text_ctor__.m: | |
5131 Call set to set properties. Return handle instead of structure. | |
5132 Change all callers. | |
5133 | |
5134 * plot/__uiobject_axes_setr__.m: New file. | |
5135 * plot/set.in: Check for __setter__ field. | |
5136 | |
5137 * plot/__uiobject_axes_init__.in: | |
5138 Rename from plot/__uiobject_axes_init__.m. | |
5139 Include __uiobject_globals__. | |
5140 Accept handle as arg instead of structure | |
5141 * plot/Makefile.in (SOURCES_M): Remove __uiobject_axes_init__.m | |
5142 from the list. | |
5143 (SOURCES_IN): Add __uiobject_axes_init__.in to the list. | |
5144 | |
6259 | 5145 2007-01-24 John W. Eaton <jwe@octave.org> |
6257 | 5146 |
5147 * plot/Makefile.in ($(GEN_M)): Depend on __uiobject_globals__.m. | |
5148 | |
5149 * plot/__uiobject_globals__.m: Call __lock_global__ when | |
5150 initializing each global variable. | |
5151 | |
6259 | 5152 2007-01-18 John W. Eaton <jwe@octave.org> |
6257 | 5153 |
5154 * plot/__uiobject_globals__.m (__uiobject_handles_free_list__, | |
5155 __uiobject_figure_handles_free_list__): New global variables. | |
5156 * plot/__uiobject_get_handle__.m, plot/__uiobject_free__.m: | |
5157 Place unused handles on the free list. | |
5158 | |
5159 * plot/__uiobject_get_figure_handle__.in: Delete. | |
5160 * plot/Makefile.in: Delete it from the SOURCES_IN list. | |
5161 | |
5162 * plot/__uiobject_init_figure__.in: Perform allocation of figure | |
5163 handles here. Return figure handle. | |
5164 * plot/figure.m: Call __uiobject_init_figure__ to allocate handle. | |
5165 | |
6259 | 5166 2007-01-11 John W. Eaton <jwe@octave.org> |
6257 | 5167 |
5168 * plot/__uiobject_draw_axes__.m: Use "%g", not "%.4g" when writing | |
5169 data for gnuplot. | |
5170 | |
5171 * plot/Makefile.in (SOURCES_M, SOURCES_IN, GEN_M): New lists of | |
5172 files. | |
5173 (SOURCES): Include $(SOURCES_M) and $(SOURCES_M) in the list. | |
5174 (DISTFILES): Include include-globals.awk in the list. | |
5175 (FCN_FILES): Define using $(SOURCES_M) and $(GEN_M). | |
5176 ($(GEN_M) : %.m : %.in): New rule. | |
5177 | |
5178 * include-globals.awk: New file. | |
5179 | |
5180 * plot/__uiobject_alloc__.in, plot/__uiobject_figures__.in, | |
5181 plot/__uiobject_free__.in, plot/__uiobject_get_figure_handle__.in, | |
5182 plot/__uiobject_get_handle__.in, plot/__uiobject_grow_list__.in, | |
5183 plot/__uiobject_handle2idx__.in, plot/__uiobject_init_figure__.in, | |
5184 plot/__uiobject_init_root_figure__.in, | |
5185 plot/__uiobject_make_handle__.in, plot/get.in, plot/set.in: | |
5186 Rename from corresponding .m files. | |
5187 | |
5188 * move-if-change: New file. | |
5189 | |
5190 * plot/__uiobject_delete__.m: New file. | |
5191 * plot/delete.m, plot/__uiobject_delete_children__.m, | |
5192 plot/__uiobject_delete_child__.m: Delete. | |
5193 * miscellaneous/delete.m: Forward to __uiobject_delete__ if arg is | |
5194 not a character string. | |
5195 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2vm__.m: | |
5196 Fix assignment to tmp key value in loop. | |
5197 * plot/__uiobject_axes_dtor__.m: No need to Call __uiobject_free__ | |
5198 for obj.title, obj.xlabel, obj.ylabel, obj.zlabel. | |
5199 * plot/__uiobject_axes_dtor__.m, plot/__uiobject_axis_init__.m: | |
5200 Inline code to delete children. | |
5201 * plot/__uiobject_free__.m: Arg is now handle, not index into | |
5202 __uiobject_list__. | |
5203 * plot/clf.m, plot/closereq.m, plot/newplot.m: No need to remove | |
5204 and free child. | |
5205 | |
6259 | 5206 2006-12-08 John W. Eaton <jwe@octave.org> |
5207 | |
5208 * plot/gcf.m: Check if the root figure object's currentfigure | |
5209 handle is empty, not 0. | |
5210 * plot/__uiobject_root_figure_ctor__.m: | |
5211 Set currentfigure to [], not 0. | |
5212 | |
5213 * plot/stairs.m: Handle matrix arguments. Improve compatibility. | |
5214 | |
5215 2006-12-07 John W. Eaton <jwe@octave.org> | |
5216 | |
5217 * plot/__plt_get_axis_arg__.m, plot/__uiobject_adopt__.m, | |
5218 plot/__uiobject_alloc__.m, plot/__uiobject_axes_ctor__.m, | |
5219 plot/__uiobject_axes_dtor__.m, plot/__uiobject_axes_init__.m, | |
5220 plot/__uiobject_delete_children__.m, | |
5221 plot/__uiobject_draw_axes__.m, plot/__uiobject_draw_figure__.m, | |
5222 plot/__uiobject_figure_ctor__.m, plot/__uiobject_figures__.m, | |
5223 plot/__uiobject_free__.m, plot/__uiobject_get_figure_handle__.m, | |
5224 plot/__uiobject_get_handle__.m, plot/__uiobject_globals__.m, | |
5225 plot/__uiobject_grow_list__.m, plot/__uiobject_handle2idx__.m, | |
5226 plot/__uiobject_init_figure__.m, | |
5227 plot/__uiobject_init_root_figure__.m, | |
5228 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.m, | |
5229 plot/__uiobject_remove_child__.m, | |
5230 plot/__uiobject_root_figure_ctor__.m, | |
5231 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m, | |
5232 plot/axes.m, plot/box.m, plot/closereq.m, plot/delete.m, | |
5233 plot/drawnow.m, plot/gca.m, plot/gcf.m, plot/get.m, | |
5234 plot/isfigure.m, plot/ishandle.m, plot/line.m, plot/newplot.m, | |
5235 plot/set.m: New files. | |
5236 | |
5237 * plot/__plt3__.m, plot/errorbar.m, plot/__axis_label__.m, | |
5238 plot/__plr1__.m, plot/__errcomm__.m, plot/print.m, plot/zlabel.m, | |
5239 plot/__plt1__.m, plot/__plt2__.m, plot/sombrero.m, plot/shg.m, | |
5240 plot/fplot.m, plot/ndgrid.m, plot/clf.m, plot/hold.m, | |
5241 plot/ishold.m, plot/meshdom.m, plot/ylabel.m, plot/__plt2ss__.m, | |
5242 plot/__plt2vv__.m, plot/__plr2__.m, plot/__plt2mm__.m, | |
5243 plot/__pltopt1__.m, plot/meshgrid.m, plot/__plt2mv__.m, | |
5244 plot/figure.m, plot/xlabel.m, plot/stairs.m, plot/__plt2vm__.m, | |
5245 plot/bar.m, plot/__errplot__.m, plot/semilogx.m, plot/semilogy.m, | |
5246 plot/loglog.m, plot/polar.m, plot/legend.m, plot/orient.m, | |
5247 plot/title.m, plot/__pltopt__.m, plot/grid.m, plot/hist.m, | |
5248 plot/subplot.m, plot/plot.m, plot/mesh.m, plot/__plt__.m, | |
5249 plot/close.m, plot/loglogerr.m, plot/plot3.m, plot/semilogxerr.m, | |
5250 plot/semilogyerr.m, plot/replot.m: | |
5251 Adapt to new graphics data structure. | |
5252 | |
5253 * plot/__do_legend__.m, plot/__gnuplot_version__.m, | |
5254 plot/__init_plot_vars__.m, plot/__make_using_clause__.m, | |
5255 plot/__plot_globals__.m, plot/__plr__.m, plot/__render_plot1__.m, | |
5256 plot/__render_plot__.m, plot/__setup_plot__.m, plot/axis.m, | |
5257 plot/contour.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, | |
5258 plot/plot_border.m, plot/subwindow.m: Delete. | |
5259 | |
5260 2007-01-24 David Bateman <dbateman@free.fr> | |
5261 | |
5262 * pkg/pkg.m: Install ChangeLog file if it exists. | |
5263 Delete bare newline in string passed to write_INDEX. | |
5264 | |
5265 * sparse/sprandsym.m: Make work for even values of N. | |
5266 | |
5267 2007-01-24 John W. Eaton <jwe@octave.org> | |
5268 | |
5269 * miscellaneous/news.m: New file. | |
5270 | |
5271 2007-01-23 Luis F. Ortiz <lortiz@interactivesupercomputing.com> | |
5272 | |
5273 * strings/strncmpi.m: Use strncmp instead of calling strtrunc on args. | |
5274 | |
5275 * strings/strncmp.m: Delete (we now have a built-in version). | |
5276 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5277 2007-01-22 Bob Weigel <rweigel@gmu.edu> |
6259 | 5278 |
5279 * testfun/test.m: Check for all files in path, use first found. | |
5280 | |
5281 2007-01-22 David Bateman <dbateman@free.fr> | |
5282 | |
5283 * polynomial/spline.m: Make DG a column instead of a row vector. | |
5284 | |
5285 2007-01-18 S�ren Hauberg <hauberg@gmail.com> | |
5286 | |
5287 * pkg/pkg.m (copy_files): Call write_INDEX with correct target | |
5288 file name. | |
5289 | |
5290 * image/ind2rgb.m: Better input checking. Return 3-d array if | |
5291 nargout is 1. Handle colormaps that have too few colors. | |
5292 | |
5293 * pkg/pkg.m (create_pkgadddel): Call fullfile with nm, not "nm". | |
5294 (configure_make): Use fullfile instead of concatenating with "/". | |
5295 | |
6258 | 5296 2007-01-10 Baylis Shanks <bshanks3@hotmail.com> |
5297 | |
5298 * set/ismember.m: Handle N-d arrays. | |
5299 | |
5300 2007-01-10 David Bateman <dbateman@free.fr> | |
5301 | |
5302 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, | |
5303 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, | |
5304 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m: | |
5305 New files. | |
5306 | |
5307 2007-01-09 S�ren Hauberg <hauberg@gmail.com> | |
5308 | |
6778 | 5309 * pkg/pkg.m: Allow filenames to contain glob patterns. |
6258 | 5310 |
5311 2007-01-08 S�ren Hauberg <hauberg@gmail.com> | |
5312 | |
5313 * pkg/pkg.m: Use copyfile instead of calling system. Use fullfile | |
5314 instead of concatenating with "/". Use mlock to ensure that | |
5315 persistent variables are not clobbered if user types clear all. | |
5316 | |
5317 2007-01-08 John W. Eaton <jwe@octave.org> | |
5318 | |
5319 * miscellaneous/copyfile.m, miscellaneous/movefile.m: | |
5320 Improve handling of file names containing globbing characters. | |
5321 From S�ren Hauberg <hauberg@gmail.com>. | |
5322 | |
5323 2007-01-05 John W. Eaton <jwe@octave.org> | |
5324 | |
5325 * optimization/optimset.m, optimization/__fsolve_defopts__.m: | |
5326 New files. | |
5327 | |
5328 2006-12-30 John W. Eaton <jwe@octave.org> | |
5329 | |
5330 * sparse/spfun.m: Check for "function_handle" not "function handle". | |
5331 * plot/fplot.m: Likewise. Use isa instead of strcmp + class. | |
5332 | |
5333 2006-12-27 S�ren Hauberg <hauberg@gmail.com> | |
5334 | |
5335 * image/imshow.m: Strip NaNs from image. | |
5336 | |
5337 2006-12-08 David Bateman <dbateman@free.fr> | |
5338 | |
5339 * sparse/normest.m: New file. | |
5340 | |
6286 | 5341 2006-12-06 Michael Goffioul <michael.goffioul@swing.be> |
6209 | 5342 |
6210 | 5343 * miscellaneous/copyfile.m, miscellaneous/movefile.m: |
5344 Work on Windows systems without cp or mv. | |
5345 | |
6209 | 5346 * startup/inputrc: Include sequences for Windows. |
5347 | |
6203 | 5348 2006-12-06 S�ren Hauberg <hauberg@gmail.com> |
5349 | |
5350 * pkg/pkg.m (unload_packages): New function. | |
5351 (pkg): Handle unload action. | |
5352 | |
5353 * __errplot__.m: Add missing semicolon. | |
5354 | |
6193 | 5355 2006-11-30 John W. Eaton <jwe@octave.org> |
5356 | |
5357 * miscellaneous/mexext.m: New file. | |
5358 | |
6189 | 5359 2006-11-29 David Bateman <dbateman@free.fr> |
5360 | |
5361 * pkg/pkg.m: Add local_list and global_list options that allow the | |
5362 location of package lists to be probed and set. | |
5363 | |
6179 | 5364 2006-11-17 John W. Eaton <jwe@octave.org> |
5365 | |
6181 | 5366 * plot/__render_plot1__.m: Reverse y axis for images. |
5367 | |
6179 | 5368 * plot/__render_plot__.m: New args, terminal and output. |
5369 * plot/print.m: Don't set output and term here. Instead, call | |
5370 __render_plot__ with terminal and output. | |
5371 | |
6178 | 5372 2006-11-16 John W. Eaton <jwe@octave.org> |
5373 | |
5374 * plot/__render_plot1__.m: New file. | |
5375 * plot/__render_plot__.m: Use it. Loop over multiplots. | |
5376 * plot/print.m, plot/subplot.m: Don't send "set multiplot" to | |
5377 gnuplot. Let __render_plot__ do that. | |
5378 | |
6177 | 5379 2006-11-16 Francesco Potorti` <Potorti@isti.cnr.it> |
5380 | |
5381 * plot/plot.m: Fix doc string. | |
5382 | |
6173 | 5383 2006-11-16 John W. Eaton <jwe@octave.org> |
5384 | |
5385 * plot/__render_plot__.m: Check for mix of 2-d and 3-d plots | |
5386 before sending anything to the plotter. | |
5387 | |
6172 | 5388 2006-11-15 John W. Eaton <jwe@octave.org> |
5389 | |
5390 * image/__img_gnuplot__.m: Store more info in global plot | |
5391 structures and use __render_plot__ to build plot command to | |
5392 display image. | |
5393 | |
5394 * plot/__plt3__.m: New arg, parametric. Change all callers. | |
5395 | |
5396 * plot/__plot_globals__.m (__plot_line_offset__, __plot_command__, | |
5397 __plot_command_sep__): Delete. | |
5398 (__plot_data_type__, __plot_data_parametric__, | |
5399 __plot_image_colormap__, __plot_image_dims__, __plot_fmtstr__, | |
5400 __plot_usingstr__, __plot_withstr__): New variables. | |
5401 * plot/__init_plot_vars__.m: Initialize them. | |
5402 | |
5403 * plot/__init_plot_vars__.m, plot/__setup_plot__.m: | |
5404 Don't handle sep or cmd. | |
5405 | |
5406 * plot/__render_plot__.m: New function. | |
5407 * plot/__plt__.m, plot/__plt3__.m, plot/__errplot__.m: | |
5408 Store more info in global plot structures and use __render_plot__ | |
5409 to build plot command. | |
5410 * plot/replot.m: Simply call __render_plot__. | |
5411 | |
5412 * plot/contour.m, plot/mesh.m, plot/plot3.m: | |
5413 Set __plot_data_parametric__ here. | |
5414 | |
6164 | 5415 2006-11-14 John W. Eaton <jwe@octave.org> |
5416 | |
6166 | 5417 * plot/bottom_title.m, plot/top_title.m: Delete. |
5418 | |
6164 | 5419 * image/image_viewer.m: Set default values here. |
5420 * image/image.m: Not here. | |
5421 | |
5422 * image/image_viewer.m: Always return old values. Check arguments. | |
5423 * image/__img_gnuplot__.m: Rename from __img__m. | |
5424 | |
5425 2006-11-14 S�ren Hauberg <soren@hauberg.org> | |
5426 | |
5427 * image/image_viewer.m: New function. | |
5428 * image/__img_via_file__.m: New function. | |
5429 * image/image.m: Use image_viewer to determine which program to | |
5430 use for image viewing. | |
6754 | 5431 * image/__img__.m: Silently accept more than 3 args. |
6164 | 5432 |
6163 | 5433 2006-11-14 John W. Eaton <jwe@octave.org> |
5434 | |
5435 * plot/__do_legend__.m, plot/__errplot__.m, | |
5436 plot/__init_plot_vars__.m, plot/__plot_globals__.m, | |
5437 plot/__plt3__.m, plot/__plt__.m, plot/__setup_plot__.m, | |
5438 plot/legend.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, | |
5439 plot/replot.m, plot/subplot.m, plot/subwindow.m: | |
5440 Use __plot_globals__ for multiplot variables. Keep track of | |
5441 multiplot info for each figure. Eliminate __multiplot_xscale__. | |
5442 | |
6157 | 5443 2006-11-13 John W. Eaton <jwe@octave.org> |
5444 | |
6158 | 5445 * plot/mesh.m: Use proper dimensions for y in call to repmat. |
5446 | |
6157 | 5447 * miscellaneous/substruct.m: New function. |
5448 | |
5449 * testfun/assert.m: Force orientation to match when comparing | |
5450 struct elements. | |
5451 | |
5452 * general/__isequal__.m: Avoid assignment of comma-separated lists | |
5453 when comparing structs. | |
5454 | |
5455 2006-11-13 S�ren Hauberg <hauberg@gmail.com> | |
5456 | |
6754 | 5457 * general/bicubic.m, general/cart2pol.m, general/cart2sph.m, |
5458 plot/contour.m, linear-algebra/cross.m, general/cumtrapz.m, | |
5459 linear-algebra/dot.m, image/imshow.m, general/interp2.m, | |
5460 general/mod.m, plot/plot3.m, plot/__plr2__.m, plot/__plr__.m, | |
5461 general/pol2cart.m, general/polyarea.m, polynomial/polyfit.m, | |
5462 general/rem.m, image/rgb2ind.m, general/sph2cart.m, | |
5463 general/trapz.m, miscellaneous/xor.m: Use size_equal. | |
6157 | 5464 |
6156 | 5465 2006-11-13 John W. Eaton <jwe@octave.org> |
5466 | |
5467 * plot/mesh.m: Use size_equal to compare dimensions. | |
5468 | |
6154 | 5469 2006-11-13 S�ren Hauberg <soren@hauberg.org> |
5470 | |
5471 * plot/mesh.m: Simplify. Set hidden3d for the plot. | |
5472 | |
6152 | 5473 2006-11-11 S�ren Hauberg <soren@hauberg.org> |
5474 | |
5475 * miscellaneous/copyfile.m: Fix docs to match function. | |
5476 | |
6145 | 5477 2006-11-08 John W. Eaton <jwe@octave.org> |
5478 | |
6146 | 5479 * plot/legend.m: New function, adapted from Octave Forge. |
5480 | |
5481 * plot/__do_legend__.m: New function. | |
5482 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m, | |
5483 plot/replot.m: Call it before plotting. | |
5484 | |
5485 * plot/plot3.m, plot/mesh.m, plot/contour.m: Don't send "set | |
5486 noparametric" to gnuplot.. | |
5487 | |
5488 * plot/__plotopt__.m, plot/__pltopt1__.m, plot/__plt1__.m, | |
5489 plot/__plt2__.m, plot/__plt2mm__.m, plot/__plt2mv__.m, | |
5490 plot/__plt2ss__.m, plot/__plt2vm__.m, plot/__plt2vv__.m: Accept | |
5491 and return key title separate from line format. Accept format and | |
5492 key as cellstr. Always return data as cell array. Return format | |
5493 and key title as cellstr. | |
5494 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m: | |
5495 Handle line format and key titles separately. | |
5496 * plot/__plt3__.m, plot/__plt__.m: Handle data as cell array only. | |
5497 | |
5498 * plot/__plot_globals__.m (__plot_line_offset__, | |
5499 __plot_key_labels__, __plot_key_properties__): New global | |
5500 variables. Initialize them. | |
5501 * plot/__init_plot_vars__.m (__plot_line_offset__, | |
5502 __plot_key_labels__, __plot_key_properties__): Initialize. | |
5503 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m | |
5504 (__plot_line_offset__, __plot_key_labels__, | |
5505 __plot_key_properties__): Store information about plot key titles. | |
5506 | |
5507 * plot/__errplot__.m, plot/__init_plot_vars__.m, plot/__plt3__.m, | |
5508 plot/__plt__.m: Use cf, mxi, and myi as shorthand for | |
5509 __current_figure__, __multiplot_xi__, and __multiplot_yi__, | |
5510 respectively. | |
5511 | |
5512 * plot/__errcomm__.m: Allow fmt to be cellstr. | |
5513 | |
6145 | 5514 * strings/strcat.m: Disable Octave:empty-list-elements warning |
5515 whle concatenating args. | |
5516 | |
6144 | 5517 2006-11-07 John W. Eaton <jwe@octave.org> |
5518 | |
5519 * startup/main-rcfile: Conditionally set PAGER_FLAGS. | |
5520 | |
6142 | 5521 2006-11-06 S�ren Hauberg <soren@hauberg.org> |
5522 | |
6143 | 5523 * pkg/pkg.m (extract_pkg): No need to pass "dotexceptnewline" |
5524 option to regexp. | |
5525 | |
6142 | 5526 * image/__img__.m: Send "set size ratio -1" before plotting. |
5527 | |
6138 | 5528 2006-11-03 Bill Denney <denney@seas.upenn.edu> |
5529 | |
6139 | 5530 * strings/index.m: New arg, direction. Simplify and speed up. |
5531 * strings/rindex.m: Implement using index (..., "last"); | |
5532 | |
6754 | 5533 * blanks.m, strcat.m: Simplify. Add tests. |
6138 | 5534 |
6130 | 5535 2006-11-01 Bill Denney <denney@seas.upenn.edu> |
5536 | |
5537 * general/__isequal__.m: Test size and class more consistently. | |
5538 | |
6116 | 5539 2006-10-27 John W. Eaton <jwe@octave.org> |
5540 | |
6117 | 5541 * miscellaneous/ls_command.m: Use /D instead of /w. |
5542 From Michael Goffioul <michael.goffioul@swing.be>. | |
5543 | |
6116 | 5544 * miscellaneous/ls.m, miscellaneous/ls_command.m: New files. |
5545 * miscellaneous/dir.m: Mark as a command. | |
5546 | |
6112 | 5547 2006-10-27 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
5548 | |
5549 * miscellaneous/unpack.m: Fix missing comma in strcat call. | |
5550 | |
6088 | 5551 2006-10-25 John W. Eaton <jwe@octave.org> |
5552 | |
5553 * image/image.m: Set x = y = [] when nargin == 0; | |
5554 | |
5555 2006-10-25 Quentin Spencer <qspencer@ieee.org> | |
5556 | |
5557 * image/image.m: Call __img__ if gnuplot version is > 4.0. | |
5558 * image/__img__.m: New file, originally from | |
5559 Daniel J Sebald <daniel.sebald@ieee.org>. | |
5560 | |
6087 | 5561 2006-10-25 John W. Eaton <jwe@octave.org> |
5562 | |
5563 * plot/__gnuplot_version__.m: New function, originally from | |
5564 Daniel J Sebald <daniel.sebald@ieee.org> by way of | |
5565 Quentin Spencer <qspencer@ieee.org>. | |
5566 | |
6085 | 5567 2006-10-25 S�ren Hauberg <soren@hauberg.org> |
5568 | |
5569 * plot/__pltopt__.m: Update symbol marker id numbers for gnuplot 4. | |
5570 | |
6081 | 5571 2006-10-24 Bill Denney <denney@seas.upenn.edu> |
5572 | |
5573 * miscellaneous/unpack.m, miscellaneous/bunzip2.m, | |
5574 miscellaneous/gunzip.m: New files. | |
5575 * miscellaneous/untar.m, miscellaneous/unzip.m: | |
5576 Call unpack to do the real work. | |
5577 | |
6075 | 5578 2006-10-24 John W. Eaton <jwe@octave.org> |
5579 | |
6078 | 5580 * plot/plot3.m: If we have a format string, then also pass using |
5581 string to __plt3__. | |
5582 | |
6077 | 5583 * plot/sombrero.m: Don't return anything if nargout == 0. |
5584 | |
6075 | 5585 * plot/__plt3__.m: Create using clause if none is supplied. |
6077 | 5586 * plot/mesh.m: Always pass empty using string to __plt3__. |
6075 | 5587 |
6069 | 5588 2006-10-20 Bill Denney <denney@seas.upenn.edu> |
5589 | |
5590 * movefile.m, copyfile.m: Handle cellstr lists of files. | |
5591 Quote filenames in shell commands. | |
5592 | |
6055 | 5593 2006-10-17 David Bateman <dbateman@free.fr> |
5594 | |
5595 * pkg/pkg.m (uninstall): Allow the uninstall to proceed even if | |
5596 the package directory is missing. | |
5597 | |
6052 | 5598 2006-10-13 John W. Eaton <jwe@octave.org> |
5599 | |
5600 * plot/box.m: New function. | |
5601 | |
6050 | 5602 2006-10-13 Etienne Grossmann <etienne@tyzx.com> |
5603 | |
5604 * general/ind2sub.m, general/sub2ind.m: Handle empty indices. | |
5605 | |
6049 | 5606 2006-10-12 Quentin Spencer <qspencer@ieee.org> |
5607 | |
5608 * plot/sombrero.m: Only plot if nargout == 0. Otherwise, return data. | |
5609 | |
6047 | 5610 2006-10-10 John W. Eaton <jwe@octave.org> |
5611 | |
5612 * miscellaneous/copyfile.m, miscellaneous/movefile.m: New functions. | |
5613 | |
6046 | 5614 2006-10-10 Bill Denney <denney@seas.upenn.edu> |
5615 | |
5616 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, | |
5617 audio/playaudio.m, audio/record.m, audio/saveaudio.m, | |
5618 audio/setaudio.m, audio/wavread.m, audio/wavwrite.m, | |
5619 control/base/__bodquist__.m, control/base/__freqresp__.m, | |
5620 control/base/are.m, control/base/bode.m, control/base/ctrb.m, | |
5621 control/base/damp.m, control/base/dare.m, control/base/dcgain.m, | |
5622 control/base/dre.m, control/base/impulse.m, control/base/lqg.m, | |
5623 control/base/lsim.m, control/base/lyap.m, control/base/nichols.m, | |
5624 control/base/nyquist.m, control/base/obsv.m, control/base/pzmap.m, | |
5625 control/base/rlocus.m, control/base/step.m, control/base/tzero.m, | |
5626 control/hinf/h2norm.m, control/hinf/h2syn.m, | |
5627 control/hinf/hinfnorm.m, control/hinf/hinfsyn.m, | |
5628 control/hinf/is_dgkf.m, control/hinf/wgt1o.m, | |
5629 control/obsolete/dezero.m, control/system/__sysdefioname__.m, | |
5630 control/system/buildssic.m, control/system/c2d.m, | |
5631 control/system/cellidx.m, control/system/d2c.m, | |
5632 control/system/dmr2d.m, control/system/fir2sys.m, | |
5633 control/system/is_abcd.m, control/system/is_controllable.m, | |
5634 control/system/is_detectable.m, control/system/is_digital.m, | |
5635 control/system/is_observable.m, control/system/is_siso.m, | |
5636 control/system/is_stabilizable.m, control/system/is_stable.m, | |
5637 control/system/jet707.m, control/system/listidx.m, | |
5638 control/system/ord2.m, control/system/parallel.m, | |
5639 control/system/ss.m, control/system/ss2zp.m, | |
5640 control/system/starp.m, control/system/sys2ss.m, | |
5641 control/system/sys2tf.m, control/system/sys2zp.m, | |
5642 control/system/sysadd.m, control/system/sysappend.m, | |
5643 control/system/syschtsam.m, control/system/sysconnect.m, | |
5644 control/system/syscont.m, control/system/sysdimensions.m, | |
5645 control/system/sysdisc.m, control/system/sysdup.m, | |
5646 control/system/sysgetsignals.m, control/system/sysgettsam.m, | |
5647 control/system/sysgroup.m, control/system/sysidx.m, | |
5648 control/system/sysmin.m, control/system/sysmult.m, | |
5649 control/system/sysout.m, control/system/sysprune.m, | |
5650 control/system/sysscale.m, control/system/syssetsignals.m, | |
5651 control/system/syssub.m, control/system/sysupdate.m, | |
5652 control/system/tf.m, control/system/tfout.m, | |
5653 control/system/ugain.m, control/system/zp.m, | |
5654 control/system/zpout.m, control/util/__outlist__.m, | |
5655 control/util/__zgpbal__.m, control/util/prompt.m, | |
5656 control/util/sortcom.m, control/util/strappend.m, | |
5657 deprecated/com2str.m, elfun/acot.m, elfun/acoth.m, elfun/acsc.m, | |
5658 elfun/acsch.m, elfun/asec.m, elfun/asech.m, elfun/cot.m, | |
5659 elfun/coth.m, elfun/csc.m, elfun/csch.m, elfun/lcm.m, elfun/sec.m, | |
5660 elfun/sech.m, finance/fv.m, finance/fvl.m, finance/irr.m, | |
5661 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, | |
5662 finance/pvl.m, finance/rate.m, finance/vol.m, | |
5663 general/__isequal__.m, general/bitcmp.m, general/bitget.m, | |
5664 general/bitset.m, general/blkdiag.m, general/cart2sph.m, | |
5665 general/cell2mat.m, general/circshift.m, general/cplxpair.m, | |
5666 general/cumtrapz.m, general/deal.m, general/diff.m, | |
5667 general/flipdim.m, general/fliplr.m, general/flipud.m, | |
5668 general/ind2sub.m, general/int2str.m, | |
5669 general/is_duplicate_entry.m, general/isdefinite.m, | |
5670 general/isequal.m, general/isequalwithequalnans.m, | |
5671 general/isscalar.m, general/issquare.m, general/issymmetric.m, | |
5672 general/isvector.m, general/logical.m, general/logspace.m, | |
5673 general/mod.m, general/nargchk.m, general/nextpow2.m, | |
5674 general/perror.m, general/postpad.m, general/prepad.m, | |
5675 general/randperm.m, general/rem.m, general/repmat.m, | |
5676 general/rot90.m, general/rotdim.m, general/shift.m, | |
5677 general/shiftdim.m, general/sph2cart.m, general/strerror.m, | |
5678 general/sub2ind.m, general/trapz.m, general/tril.m, | |
5679 general/triu.m, image/gray.m, image/gray2ind.m, image/hsv2rgb.m, | |
5680 image/image.m, image/imagesc.m, image/ind2gray.m, image/ind2rgb.m, | |
5681 image/loadimage.m, image/ntsc2rgb.m, image/ocean.m, | |
5682 image/rgb2hsv.m, image/rgb2ntsc.m, image/saveimage.m, io/beep.m, | |
5683 linear-algebra/commutation_matrix.m, linear-algebra/cond.m, | |
5684 linear-algebra/cross.m, linear-algebra/dmult.m, | |
5685 linear-algebra/dot.m, linear-algebra/duplication_matrix.m, | |
5686 linear-algebra/krylov.m, linear-algebra/krylovb.m, | |
5687 linear-algebra/logm.m, linear-algebra/norm.m, | |
5688 linear-algebra/null.m, linear-algebra/orth.m, | |
5689 linear-algebra/qzhess.m, linear-algebra/rank.m, | |
5690 linear-algebra/trace.m, linear-algebra/vec.m, | |
5691 linear-algebra/vech.m, miscellaneous/bincoeff.m, | |
5692 miscellaneous/delete.m, miscellaneous/dir.m, miscellaneous/dos.m, | |
5693 miscellaneous/fileattrib.m, miscellaneous/fileparts.m, | |
5694 miscellaneous/flops.m, miscellaneous/fullfile.m, | |
5695 miscellaneous/ispc.m, miscellaneous/isunix.m, | |
5696 miscellaneous/menu.m, miscellaneous/not.m, miscellaneous/popen2.m, | |
5697 miscellaneous/single.m, miscellaneous/unix.m, miscellaneous/ver.m, | |
5698 miscellaneous/xor.m, optimization/glpk.m, optimization/glpkmex.m, | |
5699 optimization/qp.m, optimization/sqp.m, plot/__axis_label__.m, | |
5700 plot/__errplot__.m, plot/__plr1__.m, plot/__plr2__.m, | |
5701 plot/__plr__.m, plot/__plt1__.m, plot/__plt2__.m, | |
5702 plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, | |
5703 plot/__plt2vm__.m, plot/__plt2vv__.m, plot/__pltopt1__.m, | |
5704 plot/__pltopt__.m, plot/bar.m, plot/bottom_title.m, plot/close.m, | |
5705 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/fplot.m, | |
5706 plot/grid.m, plot/hist.m, plot/hold.m, plot/ishold.m, | |
5707 plot/loglogerr.m, plot/mesh.m, plot/meshdom.m, plot/meshgrid.m, | |
5708 plot/multiplot.m, plot/orient.m, plot/polar.m, plot/replot.m, | |
5709 plot/semilogxerr.m, plot/semilogyerr.m, plot/sombrero.m, | |
5710 plot/stairs.m, plot/subplot.m, plot/subwindow.m, plot/title.m, | |
5711 plot/top_title.m, polynomial/compan.m, polynomial/conv.m, | |
5712 polynomial/deconv.m, polynomial/mkpp.m, polynomial/poly.m, | |
5713 polynomial/polyder.m, polynomial/polyderiv.m, | |
5714 polynomial/polyfit.m, polynomial/polygcd.m, | |
5715 polynomial/polyinteg.m, polynomial/polyout.m, | |
5716 polynomial/polyreduce.m, polynomial/polyval.m, | |
5717 polynomial/polyvalm.m, polynomial/ppval.m, polynomial/residue.m, | |
5718 polynomial/roots.m, polynomial/unmkpp.m, quaternion/quaternion.m, | |
5719 set/complement.m, set/create_set.m, set/intersect.m, | |
5720 set/ismember.m, set/setdiff.m, set/setxor.m, set/union.m, | |
5721 set/unique.m, signal/arch_fit.m, signal/arch_rnd.m, | |
5722 signal/arma_rnd.m, signal/autocor.m, signal/autoreg_matrix.m, | |
5723 signal/bartlett.m, signal/blackman.m, signal/detrend.m, | |
5724 signal/diffpara.m, signal/durbinlevinson.m, signal/fftconv.m, | |
5725 signal/fftfilt.m, signal/fftshift.m, signal/filter2.m, | |
5726 signal/freqz.m, signal/hamming.m, signal/hanning.m, | |
5727 signal/hurst.m, signal/ifftshift.m, signal/sinetone.m, | |
5728 signal/sinewave.m, signal/spencer.m, signal/stft.m, | |
5729 signal/synthesis.m, signal/unwrap.m, sparse/gplot.m, | |
5730 sparse/spfun.m, sparse/sprand.m, sparse/sprandn.m, | |
5731 sparse/sprandsym.m, sparse/spstats.m, specfun/beta.m, | |
5732 specfun/betai.m, specfun/betaln.m, specfun/erfinv.m, | |
5733 specfun/gammai.m, specfun/log2.m, specfun/pow2.m, | |
5734 special-matrix/hankel.m, special-matrix/hilb.m, | |
5735 special-matrix/invhilb.m, special-matrix/sylvester_matrix.m, | |
5736 special-matrix/toeplitz.m, special-matrix/vander.m, | |
5737 statistics/base/center.m, statistics/base/cloglog.m, | |
5738 statistics/base/cor.m, statistics/base/corrcoef.m, | |
5739 statistics/base/cov.m, statistics/base/cut.m, | |
5740 statistics/base/gls.m, statistics/base/iqr.m, | |
5741 statistics/base/kendall.m, statistics/base/kurtosis.m, | |
5742 statistics/base/logit.m, statistics/base/mahalanobis.m, | |
5743 statistics/base/mean.m, statistics/base/meansq.m, | |
5744 statistics/base/median.m, statistics/base/moment.m, | |
5745 statistics/base/ols.m, statistics/base/ppplot.m, | |
5746 statistics/base/probit.m, statistics/base/qqplot.m, | |
5747 statistics/base/range.m, statistics/base/ranks.m, | |
5748 statistics/base/run_count.m, statistics/base/skewness.m, | |
5749 statistics/base/spearman.m, statistics/base/statistics.m, | |
5750 statistics/base/std.m, statistics/base/studentize.m, | |
5751 statistics/base/table.m, statistics/base/values.m, | |
5752 statistics/base/var.m, statistics/distributions/betacdf.m, | |
5753 statistics/distributions/betainv.m, | |
5754 statistics/distributions/betapdf.m, | |
5755 statistics/distributions/betarnd.m, | |
5756 statistics/distributions/binocdf.m, | |
5757 statistics/distributions/binoinv.m, | |
5758 statistics/distributions/binopdf.m, | |
5759 statistics/distributions/binornd.m, | |
5760 statistics/distributions/cauchy_cdf.m, | |
5761 statistics/distributions/cauchy_inv.m, | |
5762 statistics/distributions/cauchy_pdf.m, | |
5763 statistics/distributions/cauchy_rnd.m, | |
5764 statistics/distributions/chi2cdf.m, | |
5765 statistics/distributions/chi2inv.m, | |
5766 statistics/distributions/chi2pdf.m, | |
5767 statistics/distributions/chi2rnd.m, | |
5768 statistics/distributions/discrete_cdf.m, | |
5769 statistics/distributions/discrete_inv.m, | |
5770 statistics/distributions/discrete_pdf.m, | |
5771 statistics/distributions/discrete_rnd.m, | |
5772 statistics/distributions/empirical_rnd.m, | |
5773 statistics/distributions/expcdf.m, | |
5774 statistics/distributions/expinv.m, | |
5775 statistics/distributions/exppdf.m, | |
5776 statistics/distributions/exprnd.m, | |
5777 statistics/distributions/fcdf.m, statistics/distributions/finv.m, | |
5778 statistics/distributions/fpdf.m, statistics/distributions/frnd.m, | |
5779 statistics/distributions/gamcdf.m, | |
5780 statistics/distributions/gaminv.m, | |
5781 statistics/distributions/gampdf.m, | |
5782 statistics/distributions/gamrnd.m, | |
5783 statistics/distributions/geocdf.m, | |
5784 statistics/distributions/geoinv.m, | |
5785 statistics/distributions/geopdf.m, | |
5786 statistics/distributions/geornd.m, | |
5787 statistics/distributions/hygecdf.m, | |
5788 statistics/distributions/hygeinv.m, | |
5789 statistics/distributions/hygepdf.m, | |
5790 statistics/distributions/hygernd.m, | |
5791 statistics/distributions/kolmogorov_smirnov_cdf.m, | |
5792 statistics/distributions/laplace_cdf.m, | |
5793 statistics/distributions/laplace_inv.m, | |
5794 statistics/distributions/laplace_pdf.m, | |
5795 statistics/distributions/laplace_rnd.m, | |
5796 statistics/distributions/logistic_cdf.m, | |
5797 statistics/distributions/logistic_inv.m, | |
5798 statistics/distributions/logistic_pdf.m, | |
5799 statistics/distributions/logistic_rnd.m, | |
5800 statistics/distributions/logncdf.m, | |
5801 statistics/distributions/logninv.m, | |
5802 statistics/distributions/lognpdf.m, | |
5803 statistics/distributions/lognrnd.m, | |
5804 statistics/distributions/normcdf.m, | |
5805 statistics/distributions/norminv.m, | |
5806 statistics/distributions/normpdf.m, | |
5807 statistics/distributions/normrnd.m, | |
5808 statistics/distributions/pascal_cdf.m, | |
5809 statistics/distributions/pascal_inv.m, | |
5810 statistics/distributions/pascal_pdf.m, | |
5811 statistics/distributions/pascal_rnd.m, | |
5812 statistics/distributions/poisscdf.m, | |
5813 statistics/distributions/poissinv.m, | |
5814 statistics/distributions/poisspdf.m, | |
5815 statistics/distributions/poissrnd.m, | |
5816 statistics/distributions/stdnormal_cdf.m, | |
5817 statistics/distributions/stdnormal_inv.m, | |
5818 statistics/distributions/stdnormal_pdf.m, | |
5819 statistics/distributions/stdnormal_rnd.m, | |
5820 statistics/distributions/tcdf.m, statistics/distributions/tinv.m, | |
5821 statistics/distributions/tpdf.m, statistics/distributions/trnd.m, | |
5822 statistics/distributions/unifcdf.m, | |
5823 statistics/distributions/unifinv.m, | |
5824 statistics/distributions/unifpdf.m, | |
5825 statistics/distributions/unifrnd.m, | |
5826 statistics/distributions/wblcdf.m, | |
5827 statistics/distributions/wblinv.m, | |
5828 statistics/distributions/wblpdf.m, | |
5829 statistics/distributions/wblrnd.m, | |
5830 statistics/distributions/wienrnd.m, statistics/tests/anova.m, | |
5831 statistics/tests/bartlett_test.m, | |
5832 statistics/tests/chisquare_test_homogeneity.m, | |
5833 statistics/tests/chisquare_test_independence.m, | |
5834 statistics/tests/cor_test.m, statistics/tests/f_test_regression.m, | |
5835 statistics/tests/hotelling_test.m, | |
5836 statistics/tests/hotelling_test_2.m, | |
5837 statistics/tests/kolmogorov_smirnov_test.m, | |
5838 statistics/tests/kolmogorov_smirnov_test_2.m, | |
5839 statistics/tests/kruskal_wallis_test.m, statistics/tests/manova.m, | |
5840 statistics/tests/mcnemar_test.m, statistics/tests/prop_test_2.m, | |
5841 statistics/tests/run_test.m, statistics/tests/sign_test.m, | |
5842 statistics/tests/t_test.m, statistics/tests/t_test_2.m, | |
5843 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, | |
5844 statistics/tests/var_test.m, statistics/tests/welch_test.m, | |
5845 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, | |
5846 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, | |
5847 strings/deblank.m, strings/dec2base.m, strings/dec2bin.m, | |
5848 strings/dec2hex.m, strings/findstr.m, strings/hex2dec.m, | |
5849 strings/index.m, strings/isletter.m, strings/lower.m, | |
5850 strings/rindex.m, strings/split.m, strings/str2mat.m, | |
5851 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, | |
5852 strings/strfind.m, strings/strjust.m, strings/strmatch.m, | |
5853 strings/strncmp.m, strings/strncmpi.m, strings/strrep.m, | |
5854 strings/strtrunc.m, strings/strvcat.m, strings/substr.m, | |
5855 strings/upper.m, testfun/assert.m, testfun/demo.m, | |
5856 testfun/example.m, testfun/fail.m, testfun/speed.m, | |
5857 testfun/test.m, time/asctime.m, time/calendar.m, time/ctime.m, | |
5858 time/datenum.m, time/datestr.m, time/datevec.m, time/eomday.m, | |
5859 time/etime.m, time/is_leap_year.m: | |
5860 Use print_usage instead of usage. | |
5861 | |
6044 | 5862 2006-10-09 David Bateman <dbateman@free.fr> |
5863 | |
5864 * time/datevec.m: Add additional compatible default parsing strings. | |
5865 | |
6395 | 5866 2006-10-09 Bill Denney <denney@seas.upenn.edu> |
6041 | 5867 |
6042 | 5868 * pkg/pkg.m: Remove trailing "\n" from error messages. |
5869 Remove compare_versions subfunction. | |
5870 | |
5871 * miscellaneous/compare_versions.m: New function to compare | |
5872 version numbers as strings with any boolean operators. | |
5873 | |
6041 | 5874 * miscellaneous/untar.m: Check more rigorously to see if the tar |
5875 file exists. | |
5876 | |
6036 | 5877 2006-10-04 John W. Eaton <jwe@octave.org> |
5878 | |
5879 * pkg/pkg.m: Use fullfile to concatenate directory and file names. | |
5880 | |
6032 | 5881 2006-10-04 S�ren Hauberg <soren@hauberg.org> |
5882 | |
6037 | 5883 * pkg/pkg.m: Update docs. Handle prefix option. |
5884 Handle dependencies for load option. | |
6032 | 5885 |
6029 | 5886 2006-10-04 John W. Eaton <jwe@octave.org> |
5887 | |
6030 | 5888 * deprecated/clearplot.m, deprecated/clg.m: New functions. |
5889 | |
5890 * plot/clg.m: Delete. | |
5891 * plot/__init_plot_vars__.m: New function. | |
5892 * plot/__setup_plot__.m: Use __init_plot_vars__. | |
6029 | 5893 |
6025 | 5894 2006-10-03 S�ren Hauberg <soren@hauberg.org> |
5895 | |
5896 * pkg/pkg.m: Avoid calling addpath with no args. | |
5897 | |
6024 | 5898 2006-10-03 Bill Denney <denney@seas.upenn.edu> |
5899 | |
5900 * audio/loadaudio.m, control/base/nyquist.m, | |
5901 control/system/__zp2ssg2__.m, linear-algebra/cross.m, | |
5902 linear-algebra/krylov.m, statistics/base/center.m, | |
5903 statistics/base/median.m, statistics/base/std.m, | |
5904 statistics/base/var.m, testfun/test.m: Use the new find syntax to | |
5905 find first or last element matching a condition. | |
5906 | |
6023 | 5907 2006-10-02 Bill Denney <denney@seas.upenn.edu> |
5908 | |
5909 * strings/deblank.m, strings/upper.m, strings/lower.m, | |
5910 general/__isequal__.m: Minimize looping using cellfun. | |
5911 | |
6020 | 5912 2006-10-02 David Bateman <dbateman@free.fr> |
5913 | |
5914 * pkg/pkg.m (copy_files): always create installation directory. | |
5915 | |
6016 | 5916 2006-10-02 Thomas Weber <thomas.weber.mail@gmail.com> |
5917 | |
5918 * miscellaneous/doc.m: Swap file and directory args to info. | |
5919 | |
5920 2006-10-01 Arno Onken <whyly@gmx.net> | |
5921 | |
5922 * statistics/distributions/exprnd.m: Fix typo. | |
5923 | |
6014 | 5924 2006-09-30 Benjamin Lindner <lindnerben@gmx.net> |
5925 | |
5926 * polynomial/ppval.m: Use .' instead of '. | |
5927 * polynomial/spline.m: Likewise. New tests. | |
5928 | |
6004 | 5929 2006-09-26 David Bateman <dbateman@free.fr> |
5930 | |
5931 * __plt3__.m: Using global variables __plot_data__, | |
5932 __plot_data_offset__ and __plot_command__ to store plots and | |
5933 correctly handle multiplots, and hold state. Only accept a single | |
5934 data parameter plus, using, format and with strings. Remove | |
5935 setting of gnuplot parameters. | |
5936 * __make_using_clause__.m: New function extracted from __plt__.m. | |
5937 * __setup_plot__.m: Convert to a function and pass the plotting | |
5938 command to use. | |
5939 * __plt__.m: Change call to __setup_plot__ and __make_using_clause__. | |
5940 * contour.m: Use unwind protect on the parametric state of plot | |
5941 and __plt3__ instead of calling __gnuplot_splot__ directly. | |
5942 * mesh.m: ditto. | |
5943 * plot3.m: Error checking, setting of parametric state and | |
5944 formation of matrix to plot moved from old __plt3__. | |
5945 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5946 2006-09-22 Michael Creel <michael.creel@uab.es> |
5996 | 5947 |
5997 | 5948 * deprecated/chisquare_pdf.m: Typo in documentation. |
5996 | 5949 |
5950 2006-09-22 S�ren Hauberg <soren@hauberg.org> | |
5951 | |
5952 * signal/filter2.m: Correct texinfo doc. | |
5953 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5954 2006-09-22 David Bateman <dbateman@free.fr> |
5996 | 5955 |
5956 * miscellaneous/parseparams.m: Correct texinfo doc. | |
5957 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5958 2006-09-15 David Bateman <dbateman@free.fr> |
5993 | 5959 |
5960 * pkg/pkg.m (prepare_installation): Don't create package | |
5961 installation directory here. | |
5962 (copy_files): Create it here instead, to avoid issues with | |
5963 upgrades. Also install the COPYING file in packinfo. | |
5964 | |
5989 | 5965 2006-09-13 John W. Eaton <jwe@octave.org> |
5966 | |
5967 * general/blkdiag.m: Adjust to new cellfun rules. | |
5968 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5969 2006-08-30 David Bateman <dbateman@free.fr> |
5987 | 5970 |
5971 * pkg/pkg.m (install): Disallow bundles of packages. More verbose | |
5972 error message for archive name not matching package name. | |
5973 (installed_packages): Size header of printed results to | |
5974 arguments. Sort the list of installed packages before printing | |
5975 them. | |
5976 | |
5986 | 5977 2006-09-11 Paul Kienzle <pkienzle@users.sf.net> |
5978 | |
5979 * signal/freqz.m: Update tests. | |
5980 | |
5981 2006-09-11 Ken Kouno <kouno@mk.ecei.tohoku.ac.jp> | |
5982 | |
5983 * signal/freqz.m: Corretly postpad arrays. | |
5984 Don't call fliplr on a column vector. | |
5985 | |
5984 | 5986 2006-09-11 Luis F. Ortiz <lortiz@interactivesupercomputing.com> |
5987 | |
5988 * general/shiftdim.m: Use permute instead of reshape. | |
5989 | |
5981 | 5990 2006-09-05 Alexander Barth <abarth93@users.sourceforge.net> |
5991 | |
5992 * miscellaneous/parseparams.m: New function. | |
5993 | |
5980 | 5994 2006-09-05 Rafael Laboissiere <rafael@debian.org> |
5995 | |
5996 * miscellaneous/doc.m: Swap order of --file and --directory | |
5997 options for info program invocation. | |
5998 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5999 2006-08-30 David Bateman <dbateman@free.fr> |
5976 | 6000 |
5987 | 6001 * pkg/pkg.m (create_pkgadddel): Resolve variable name-clash from |
5976 | 6002 previous change. |
6003 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6004 2006-08-26 David Bateman <dbateman@free.fr> |
5974 | 6005 |
6006 * pkg/pkg.m (install, uninstall, installed_packages): Allow for | |
6007 absence of trailing "/" in OCTAVE_HOME. | |
6008 | |
5973 | 6009 2006-08-25 Alexander Barth <abarth@marine.usf.edu> |
6010 | |
6011 * time/datenum.m: Allow arg to be character string. | |
6012 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6013 2006-08-25 David Bateman <dbateman@free.fr> |
5971 | 6014 |
6015 * pkg/pkg.m (install): Verify that package name correponds to the | |
6016 archive name. Treat both PKG_ADD and PKG_DEL and remove them if | |
6017 they are empty. If package directory is empty, remove it to fail | |
6018 gracefully for system specific packages. | |
6019 (extract_pkgadd, create_pkgadd): delete. | |
6020 (extract_pkg, create_pkg): Generalized versions of deleted functions | |
6021 (copy_files): Install both bin/ and doc/ directories, adding the | |
6022 bin/ to the EXEC_PATH when the package is loaded. | |
6023 | |
5962 | 6024 2006-08-24 John W. Eaton <jwe@octave.org> |
6025 | |
6026 * image/saveimage.m: Use logical indexing instead of | |
6027 indices computed by calling find on the logical index. | |
6028 | |
5961 | 6029 2006-08-24 S�ren Hauberg <soren@hauberg.org> |
6030 | |
5967 | 6031 * miscellaneous/bincoeff.m, specfun/factorial.m: |
5963 | 6032 Use logical indexing instead of indices computed by calling find |
6033 on the logical index. | |
6034 | |
6035 * linear-algebra/krylov.m: Delete unused local var nzidx. | |
5961 | 6036 |
5959 | 6037 2006-08-23 Quentin Spencer <qspencer@ieee.org> |
6038 | |
6039 * control/system/tf2zp.m: Simplify gain calculation. | |
6040 | |
5958 | 6041 2006-08-23 John W. Eaton <jwe@octave.org> |
6042 | |
6043 * plot/__plt__.m: Insert using clauses for all plots. | |
6044 | |
5957 | 6045 2006-08-23 A S Hodel <hodelas@auburn.edu> |
6046 | |
6047 * control/system/sysscale.m: Call tf and zp with correct number of | |
6048 args. | |
6049 | |
5955 | 6050 2006-08-22 David Bateman <dbateman@free.fr> |
6051 | |
6052 * pkg/pkg.m (extract_pkgadd, create_pkgadd): New functions to | |
6053 Search inst/*.m and src/*.m files in the package for | |
6054 PKG_ADD directives and append user supplied PKG_ADD. | |
6055 (pkg): Call create_pkgadd after copying files. | |
6056 | |
5947 | 6057 2006-08-21 S�ren Hauberg <soren@hauberg.org> |
6058 | |
6059 * pkg/pkg.m: Handle multiple packages in a single file. | |
6060 Insert directory separator between OCTAVE_HOME and rest of package | |
6061 installation directory. | |
6062 | |
6063 2006-08-21 John W. Eaton <jwe@octave.org> | |
6064 | |
6065 * general/num2str.m: Early return if arg is empty. | |
6066 From Thomas Treichl <Thomas.Treichl@gmx.net>. | |
6067 | |
5946 | 6068 2006-08-21 David Bateman <dbateman@free.fr> |
6069 | |
6070 * strings/mat2str.m: Compute NC before using. | |
6071 | |
5937 | 6072 2006-08-17 John W. Eaton <jwe@octave.org> |
6073 | |
6074 * audio/wavread.m: Fix calculation of sample count. | |
6075 | |
5934 | 6076 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
6077 | |
6078 * image/imshow.m: New Matlab-compatible version. | |
6079 | |
5930 | 6080 2006-08-15 John W. Eaton <jwe@octave.org> |
6081 | |
6082 * deprecated/is_global.m: Delete. | |
6083 | |
5928 | 6084 2006-08-14 John W. Eaton <jwe@octave.org> |
6085 | |
6086 * pkg/Makefile.in (script_sub_dir): Change from plot to pkg. | |
6087 | |
5926 | 6088 2006-08-14 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
6089 | |
6090 * sparse/spy.m, control/base/bode.m, control/base/__stepimp__.m, | |
6091 signal/freqz_plot.m: Adapt to new automatic_replot definition. | |
6092 | |
5928 | 6093 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
6094 | |
6778 | 6095 * pkg/pkg.m: Don't pass function name to print_usage. |
5928 | 6096 Use addpath and rmpath instead of manipulating LOADPATH. |
6097 Handle changes to system function. | |
6098 (rm_rf): New subfunction. Use it to avoid confirmation dialog for | |
6099 recursive directory removal. | |
5922 | 6100 |
5924 | 6101 * strings/bin2dec.m: Ignore spaces in input for compatibility. |
6102 | |
6778 | 6103 * colormap.m: Change global variable to persistent. |
5923 | 6104 |
5922 | 6105 * rgb2ind.m: Handle single 3-d array as rgb image. |
6106 | |
5920 | 6107 2006-08-14 John W. Eaton <jwe@octave.org> |
6108 | |
6109 * strings/str2double.m: Fix missing semicolon. | |
6110 | |
5910 | 6111 2006-07-27 Jim Peterson <jpeterson@annapmicro.com> |
6112 | |
6113 * plot/plot3.m: Accept one complex or one real and one complex | |
6114 argument and plot real and imaginary components for y and z. | |
6115 | |
5908 | 6116 2006-07-27 John W. Eaton <jwe@octave.org> |
6117 | |
6118 * testfun/test.m: Call fflush after each block of calls to | |
6119 fprintf, fputs, or fdisp. | |
6120 | |
5904 | 6121 2006-07-26 John W. Eaton <jwe@octave.org> |
6122 | |
6123 * miscellaneous/mex.m: New function. | |
6124 | |
5901 | 6125 2006-07-22 John W. Eaton <jwe@octave.org> |
6126 | |
6127 * special-matrix/hadamard.m: Coerce bool matrix to double. | |
6128 | |
5881 | 6129 2006-07-07 John W. Eaton <jwe@octave.org> |
6130 | |
6131 * miscellaneous/orderfields.m: New file. | |
6132 | |
5873 | 6133 2006-06-30 John W. Eaton <jwe@octave.org> |
6134 | |
6135 * time/datevec.m: Make another attempt to account for precision of | |
6136 datenum format. | |
6137 | |
5868 | 6138 2006-06-29 John W. Eaton <jwe@octave.org> |
6139 | |
6140 * miscellaneous/dump_prefs.m: Remove obsolete symbols from the list. | |
6141 Use feval instead of "type -q" to get values now that all the | |
6142 symbols are functions. | |
6143 | |
5860 | 6144 2006-06-16 John W. Eaton <jwe@octave.org> |
6145 | |
6146 * time/datevec.m: Avoid computing log of non-positive values. | |
6147 | |
5859 | 6148 2006-06-14 John W. Eaton <jwe@octave.org> |
6149 | |
6150 * time/datevec.m: Attempt to account for precision of datenum format. | |
6151 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6152 2006-06-01 Quentin H. Spencer <qspencer@ieee.org> |
5839 | 6153 |
6154 * audio/wavread.m: Fix file range error and add read support for | |
6155 24-bit WAV files. | |
6156 | |
5837 | 6157 2006-06-01 David Bateman <dbateman@free.fr> |
6158 | |
6159 * general/interpft.m, general/quadl.m, general/polyarea.m, | |
6160 general/interp1.m, general/gradient.m, general/interp2.m, | |
6161 general/bicubic.m, miscellaneous/inputname.m, plot/__plt3__.m, | |
6162 plot/ndgrid.m, plot/plot3.m, polynomial/pchip.m, sparse/pcg.m, | |
6163 sparse/pcr.m, strings/mat2str.m: New files from Octave Forge. | |
6164 | |
5835 | 6165 2006-05-31 Bill Denney <bill@givebillmoney.com> |
6166 | |
6167 * miscellaneous/fileparts.m, miscellaneous/fullfile.m: Add seealso. | |
6168 * miscellaneous/texas_lotto.m: Fix warning message. | |
6169 | |
5830 | 6170 2006-05-26 John W. Eaton <jwe@octave.org> |
6171 | |
6172 * miscellaneous/doc.m: Also handle nargin == 0. | |
6173 | |
5829 | 6174 2006-05-23 John W. Eaton <jwe@octave.org> |
6175 | |
6176 * plot/mesh.m: Use __gnupot_raw__ except where __gnuplot_set__ is | |
6177 really needed. | |
6178 | |
5827 | 6179 2006-05-22 John W. Eaton <jwe@octave.org> |
6180 | |
6754 | 6181 * general/lookup.m: New file from Octave Forge. |
5827 | 6182 |
6183 2006-05-22 David Bateman <dbateman@free.fr> | |
6184 | |
6754 | 6185 * general/nthroot.m, linear-algebra/rref.m, specfun/isprime.m, |
6186 specfun/primes.m, specfun/factor.m, specfun/nchoosek.m, | |
6187 specfun/legendre.m, specfun/perms.m, special-matrix/rosser.m, | |
6188 special-matrix/wilkinson.m, special-matrix/pascal.m, | |
6189 special-matrix/magic.m, special-matrix/hadamard.m, | |
6190 strings/strtok.m: New files from Octave Forge. | |
5827 | 6191 |
5824 | 6192 2006-05-19 David Bateman <dbateman@free.fr> |
6193 | |
6194 * polynomial/unmkpp.m, polynomial/mkpp.m, polynomial/spline.m, | |
5825 | 6195 polynomial/ppval.m, set/setxor.m: New files from Octave Forge. |
5824 | 6196 |
5821 | 6197 2006-05-17 John W. Eaton <jwe@octave.org> |
6198 | |
6199 * set/intersection.m: Delete | |
6200 * deprecated/intersection.m: New file. | |
6201 | |
5820 | 6202 2006-05-17 David Bateman <dbateman@free.fr> |
6203 | |
6204 * general/cplxpair.m, general/trapz.m, general/cumtrapz.m, | |
6205 general/isdir.m, miscellaneous/dos.m, miscellaneous/getfield.m, | |
6206 miscellaneous/setfield.m, plot/fplot.m, set/intersect.m, | |
6207 signal/ifftshift.m, signal/filter2.m, specfun/betaln.m, | |
6208 specfun/factorial.m, strings/strvcat.m: New files from Octave | |
6209 Forge. | |
6210 | |
5809 | 6211 2006-05-11 John W. Eaton <jwe@octave.org> |
6212 | |
5815 | 6213 * path/path.m: Delete (now a built-in function). |
6214 | |
5811 | 6215 * pkg/Makefile.in: New file. |
6216 * configure.in (AC_CONFIG_FILES): Add pkg/Makefile to the list. | |
5812 | 6217 * Makefile.in (SUBDIRS): Add pkg to the list. |
5809 | 6218 |
5808 | 6219 2006-05-10 John W. Eaton <jwe@octave.org> |
6220 | |
6221 * tar.m, untar.m, unzip.m: Adapt to Octave coding style. | |
6222 * tar.m, untar.m: Only tar; don't compress or uncompress. | |
6223 | |
8149 | 6224 2006-05-10 S�ren Hauberg <hauberg@gmail.com> |
5807 | 6225 |
6226 * tar.m, untar.m, unzip.m: New files. | |
6227 | |
5801 | 6228 2006-05-10 John W. Eaton <jwe@octave.org> |
6229 | |
5804 | 6230 * path/addpath.m, path/rmpath.m: Improve compatibility. |
6231 * path/setpath.m: Delete. | |
6232 | |
5801 | 6233 * pkg/pkg.m: New file. |
6234 | |
5798 | 6235 2006-05-09 Keith Goodman <kwgoodman@gmail.com> |
6236 | |
6237 * plot/plot.m: Doc string fix. | |
6238 | |
6239 2006-05-09 Paul Kienzle <pkienzle@users.sf.net> | |
6240 | |
6241 * testfun/speeed.m: Use new interface to unique and assert. | |
6242 Improve documentation. Approximate time complexity from log-log | |
6243 plot. Return time complexity and raw times if requested. The | |
6244 mean ratio is no longer returned. Provide complete control over | |
6245 which n are computed. | |
6246 | |
6247 2006-05-09 John W. Eaton <jwe@octave.org> | |
6248 | |
6249 * path/path.m: Move here from miscellaneous. | |
6250 Adapt to new LOADPATH definition. | |
6251 | |
5789 | 6252 2006-05-03 David Bateman <dbateman@free.fr> |
6253 | |
6254 * path/rmpath.m, path/addpath.m, miscellaneous/path.m: Replace all | |
6255 explicit uses of a path seperation character with pathsep(). | |
6256 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6257 2006-05-03 Bob Weigel <rweigel@gmu.edu> |
5786 | 6258 |
6778 | 6259 * set/setdiff.m: New arg, byrows. New tests. |
5786 | 6260 |
5781 | 6261 2006-04-29 John W. Eaton <jwe@octave.org> |
6262 | |
6263 * startup/main-rcfile: Disable some warnings. | |
6264 | |
5762 | 6265 2006-04-14 Bill Denney <denney@seas.upenn.edu> |
6266 | |
6267 * strings/strcmpi.m: Return false instead of error if args are not | |
6268 char or cellstr. | |
6269 | |
5750 | 6270 2006-04-10 John W. Eaton <jwe@octave.org> |
6271 | |
6272 * miscellaneous/dir.m: Ensure that returned structure array is | |
6273 Nx1, not 1xN. | |
6274 | |
5746 | 6275 2006-04-06 Olli Saarela <olli.saarela@kcl.fi> |
6276 | |
6277 * plot/hist.m: Ignore NaN in inputs. | |
6278 | |
5745 | 6279 2006-04-06 Keith Goodman <kwgoodman@gmail.com> |
6280 | |
6281 * miscellaneous/mkoctfile.m: Doc string fix. | |
6282 | |
5741 | 6283 2006-04-05 John W. Eaton <jwe@octave.org> |
6284 | |
6285 * plot/__plt2__.m: Return data = [] and fmtstr = "" if x1 and x2 | |
6286 are both empty. | |
6287 * plot/__plt__.m: Ignore empty data and format strings returned | |
6288 from __plt1__ or __plt2__. | |
6289 | |
5737 | 6290 2006-04-04 Bob Weigel <rweigel@gmu.edu> |
6291 | |
6778 | 6292 * set/unique.m: Properly handle single column input when |
5737 | 6293 "rows" is specified. |
6294 | |
5732 | 6295 2006-04-04 John W. Eaton <jwe@octave.org> |
6296 | |
5736 | 6297 * path/setpath.m: New file. |
6298 * path/savepath.m: Use setpath to set path instead of assigning | |
6299 directly to LOADPATH. | |
6300 | |
5732 | 6301 * path/Makefile.in, path/addpath.m, path/rmpath.m, path/savepath.m: |
6302 New files, adapted from Octave Forge by Keith Goodman | |
6303 <kwgoodman@gmail.com>. | |
6304 * path: New directory. | |
6305 * Makefile.in (SUBDIRS): Add it to the list. | |
6306 * configure.in (AC_CONFIG_FILES): Include path/Makefile here. | |
6307 | |
5731 | 6308 2006-04-02 David Bateman <dbateman@free.fr> |
6309 | |
6310 * general/tril.m, general.triu.m: | |
6311 Use resize (resize (x, 0), nr, nc) rather than zeros (nr, nc) | |
6312 to allow user types to work correctly. | |
6313 * special-matrix/hankel.m, special-matrix/toeplitz.m: Ditto. | |
6314 | |
5727 | 6315 2006-04-03 David Bateman <dbateman@free.fr> |
6316 | |
6317 * plot/grid.m: Cache the state of the grid to allow toggling. | |
6318 Accept keyword "minor" for minor grid. | |
6319 | |
5721 | 6320 2006-03-28 John W. Eaton <jwe@octave.org> |
6321 | |
6322 * general/isscalar.m: Only require that all dimensions are 1 for | |
6323 compatiblity. | |
6324 | |
6325 2006-03-28 Bill Denney <bill@givebillmoney.com> | |
6326 | |
6327 * general/isvector.m: Allow non-numeric objects to be vectors for | |
6328 compatibility. | |
6329 | |
5720 | 6330 2006-03-28 Keith Goodman <kwgoodman@gmail.com> |
6331 | |
6332 * plot/__errplot__.m: Doc string fix. | |
6333 | |
6334 * miscellaneous/doc.m: Mark as command. | |
6335 | |
6336 * general/isequal.m, general/__isequal__.m, general/cell2mat.m, | |
6337 general/isequalwithequalnans.m, general/blkdiag.m, | |
6338 strings/strfind.m, miscellaneous/doc.m: Update FSF address. | |
6339 | |
5717 | 6340 2006-03-27 Don Bindner <dbindner@truman.edu> |
6341 | |
6342 * plot/meshgrid.m: If nargout == 3 and vectors are supplied, | |
6343 return 3d matrices. | |
6344 | |
6345 2006-03-27 Keith Goodman <kwgoodman@gmail.com> | |
6346 | |
6347 * time/toc.m: Don't print "Elapsed time..." if tic has not been set. | |
6348 | |
5708 | 6349 2006-03-22 John W. Eaton <jwe@octave.org> |
6350 | |
6351 * plot/print.m: Don't replot after popping terminal setting. | |
6352 | |
5696 | 6353 2006-03-20 John W. Eaton <jwe@octave.org> |
6354 | |
6355 * miscellaneous/mkoctfile.m: Use version-specific name of | |
6356 mkoctfile. Use fullfile to construct file name. | |
6357 | |
5695 | 6358 2006-03-20 Keith Goodman <kwgoodman@gmail.com> |
6359 | |
6360 * miscellaneous/mkoctfile.m: Make it possible to call mkoctfile | |
6361 shell script from Octave prompt. | |
6362 | |
5690 | 6363 2006-03-17 John W. Eaton <jwe@octave.org> |
6364 | |
5693 | 6365 * deprecated/weibcdf.m, deprecated/weibinv.m, |
6366 deprecated/weibpdf.m, deprecated/weibrnd.m: New functions. | |
6367 | |
6368 * deprecated/weibull_cdf.m, deprecated/weibull_inv.m, | |
6369 deprecated/weibull_pdf.m, deprecated/weibull_rnd.m: | |
6370 Call new wbl functions to do the real work. | |
6371 Swap args and provide default values as necessary to preserve | |
6372 compatibility with old version of Octave. | |
6373 | |
6374 * statistics/distributions/wblcdf.m: Rename from weibcdf.m. | |
6375 statistics/distributions/wblinv.m: Rename from weibinv.m. | |
6376 statistics/distributions/wblpdf.m: Rename from weibpdf.m. | |
6377 statistics/distributions/wblrnd.m: Rename from weibrnd.m. | |
6378 Swap scale and shape args for compatibility. | |
6379 | |
5692 | 6380 * deprecated/lognormal_cdf.m, deprecated/lognormal_inv.m, |
6381 deprecated/lognormal_pdf.m, deprecated/lognormal_rnd.m: | |
6382 Preserve compatibility with old versions of Octave given new | |
6383 definitions of logncdf, logninv, lognpdf, and lognrnd. | |
5693 | 6384 |
5692 | 6385 * statistics/distributions/logncdf.m, |
6386 statistics/distributions/logninv.m, | |
6387 statistics/distributions/lognpdf.m, | |
6388 statistics/distributions/lognrnd.m: Compatibility fixes. | |
6389 From Ben Barrowes <barrowes@alum.mit.edu> | |
6390 | |
5691 | 6391 * deprecated/hypergeometric_rnd.m: Update interface to match |
6392 current 2.1.x version. | |
6393 | |
6394 * deprecated/t_rnd.m: Call trnd, not t_rnd. | |
6395 | |
5690 | 6396 * miscellaneous/dir.m: Use readdir instead of glob. |
6397 Special case for "." to avoid globbing. Use list_in_columns. | |
6398 Eliminate unused variables len and finfo. | |
6399 | |
5689 | 6400 2006-03-16 Bill Denney <bill@givebillmoney.com> |
6401 | |
6402 * miscellaneous/dir.m: Improve compatibility. | |
6403 | |
5687 | 6404 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6405 | |
6406 * time/calendar.m, time/datestr.m, time/datevec.m, time/eomday.m, | |
6407 time/now.m, time/weekday.m: New functions from Octave Forge. | |
6408 | |
5686 | 6409 2006-03-16 John W. Eaton <jwe@octave.org> |
6410 | |
6411 * control/base/bode_bounds.m: Check for iip and iiz empty instead | |
6412 of looking at sum of max dimensions. | |
6413 | |
5681 | 6414 2006-03-16 David Bateman <dbateman@free.fr> |
6415 | |
6416 * testfun/test.m: Clear last warning before warning test to avoid | |
6417 issues with previously set warnings. | |
6418 * build_sparse_test.sh: Tests for multiple RHS for rectanguar | |
6419 sparse matrices. Force matrix type from spqr solution to be | |
6420 singular to force QR solvers to be used for assert. | |
6421 | |
5678 | 6422 2006-03-16 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6423 | |
6424 * strings/strfind.m: New file. | |
6425 | |
5677 | 6426 2006-03-16 John W. Eaton <jwe@octave.org> |
6427 | |
6428 * general/rows.m, general/columns.m: Delete. | |
6429 | |
5674 | 6430 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6431 | |
6432 * strings/strcmpi.m: Simplify. | |
6433 * strings/strncmpi.m: Import from octave-forge, simplify. | |
5678 | 6434 * strings/strtrunc.m: New file. |
5674 | 6435 |
5676 | 6436 * strings/lower.m, strings/upper.m: Handle cellstr arguments. |
6437 | |
5672 | 6438 2006-03-15 John W. Eaton <jwe@octave.org> |
6439 | |
6440 * miscellaneous/doc.m: New file. | |
8149 | 6441 From S�ren Hauberg <soren@hauberg.org>. |
5672 | 6442 |
5671 | 6443 2006-03-15 Keith Goodman <kwgoodman@gmail.com> |
6444 | |
6445 * miscellaneous/mkoctfile.m: New file. | |
6446 | |
5670 | 6447 2006-03-15 John W. Eaton <jwe@octave.org> |
6448 | |
6449 * polynomial/residue.m: Use & instead of && to generate arg for find. | |
6450 | |
5666 | 6451 2006-03-14 Keith Goodman <kwgoodman@gmail.com> |
6452 | |
6453 * strings/bin2dec.m: Doc fix. | |
6454 | |
5661 | 6455 2006-03-10 Paul Kienzle <pkienzle@users.sf.net> |
6456 | |
6457 * time/etime.m: Use datenum to support times spanning year boundaries. | |
6458 * time/datenum.m: New function to compute day number from time. | |
6459 | |
5659 | 6460 2006-03-09 John W. Eaton <jwe@octave.org> |
6461 | |
6462 * miscellaneous/unix.m, plot/print.m: | |
6463 Swap order of outputs from system. | |
6464 | |
5642 | 6465 2006-03-06 Keith Goodman <kwgoodman@gmail.com> |
6466 | |
6467 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, | |
6468 audio/playaudio.m, audio/record.m, audio/saveaudio.m, | |
6469 audio/wavread.m, audio/wavwrite.m, control/base/DEMOcontrol.m, | |
6470 control/base/__stepimp__.m, control/base/are.m, | |
6471 control/base/controldemo.m, control/base/damp.m, | |
6472 control/base/dare.m, control/base/impulse.m, control/base/lqg.m, | |
6473 control/base/step.m, control/system/abcddim.m, | |
6474 control/system/is_abcd.m, control/system/is_controllable.m, | |
6475 control/system/is_detectable.m, control/system/is_observable.m, | |
6476 control/system/is_stabilizable.m, control/system/is_stable.m, | |
6477 control/system/jet707.m, control/system/sys2fir.m, | |
6478 control/system/sysdimensions.m, control/system/sysupdate.m, | |
6479 control/system/tfout.m, control/system/ugain.m, | |
6480 control/system/zpout.m, elfun/lcm.m, finance/irr.m, | |
6481 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, | |
6482 finance/rate.m, general/__isequal__.m, general/bitcmp.m, | |
6483 general/bitget.m, general/bitset.m, general/blkdiag.m, | |
6484 general/cart2pol.m, general/cart2sph.m, general/cell2mat.m, | |
6485 general/circshift.m, general/columns.m, general/flipdim.m, | |
6486 general/fliplr.m, general/flipud.m, general/ind2sub.m, | |
6487 general/int2str.m, general/isdefinite.m, general/isequal.m, | |
6488 general/isequalwithequalnans.m, general/isscalar.m, | |
6489 general/issquare.m, general/issymmetric.m, general/isvector.m, | |
6490 general/logspace.m, general/mod.m, general/nextpow2.m, | |
6491 general/num2str.m, general/perror.m, general/pol2cart.m, | |
6492 general/rem.m, general/rot90.m, general/rotdim.m, general/rows.m, | |
6493 general/shiftdim.m, general/sph2cart.m, general/sub2ind.m, | |
6494 general/tril.m, image/hsv2rgb.m, image/image.m, image/imagesc.m, | |
6495 image/imshow.m, image/ind2gray.m, image/ind2rgb.m, | |
6496 image/loadimage.m, image/rgb2hsv.m, image/rgb2ind.m, | |
6497 image/saveimage.m, io/beep.m, linear-algebra/cond.m, | |
6498 linear-algebra/norm.m, miscellaneous/comma.m, miscellaneous/dir.m, | |
6499 miscellaneous/license.m, miscellaneous/menu.m, | |
6500 miscellaneous/semicolon.m, miscellaneous/texas_lotto.m, | |
6501 miscellaneous/unix.m, miscellaneous/ver.m, optimization/sqp.m, | |
6502 plot/__errcomm__.m, plot/__errplot__.m, plot/__pltopt1__.m, | |
6503 plot/__pltopt__.m, plot/bar.m, plot/contour.m, plot/errorbar.m, | |
6504 plot/grid.m, plot/hist.m, plot/loglog.m, plot/loglogerr.m, | |
6505 plot/mesh.m, plot/meshgrid.m, plot/plot.m, plot/polar.m, | |
6506 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, | |
6507 plot/semilogyerr.m, plot/shg.m, plot/stairs.m, plot/title.m, | |
6508 plot/xlabel.m, polynomial/compan.m, polynomial/conv.m, | |
6509 polynomial/deconv.m, polynomial/polyderiv.m, polynomial/polygcd.m, | |
6510 polynomial/polyinteg.m, polynomial/polyout.m, | |
6511 polynomial/polyreduce.m, polynomial/polyval.m, | |
6512 polynomial/polyvalm.m, polynomial/residue.m, set/complement.m, | |
6513 set/create_set.m, set/intersection.m, set/ismember.m, | |
6514 set/setdiff.m, set/union.m, set/unique.m, sparse/etreeplot.m, | |
6515 sparse/gplot.m, sparse/spalloc.m, sparse/sphcat.m, | |
6516 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, | |
6517 sparse/spvcat.m, sparse/treeplot.m, specfun/erfinv.m, | |
6518 specfun/log2.m, specfun/pow2.m, special-matrix/hankel.m, | |
6519 special-matrix/hilb.m, special-matrix/invhilb.m, | |
6520 special-matrix/sylvester_matrix.m, special-matrix/toeplitz.m, | |
6521 special-matrix/vander.m, statistics/base/median.m, | |
6522 statistics/base/std.m, statistics/distributions/gamcdf.m, | |
6523 statistics/distributions/gaminv.m, | |
6524 statistics/distributions/gampdf.m, | |
6525 statistics/distributions/gamrnd.m, strings/base2dec.m, | |
6526 strings/bin2dec.m, strings/dec2base.m, strings/dec2bin.m, | |
6527 strings/dec2hex.m, strings/hex2dec.m, strings/isletter.m, | |
6528 strings/lower.m, strings/upper.m, testfun/assert.m, | |
6529 testfun/demo.m, testfun/example.m, testfun/test.m, time/etime.m: | |
6530 Move @seealso inside @defXXX macro. Remove "and" from @seealso. | |
6531 | |
5633 | 6532 2006-02-27 John W. Eaton <jwe@octave.org> |
6533 | |
6534 * time/tic.m: Move here from miscellaneous/tic.m. | |
6535 * time/toc.m: Move here from miscellaneous/toc.m. | |
6536 | |
6537 2006-02-26 Keith Goodman <kwgoodman@gmail.com> | |
6538 | |
6539 * miscellaneous/toc.m: Display "Elapsed time is X seconds" if user | |
6540 does not assign output of toc to a variable. | |
6541 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6542 2006-02-16 Bill Denney <denney@seas.upenn.edu> |
5627 | 6543 |
6544 * axis.m: Catch limits that are the same and return an error. | |
6545 | |
5625 | 6546 2006-02-15 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
6547 | |
6548 * plot/print.m: Accept emf device option to support Enhanced | |
6549 Metafile format. | |
6550 | |
6551 2006-02-15 A S Hodel <hodelas@auburn.edu> | |
6552 | |
6553 * control/base/lqe.m: Doc fix. | |
6554 | |
5623 | 6555 2006-02-15 Keith Goodman <kwgoodman@gmail.com> |
6556 | |
6557 * statistics/distributions/gamcdf.m: Doc fix. | |
6558 * statistics/distributions/gaminv.m: Doc fix. | |
6559 * statistics/distributions/gampdf.m: Doc fix. | |
6560 * statistics/distributions/gamrnd.m: Doc fix. | |
6561 | |
5610 | 6562 2006-02-09 David Bateman <dbateman@free.fr> |
6563 | |
6778 | 6564 * general/triu.m: Minimum change to allow sparse matrix. More needed |
6565 for arbitrary user type. | |
6566 * general/tril.m: ditto. | |
6567 * sparse/sprand.m: Doc fix. | |
6568 * sparse/sprandn.m: Ditto. | |
6569 * sparse/sprandsym.m: New function. | |
6570 * audio/setaudio.m, general/cart2pol.m, general/cart2sph.m, | |
6571 general/pol2cart.m, general/sph2cart.m, signal/freqz_plot.m: | |
6572 Update for syntax error for latest texinfo.tex file. | |
5610 | 6573 |
5605 | 6574 2006-02-02 John W. Eaton <jwe@octave.org> |
6575 | |
6576 * plot/grid.m: Append ";\n" to "set grid" command. | |
6577 | |
6578 2006-02-02 A S Hodel <hodelas@auburn.edu> | |
6579 | |
6580 * control/base/rlocus.m: Don't atttempt to plot rlzer if it is empty. | |
6581 | |
5597 | 6582 2006-01-13 John W. Eaton <jwe@octave.org> |
6583 | |
6584 * audio/Makefile.in, control/base/Makefile.in, | |
6585 control/hinf/Makefile.in, control/obsolete/Makefile.in, | |
6586 control/system/Makefile.in, control/util/Makefile.in, | |
6587 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, | |
6588 general/Makefile.in, image/Makefile.in, io/Makefile.in, | |
6589 linear-algebra/Makefile.in, miscellaneous/Makefile.in, | |
6590 optimization/Makefile.in, plot/Makefile.in, | |
6591 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
6592 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
6593 special-matrix/Makefile.in, startup/Makefile.in, | |
6594 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
6595 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
6596 strings/Makefile.in, time/Makefile.in, testfun/Makefile.in: | |
6597 (all): Depend on PKG_ADD. | |
6598 (PKG_ADD): New target. | |
6599 | |
6600 2006-01-13 Bill Denney <bill@givebillmoney.com> | |
6601 | |
6602 * miscellaneous/dir.m: Add @seealso{} to docstring. | |
6603 | |
5596 | 6604 2006-01-13 John W. Eaton <jwe@octave.org> |
6605 | |
6606 * time/etime.m: Move here from miscellaneous/etime.m. | |
6607 * time/is_leap_year.m: Move here from miscellaneous/is_leap_year.m. | |
6608 | |
5595 | 6609 2006-01-13 Bill Denney <bill@givebillmoney.com> |
6610 | |
6778 | 6611 * miscellaneous/dir.m: Use filesep instead of "/" where needed. |
5595 | 6612 * miscellaneous/fullfile.m: Likewise. |
6613 | |
5592 | 6614 2006-01-12 David Bateman <dbateman@free.fr> |
6615 | |
6616 * general/blkdiag.m: Compatible behavior for empty matrices | |
6617 * statistics/base/unidrnd.m: Documentation buglet. | |
6618 | |
5583 | 6619 2005-12-14 David Bateman <dbateman@free.fr> |
6620 | |
5589 | 6621 * testfun/assert.m, testfun/fail.m, testfun/test.m, testfun/demo.m, |
6622 testfun/speed.m, testfun/example.m, Makefile.in: New files. | |
6623 | |
6624 * Makefile.in (SUBDIRS): Include testfun. | |
6625 * configure.in (AC_CONFIG_FILES): Include testfun/Makefile. | |
6626 | |
5583 | 6627 * miscellaneous/dir.m: Transpose sub-assignment for cleanness. |
6628 | |
6629 * general/__isequal__.m: Remove reference to getfield. | |
6630 | |
6631 * plot/hist.m: Update test code for row/column discrepencies. | |
6632 * signal/freqz.m: Alter output row/column for matlab compatibility. | |
6633 Update the test code for this. | |
6634 * sparse/spstats.m: Fix small bug in the dimension of output. | |
6635 | |
5579 | 6636 2005-12-13 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6637 | |
6638 * cell/cell2mat.m: New file, from octave-forge. | |
6639 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6640 2005-12-13 Ivana Varekova <varekova@redhat.com> |
5576 | 6641 |
6642 * sparse/treeplot.m, sparse/etreeplot.m, sparse/gplot.m: | |
6643 New graph theory functions. | |
6644 | |
5574 | 6645 2005-12-13 John W. Eaton <jwe@octave.org> |
6646 | |
6647 * general/blkdiag.m: Use "isempty" instead of @isempty. | |
6648 | |
6649 * control/system/ss.m: Doc fix. | |
6650 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. | |
6651 | |
5572 | 6652 2005-12-12 Michael Zeising <michael@michaels-website.de> |
6653 | |
6654 * audio/wavread.m, audio/wavwrite.m: | |
6655 Correct scaling for 8-bit linear pcm samples. | |
6656 Improve scaling for all other linear pcm resolutions. | |
6657 | |
5568 | 6658 2005-12-07 John W. Eaton <jwe@octave.org> |
6659 | |
6660 * statistics/base/moment.m: Don't save and restore warn_str_to_num. | |
6661 | |
6662 * sparse/spdiags.m: Don't save and restore warn_fortran_indexing. | |
6663 * strings/strjust.m: Likewise. | |
6664 | |
6665 * general/shift.m: Don't save and restore warn_empty_list_elements. | |
6666 * signal/arma_rnd.m: Likewise. | |
6667 * strings/strcat.m: Likewise. | |
6668 * control/base/__freqresp__.m: Likewise. | |
6669 * control/base/place.m: Likewise. | |
6670 * control/base/pzmap.m: Likewise. | |
6671 * control/base/pzmap.m: Likewise. | |
6672 * control/system/sysappend.m: Likewise. | |
6673 * control/system/syscont.m: Likewise. | |
6674 * control/system/sysdisc.m: Likewise. | |
6675 * control/system/sysgroup.m: Likewise. | |
6676 * control/system/tfout.m: Likewise. | |
6677 * control/system/zpout.m: Likewise. | |
6678 * control/util/__outlist__.m: Likewise. | |
6679 | |
5567 | 6680 2005-12-06 John W. Eaton <jwe@octave.org> |
6681 | |
6682 * audio/wavread.m, audio/wavwrite.m: Adapt to Octave coding style. | |
6683 Avoid for loop in interleave/deinterleave steps. | |
6684 | |
5565 | 6685 2005-12-06 Michael Zeising <michael@michaels-website.de> |
6686 | |
6687 * audio/wavread.m, audio/wavwrite.m: New files. | |
6688 | |
5563 | 6689 2005-12-06 John W. Eaton <jwe@octave.org> |
6690 | |
6691 * miscellaneous/dir.m: Return Nx1 instead of 1xN struct array. | |
6692 | |
5560 | 6693 2005-12-05 John W. Eaton <jwe@octave.org> |
6694 | |
5561 | 6695 * plot/axis.m: Add "## PKG_ADD: mark_as_command axis" line. |
5560 | 6696 |
5558 | 6697 2005-12-02 John W. Eaton <jwe@octave.org> |
6698 | |
6699 * miscellaneous/fileattrib.m: New function. | |
6700 | |
5556 | 6701 2005-12-01 John W. Eaton <jwe@octave.org> |
6702 | |
6703 * general/columns.m: Use size (x, 2) instead of [nr, nc] = size (x). | |
6704 * general/rows.m: Use size (x, 1) instead of [nr, nc] = size (x). | |
6705 From William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com>. | |
6706 | |
5555 | 6707 2005-11-30 John W. Eaton <jwe@octave.org> |
6708 | |
6709 * linear-algebra/krylov.m: Format doc string. | |
6710 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. | |
6711 | |
5551 | 6712 2005-11-23 William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com> |
6713 | |
6714 * general/blkdiag.m: Import from octave-forge. | |
6715 Ignore empty matrices in the input. Add tests. | |
5549 | 6716 |
6717 * general/isequal.m, general/isequalwithequalnans.m: | |
6718 New wrapper scripts for general/__isequal__.m. | |
6719 * general/__isequal__.m: Rename from general/isequal.m. | |
6720 New arg, nans_compare_equal. | |
6721 | |
5548 | 6722 2005-11-29 John W. Eaton <jwe@octave.org> |
6723 | |
6724 * miscellaneous/ver.m: Use new uname built-in function instead of | |
6725 calling system. Only append octave_forge_string if | |
6726 OCTAVE_FORGE_VERSION exists. Use puts instead of disp. | |
6727 Call license instead of hard-coding license info here. | |
6728 | |
6729 * miscellaneous/license.m: Use persistent instead of global for | |
5654 | 6730 __octave_licenses__. Use puts instead of disp. |
5548 | 6731 Use getuid and getpwuid instead of calling unix ("id -un"). |
6732 If nargout = 1, return license info instead of printing usage message. | |
6733 | |
5546 | 6734 2005-11-29 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6735 | |
6736 * miscellaneous/ver.m: New file. | |
6737 * miscellaneous/license.m: New file. | |
6738 | |
5545 | 6739 2005-11-22 John W. Eaton <jwe@octave.org> |
6740 | |
6741 * plot/axis.m: Use %.16g instead of just %g to format ranges for | |
6742 gnuplot set command. | |
6743 | |
5539 | 6744 2005-11-15 John W. Eaton <jwe@octave.org> |
6745 | |
6746 * general/shiftdim.m: Doc fix. | |
6747 | |
5532 | 6748 2005-11-07 Keith Goodman <kwgoodman@gmail.com> |
6749 | |
6750 * set/unique.m: Doc string fix. | |
6751 | |
5527 | 6752 2005-11-01 John W. Eaton <jwe@octave.org> |
6753 | |
6754 * Makefile.in (distclean, maintainer-clean): | |
6755 Also remove autom4te.cache directory. | |
6756 From Quentin Spencer <qspencer@ieee.org>. | |
6757 | |
5518 | 6758 2005-10-28 John W. Eaton <jwe@octave.org> |
6759 | |
6760 * general/shiftdim.m: Compatibility fix for row vectors. | |
6761 Correct check for non-scalar non-integer shift. For positive | |
6762 N, shift is remainder of N and number of dims. Always return NS. | |
6763 Simplify. | |
6764 | |
5500 | 6765 2005-10-18 Keith Goodman <kwgoodman@gmail.com> |
6766 | |
6767 * general/randperm.m: Improve compatibility by allowing input | |
6768 value of zero. | |
6769 | |
5493 | 6770 2005-10-13 John W. Eaton <jwe@octave.org> |
6771 | |
6772 * plot/__plt__.m, plot/__errplot__.m, plot/replot.m: | |
6773 If in multiplot mode, clear plot before issuing new plot command. | |
6774 | |
6775 * plot/__setup_plot__.m: New function. | |
6776 * plot/__plt__.m, plot__errplot__.m: Use it. | |
6777 Handle multiplot data and offsets here. | |
6778 | |
6779 * plot/__plot_globals__.m: Also keep track of multiplot options. | |
6780 Move initialization to __setup_plot__.m. | |
6781 | |
6782 * plot/subplot.m: Multiplot globals now in __plot_globals__.m. | |
6783 Don't reset gnuplot_command_replot. | |
6784 | |
6785 * plot/replot.m: Handle multiplot data and offsets here. | |
6786 * plot__axis_label__.m, plot/axis.m, plot/grid.m, | |
6787 plot/plot_border.m, plot/plot.m, plot/plot_title.m, | |
6788 plot/top_title.m: Call replot, not __gnuplot_replot__. | |
6789 | |
5489 | 6790 2005-10-12 John W. Eaton <jwe@octave.org> |
6791 | |
6792 * plot/figure.m: Handle __current_figure__, not gnuplot details. | |
6793 | |
5482 | 6794 2005-10-04 Rafael Laboissiere <rafael@debian.org> |
6795 | |
6796 * binoinv.m, chi2pdf.m, frnd.m, poissinv.m, tinv.m, trnd.m, | |
6797 weibrnd.m: Removed calls and references to deprecated _pdf and | |
6798 _inv functions. | |
6799 * chi2pdf.m: Fixed typos in the documentation. | |
6800 | |
5475 | 6801 2005-09-28 John W. Eaton <jwe@octave.org> |
6802 | |
5476 | 6803 * miscellaneous/single.m: New function. |
6804 | |
5475 | 6805 * statistics/base/unidrnd.m: New function. |
6806 | |
5474 | 6807 2005-09-27 John W. Eaton <jwe@octave.org> |
6808 | |
6809 * miscellaneous/dir.m: Filename never includes directory part. | |
6810 | |
5464 | 6811 2005-09-22 John W. Eaton <jwe@octave.org> |
6812 | |
6813 * polynomial/residue.m: Use logical indexing instead of find.. | |
6814 | |
6815 2005-09-22 Julius Smith <jos@ccrma.stanford.edu> | |
6816 | |
6817 * polynomial/residue.m: Avoid division by zero for pure imaginary | |
6818 and zero poles. | |
6819 | |
5462 | 6820 2005-09-22 Bill Denney <denney@seas.upenn.edu> |
6821 | |
6822 * strings/deblank.m: Handle cell arrays. | |
6823 * strings/split.m: New argument, N, to limit number of splits. | |
6824 | |
6825 2005-09-22 Miroslaw Kwasniak <mirek@zind.ikem.pwr.wroc.pl> | |
6826 | |
6827 * plot/__pltopt1__.m: Handle plot colors "w" and "k" separately. | |
6828 | |
5460 | 6829 2005-09-20 "Orestes Mas" <orestes@tsc.upc.edu> |
6830 | |
6831 * control/base/rlocus.m: Doc fix. | |
6832 | |
5459 | 6833 2005-09-20 John W. Eaton <jwe@octave.org> |
6834 | |
6835 * general/isvector.m: Improve compatibility. | |
6836 | |
6837 * general/postpad.m: Allow first argument to be a scalar. | |
6838 Allow padding to extend dimensionality. | |
6839 * general/prepad.m: Likewise. | |
6840 | |
5448 | 6841 2005-09-14 Daniel <durbano@shbano.com> |
6842 | |
6843 * statistics/tests/bartlett_test.m, linear-algebra/cross.m, | |
5449 | 6844 statistics/distributions/discrete_cdf.m, general/fliplr.m, |
6845 /control/base/dgram.m: Doc string fixes. | |
5448 | 6846 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
6847 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6848 2005-09-12 Stefan van der Walt <stefan@sun.ac.za> |
5446 | 6849 |
6850 * saveimage.m: Do not ignore most significant bit when writing | |
6851 black and white images to file. | |
6852 | |
5443 | 6853 2005-09-07 Bill Denney <denney@seas.upenn.edu> |
6854 | |
6855 * audio/playaudio.m, control/base/__bodquist__.m, | |
6856 control/base/lqg.m, control/obsolete/dezero.m, | |
6857 control/system/__syschnamesl__.m, control/system/__sysconcat__.m, | |
6858 control/system/c2d.m, control/system/cellidx.m, | |
6859 control/system/d2c.m, control/system/dmr2d.m, | |
6860 control/system/is_signal_list.m, control/system/listidx.m, | |
6861 control/system/ss.m, control/system/sysappend.m, | |
6862 control/system/sysconnect.m, control/system/sysdup.m, | |
6863 control/system/sysgetsignals.m, control/system/sysidx.m, | |
6864 control/system/sysprune.m, control/system/syssetsignals.m, | |
6865 control/system/tfout.m, control/system/zpout.m, | |
6866 control/util/prompt.m, control/util/sortcom.m, | |
6867 control/util/strappend.m, finance/fv.m, finance/nper.m, | |
6868 finance/pmt.m, finance/pv.m, finance/rate.m, general/diff.m, | |
6869 general/num2str.m, general/repmat.m, general/sortrows.m, | |
6870 general/strerror.m, image/colormap.m, image/imshow.m, | |
6871 image/loadimage.m, image/saveimage.m, linear-algebra/norm.m, | |
6872 miscellaneous/fileparts.m, miscellaneous/popen2.m, | |
6873 plot/__axis_label__.m, plot/__errcomm__.m, plot/__plt1__.m, | |
6874 plot/__plt2__.m, plot/__plt__.m, plot/__pltopt1__.m, | |
6875 plot/__pltopt__.m, plot/axis.m, plot/bottom_title.m, plot/close.m, | |
6876 plot/grid.m, plot/hist.m, plot/plot_border.m, plot/polar.m, | |
6877 plot/print.m, plot/title.m, plot/top_title.m, | |
6878 polynomial/polyout.m, set/unique.m, signal/freqz.m, signal/stft.m, | |
6879 statistics/base/mean.m, statistics/base/moment.m, | |
6880 statistics/tests/cor_test.m, | |
6881 statistics/tests/kolmogorov_smirnov_test.m, | |
6882 statistics/tests/kolmogorov_smirnov_test_2.m, | |
6883 statistics/tests/prop_test_2.m, statistics/tests/sign_test.m, | |
6884 statistics/tests/t_test.m, statistics/tests/t_test_2.m, | |
6885 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, | |
6886 statistics/tests/var_test.m, statistics/tests/welch_test.m, | |
6887 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, | |
6888 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, | |
6889 strings/deblank.m, strings/dec2base.m, strings/index.m, | |
6890 strings/rindex.m, strings/split.m, strings/str2mat.m, | |
6891 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, | |
6892 strings/strncmp.m, strings/strrep.m, strings/substr.m: | |
6893 Avoid deprecated functions. Use ischar instead of isstr. Use | |
6894 isvector instead of is_vector. Use isstruct instead of | |
6895 is_struct. Use char instead of setstr. | |
6896 | |
5435 | 6897 2005-08-31 Daniel <durbano@shbano.com> |
6898 | |
6899 * special-matrix/invhilb.m, statistics/base/iqr.m, | |
6900 control/system/is_controllable.m, set/ismember.m: Doc fixes. | |
6901 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. | |
6902 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6903 2005-08-29 Bill Denney <denney@seas.upenn.edu> |
5431 | 6904 |
6905 * image/saveimage.m: Open output file in binary mode. | |
6906 | |
6907 * miscellaneous/bug_report.m: Open prefs file in text mode. | |
6908 | |
5427 | 6909 2005-08-16 John W. Eaton <jwe@octave.org> |
6910 | |
6911 * miscellaneous/computer.m: Handle optional maxsize and endian | |
6912 outputs. | |
6913 | |
5426 | 6914 2005-08-15 John W. Eaton <jwe@octave.org> |
6915 | |
6916 * strings/strcat.m: Allow single argument. | |
6917 | |
5416 | 6918 2005-07-18 John W. Eaton <jwe@octave.org> |
6919 | |
6920 * strings/strcmp.m: Delete. | |
6921 | |
5413 | 6922 2005-07-13 John W. Eaton <jwe@octave.org> |
6923 | |
6924 * deprecated/hypergeometric_rnd.m: Preserve compatibility with old | |
6925 versions of Octave. | |
6926 | |
6927 2005-07-13 Ben Barrowes <barrowes@alum.mit.edu> | |
6928 | |
6929 * statistics/distributions/betacdf.m: Rename from beta_cdf.m. | |
6930 * statistics/distributions/betainv.m: Rename from beta_inv.m. | |
6931 * statistics/distributions/betapdf.m: Rename from beta_pdf.m. | |
6932 * statistics/distributions/betarnd.m: Rename from beta_rnd.m. | |
6933 * statistics/distributions/binocdf.m: Rename from binomial_cdf.m. | |
6934 * statistics/distributions/binoinv.m: Rename from binomial_inv.m. | |
6935 * statistics/distributions/binopdf.m: Rename from binomial_pdf.m. | |
6936 * statistics/distributions/binornd.m: Rename from binomial_rnd.m. | |
6937 * statistics/distributions/chi2cdf.m: Rename from chisquare_cdf.m. | |
6938 * statistics/distributions/chi2inv.m: Rename from chisquare_inv.m. | |
6939 * statistics/distributions/chi2pdf.m: Rename from chisquare_pdf.m. | |
6940 * statistics/distributions/chi2rnd.m: Rename from chisquare_rnd.m. | |
6941 * statistics/distributions/expcdf.m: Rename from exponential_cdf.m. | |
6942 * statistics/distributions/expinv.m: Rename from exponential_inv.m. | |
6943 * statistics/distributions/exppdf.m: Rename from exponential_pdf.m. | |
6944 * statistics/distributions/exprnd.m: Rename from exponential_rnd.m. | |
6945 * statistics/distributions/fcdf.m: Rename from f_cdf.m. | |
6946 * statistics/distributions/finv.m: Rename from f_inv.m. | |
6947 * statistics/distributions/fpdf.m: Rename from f_pdf.m. | |
6948 * statistics/distributions/frnd.m: Rename from f_rnd.m. | |
6949 * statistics/distributions/gamcdf.m: Rename from gamma_cdf.m. | |
6950 * statistics/distributions/gaminv.m: Rename from gamma_inv.m. | |
6951 * statistics/distributions/gampdf.m: Rename from gamma_pdf.m. | |
6952 * statistics/distributions/gamrnd.m: Rename from gamma_rnd.m. | |
6953 * statistics/distributions/geocdf.m: Rename from geometric_cdf.m. | |
6954 * statistics/distributions/geoinv.m: Rename from geometric_inv.m. | |
6955 * statistics/distributions/geopdf.m: Rename from geometric_pdf.m. | |
6956 * statistics/distributions/geornd.m: Rename from geometric_rnd.m. | |
6957 * statistics/distributions/hygecdf.m: Rename from hypergeometric_cdf.m. | |
6958 * statistics/distributions/hygeinv.m: Rename from hypergeometric_inv.m. | |
6959 * statistics/distributions/hygepdf.m: Rename from hypergeometric_pdf.m. | |
6960 * statistics/distributions/hygernd.m: Rename from hypergeometric_rnd.m. | |
6961 * statistics/distributions/logncdf.m: Rename from lognormal_cdf.m. | |
6962 * statistics/distributions/logninv.m: Rename from lognormal_inv.m. | |
6963 * statistics/distributions/lognpdf.m: Rename from lognormal_pdf.m. | |
6964 * statistics/distributions/lognrnd.m: Rename from lognormal_rnd.m. | |
6965 * statistics/distributions/normcdf.m: Rename from normal_cdf.m. | |
6966 * statistics/distributions/norminv.m: Rename from normal_inv.m. | |
6967 * statistics/distributions/normpdf.m: Rename from normal_pdf.m. | |
6968 * statistics/distributions/normrnd.m: Rename from normal_rnd.m. | |
6969 * statistics/distributions/poisscdf.m: Rename from poisson_cdf.m. | |
6970 * statistics/distributions/poissinv.m: Rename from poisson_inv.m. | |
6971 * statistics/distributions/poisspdf.m: Rename from poisson_pdf.m. | |
6972 * statistics/distributions/poissrnd.m: Rename from poisson_rnd.m. | |
6973 * statistics/distributions/tcdf.m: Rename from t_cdf.m. | |
6974 * statistics/distributions/tinv.m: Rename from t_inv.m. | |
6975 * statistics/distributions/tpdf.m: Rename from t_pdf.m. | |
6976 * statistics/distributions/trnd.m: Rename from t_rnd.m. | |
5431 | 6977 * statistics/distributions/unifcdf.m: Rename from unifoxorm_cdf.m. |
5413 | 6978 * statistics/distributions/unifinv.m: Rename from uniform_inv.m. |
6979 * statistics/distributions/unifpdf.m: Rename from uniform_pdf.m. | |
6980 * statistics/distributions/unifrnd.m: Rename from uniform_rnd.m. | |
6981 * statistics/distributions/weibcdf.m: Rename from weibull_cdf.m. | |
6982 * statistics/distributions/weibinv.m: Rename from weibull_inv.m. | |
6983 * statistics/distributions/weibpdf.m: Rename from weibull_pdf.m. | |
6984 * statistics/distributions/wienrnd.m: Rename from wiener_rnd.m. | |
6985 | |
6986 * deprecated/beta_cdf.m, deprecated/beta_inv.m, | |
6987 deprecated/beta_pdf.m, deprecated/beta_rnd.m, | |
6988 deprecated/binomial_cdf.m, deprecated/binomial_inv.m, | |
6989 deprecated/binomial_pdf.m, deprecated/binomial_rnd.m, | |
6990 deprecated/chisquare_cdf.m, deprecated/chisquare_inv.m, | |
6991 deprecated/chisquare_pdf.m, deprecated/chisquare_rnd.m, | |
6992 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, | |
6993 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m, | |
6994 deprecated/f_cdf.m, deprecated/f_inv.m, deprecated/f_pdf.m, | |
6995 deprecated/f_rnd.m, deprecated/gamma_cdf.m, | |
6996 deprecated/gamma_inv.m, deprecated/gamma_pdf.m, | |
6997 deprecated/gamma_rnd.m, deprecated/geometric_cdf.m, | |
6998 deprecated/geometric_inv.m, deprecated/geometric_pdf.m, | |
6999 deprecated/geometric_rnd.m, deprecated/hypergeometric_cdf.m, | |
7000 deprecated/hypergeometric_inv.m, deprecated/hypergeometric_pdf.m, | |
7001 deprecated/hypergeometric_rnd.m, deprecated/lognormal_cdf.m, | |
7002 deprecated/lognormal_inv.m, deprecated/lognormal_pdf.m, | |
7003 deprecated/lognormal_rnd.m, deprecated/normal_cdf.m, | |
7004 deprecated/normal_inv.m, deprecated/normal_pdf.m, | |
7005 deprecated/normal_rnd.m, deprecated/poisson_cdf.m, | |
7006 deprecated/poisson_inv.m, deprecated/poisson_pdf.m, | |
7007 deprecated/poisson_rnd.m, deprecated/t_cdf.m, deprecated/t_inv.m, | |
7008 deprecated/t_pdf.m, deprecated/t_rnd.m, deprecated/uniform_cdf.m, | |
7009 deprecated/uniform_inv.m, deprecated/uniform_pdf.m, | |
7010 deprecated/uniform_rnd.m, deprecated/weibull_cdf.m, | |
7011 deprecated/weibull_inv.m, deprecated/weibull_pdf.m, | |
7012 deprecated/wiener_rnd.m: New files. | |
7013 | |
5408 | 7014 2005-07-08 John W. Eaton <jwe@octave.org> |
7015 | |
7016 * statistics/distributions/weibrnd.m: Rename from weibull_rnd.m. | |
7017 * deprecated/weibull_rnd.m: New file. | |
7018 | |
5407 | 7019 2005-07-08 cctsim <cctsim@yahoo.co.uk> |
7020 | |
7021 * strings/dec2base.m: Allow matrix arguments. | |
7022 | |
5406 | 7023 2005-07-08 John W. Eaton <jwe@octave.org> |
7024 | |
7025 * plot/__errplot__.m: Use __plot_globals__. | |
7026 * plot/__plt__.m: Likewise. | |
7027 * plot/figure.m: Likewise. | |
7028 | |
7029 * plot/hold.m: New file. | |
7030 * plot/ishold.m: New file. | |
7031 * plot/__plot_globals__.m: New file. | |
7032 | |
5400 | 7033 2005-07-05 cctsim <cctsim@yahoo.co.uk> |
7034 | |
7035 * strings/dec2base.m: Don't remove all leading zeros if result is zero. | |
7036 | |
7037 2005-07-05 John W. Eaton <jwe@octave.org> | |
7038 | |
7039 * strings/findstr.m: Return [] for no matches. | |
7040 | |
5399 | 7041 2005-06-17 Keith Goodman <kwgoodman@gmail.com> |
7042 | |
7043 * miscellaneous/tic.m: Fix doc string. | |
7044 | |
5395 | 7045 2005-06-15 John W. Eaton <jwe@octave.org> |
7046 | |
7047 * polynomial/polyfit.m: Force return value to be a row vector. | |
7048 | |
5393 | 7049 2005-06-15 Tom Holroyd <tomh@kurage.nimh.nih.gov> |
7050 | |
7051 * general/isequal.m: Correct nargin check. | |
7052 | |
5388 | 7053 2005-06-14 John W. Eaton <jwe@octave.org> |
7054 | |
7055 * general/isvector.m: Handle N-d arrays. | |
7056 From Bill Denney <denney@seas.upenn.edu>. | |
7057 | |
5381 | 7058 2005-06-02 Ben Barrowes <barrowes@alum.mit.edu> |
7059 | |
7060 * plot/meshgrid.m: Handle 3 input arguments. | |
5378 | 7061 |
5377 | 7062 2005-06-02 Paul Kienzle <pkienzle@users.sf.net> |
7063 | |
7064 * signal/freqz.m: Use correct calculations when given a vector of | |
7065 frequencies. Improve accuracy of returned frequency vector. | |
7066 Improve speed for medium length filters (at a slight cost for slow | |
7067 filters). Add test cases. | |
7068 | |
5373 | 7069 2005-05-27 "Dmitri A. Sergatskov" <dasergatskov@gmail.com> |
7070 | |
7071 * plot/loglog.m: Fix set commands. | |
7072 | |
5381 | 7073 2005-05-25 John W. Eaton <jwe@octave.org> |
7074 | |
7075 * plot/sombrero.m: Default n to 41 if nargin == 0. | |
7076 | |
5371 | 7077 2005-05-24 John W. Eaton <jwe@octave.org> |
7078 | |
5373 | 7079 * statistics/tests/anova.m: Use mean (y(:)) to compute total_mean. |
7080 | |
5372 | 7081 * strings/strncmp.m: New file, from Tom Holroyd |
7082 <tomh@kurage.nimh.nih.gov>. | |
7083 | |
5371 | 7084 * strings/strcmp.m: Return logical values in all cases. |
7085 | |
5366 | 7086 2005-05-23 John W. Eaton <jwe@octave.org> |
7087 | |
7088 * plot/orient.m: New file. Adapt to Octave coding style. | |
7089 Texinfoize doc string. | |
7090 | |
7091 * plot/print.m: New file. Adapt to Octave coding style. Include | |
7092 PKG_ADD command. Use set terminal consistently throughout. Use | |
7093 set terminal push/pop and unconditionally set output to screen | |
7094 when done to avoid requiring gget. Use a cell array for dev_list | |
7095 and cellidx to search for items in the list. Delete local | |
7096 variable endl. Don't set and restore automatic_replot. Use {} | |
7097 instead of nth to index varargin. Delete local variable | |
7098 va_arg_cnt. | |
7099 | |
5355 | 7100 2005-05-18 John W. Eaton <jwe@octave.org> |
7101 | |
7102 * general/num2str.m: Return early if X is a character string. | |
7103 | |
5347 | 7104 2005-05-11 John W. Eaton <jwe@octave.org> |
7105 | |
5348 | 7106 * strings/findstr.m: Allow non-string arguments for compatiblity. |
7107 From Tom Holroyd <tomh@kurage.nimh.nih.gov>. | |
7108 | |
5347 | 7109 * plot/polar.m: Don't call __pltopt__ here. |
7110 | |
5333 | 7111 2005-05-02 John W. Eaton <jwe@octave.org> |
7112 | |
7113 * mkdoc: Print header message. | |
7114 | |
5319 | 7115 2005-04-28 John W. Eaton <jwe@octave.org> |
7116 | |
7117 * configure.in (AC_CONFIG_SRCDIR): Look for startup/inputrc, not | |
7118 startup/octaverc. | |
7119 | |
5318 | 7120 2005-04-28 Stefan van der Walt <stefan@sun.ac.za> |
7121 | |
7122 * image/imshow.m: Handle various image depths and 3d RGB images. | |
7123 (__im_numeric_limits__): New internal function. | |
7124 | |
5317 | 7125 2005-04-28 toni saarela <toni.saarela@helsinki.fi> |
7126 | |
7127 * statistics/tests/anova.m: Compute total_mean as mean of all | |
7128 data, not mean of group_mean. | |
7129 | |
7130 2005-04-28 John W. Eaton <jwe@octave.org> | |
7131 | |
7132 * startup/local-rcfile: New file. | |
7133 * startup/main-rcfile: Rename from startup/octaverc. | |
7134 * startup/Makefile.in (SOURCES): Add inputrc to the list. | |
7135 (install install-strip): Install main-rcfile in $(fcnfiledir)/startup. | |
7136 Install local-rcfile in $(localfcnfiledir)/startup. | |
7137 | |
7138 2005-04-28 Keith Goodman <kwgoodman@gmail.com> | |
7139 | |
7140 * startup/inputrc: New file. | |
7141 * startup/octaverc: Configure readline using inputrc from | |
7142 startupfiledir. | |
7143 * startup/Makefile.in (install, install-strip): Install octaverc | |
7144 in $(fcnfiledir)/startup. | |
7145 | |
5310 | 7146 2005-04-27 John W. Eaton <jwe@octave.org> |
7147 | |
7148 * optimization/qp.m: Define n_in after removing -Inf bounds from Ain. | |
7149 | |
5289 | 7150 2005-04-21 John W. Eaton <jwe@octave.org> |
7151 | |
7152 * optimization/glpk.m: Handle SENSE argument. | |
7153 | |
7154 * optimization/qp.m, optimization/sqp.m: New files. | |
7155 | |
5276 | 7156 2005-04-08 John W. Eaton <jwe@octave.org> |
7157 | |
7158 * Makefile.in (clean, distclean, maintainer-clean): | |
7159 Avoid duplication in rules. | |
7160 | |
5252 | 7161 2005-03-28 John W. Eaton <jwe@octave.org> |
7162 | |
7163 * plot/contour.m, plot/mesh.m: Continue to use __gnuplot_raw__ for | |
7164 setting {no,}parametric. | |
7165 * plot/figure.m: Likewise, for setting terminal type. | |
7166 | |
7167 * __axis_label__.m:, plot/axis.m, plot/bottom_title.m, | |
7168 plot/contour.m, plot/figure.m, plot/multiplot.m, plot/mplot.m, | |
7169 plot/plot_border.m, plot/subplot.m, plot/subwindow.m, | |
7170 plot/title.m, plot/top_title.m: Avoid eval. | |
7171 | |
5251 | 7172 2005-03-28 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
7173 | |
5253 | 7174 * plot/__axis_label__.m, plot/axis.m, plot/grid.m, |
7175 plot/plot_border.m, plot/replot.m, plot/title.m, plot/top_title.m: | |
7176 Use __gnuplot_replot__ instead of replot. | |
7177 | |
5252 | 7178 * plot/__axis_label__.m, plot/axis.m, plot/bottom_title.m, |
7179 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/grid.m, | |
7180 plot/loglogerr.m, plot/loglog.m, plot/mesh.m, plot/mplot.m, | |
7181 plot/multiplot.m, plot/oneplot.m, plot/plot_border.m, plot/plot.m, | |
7182 plot/polar.m, plot/semilogxerr.m, plot/semilogx.m, | |
7183 plot/semilogyerr.m, plot/semilogy.m, plot/shg.m, plot/subplot.m, | |
7184 plot/subwindow.m, plot/title.m, plot/top_title.m: | |
5654 | 7185 Use __gnuplot_raw__ instead of __gnuplot_set__. |
5252 | 7186 |
5251 | 7187 * plot/replot.m: Use __gnuplot_replot__, not __greplot__. |
7188 | |
5244 | 7189 2005-03-24 John W. Eaton <jwe@octave.org> |
7190 | |
7191 * optimization/glpkmex.m: Texinfoize Doc string. | |
7192 * optimization/glpk.m: Likewise. | |
7193 Allow VARTYPE and CTYPE to be row or column vectors of characters | |
7194 (row vectors are orginary character strings). | |
7195 * optimization/glpkparam.m: Delete. | |
7196 | |
5243 | 7197 2005-03-24 Quentin Spencer <qspencer@ieee.org> |
7198 | |
7199 * statistics/base/mean.m: Allow DIMS arg greater than the number | |
7200 of dimensions of X. | |
7201 | |
5237 | 7202 2005-03-23 John W. Eaton <jwe@octave.org> |
7203 | |
5239 | 7204 * general/tril.m, general/triu.m: Return value of same class as |
7205 argument. | |
7206 | |
5237 | 7207 * optimization/glpk.m: Simplify interface. By default, solve |
7208 standard LP min C'*x s.t. A*x = b, x >= 0. | |
7209 * optimization/glpkmex.m: New file. | |
7210 | |
5232 | 7211 2005-03-22 John W. Eaton <jwe@octave.org> |
7212 | |
5237 | 7213 * configure.in (AC_CONFIG_FILES): Add optimization/Makefile to the |
7214 list. | |
7215 | |
5233 | 7216 * optimization/glpk.m: Adapt to Octave coding style. |
7217 No need for varargout or varargin. | |
7218 Print usage message if nargin > 11. | |
7219 Allow any value of nargout. | |
7220 Use repmat (C, nr, nc) instead of char (C * ones (nr, nc)). | |
7221 Avoid looping when checking character classes. | |
7222 | |
5232 | 7223 * optimization: New directory. |
7224 * Makefile.in (SUBDIRS): Add it to the list. | |
7225 * optimization/Makefile.in: New file. | |
7226 * optimization/glpk.m, optimization/glpkparams.m, | |
7227 optimization/glpktest1, optimization/glpktest2: New files. | |
7228 | |
8149 | 7229 2005-03-16 S�ren Hauberg <soren@hauberg.org> |
5218 | 7230 |
7231 * strings/split.m: Quick return for empty second arg. | |
7232 Improve warning for multi-line strings. | |
7233 Speed up by avoiding sprintf in loop and eval. | |
7234 | |
5217 | 7235 2005-03-16 Paul Kienzle <pkienzle@users.sf.net> |
7236 | |
7237 * polynomial/polyderiv.m : Accept a*b, a/b. Auto-reduce common terms. | |
7238 * polynomial/polyder.m: Ditto. | |
6778 | 7239 * polynomial/polygcd.m: New function. |
5217 | 7240 |
5214 | 7241 2005-03-16 John W. Eaton <jwe@octave.org> |
7242 | |
5215 | 7243 * control/base/__stepimp__.m, control/base/bode.m, |
7244 control/base/frdemo.m, control/base/nichols.m, | |
7245 control/base/nyquist.m, control/base/pzmap.m, | |
7246 control/base/rldemo.m, control/base/rlocus.m, | |
7247 control/hinf/dhinfdemo.m, control/hinf/hinfdemo.m, | |
7248 plot/__axis_label__.m, plot/__errplot__.m, plot/__plt__.m, | |
7249 plot/axis.m, plot/bar.m, plot/bottom_title.m, plot/contour.m, | |
7250 plot/errorbar.m, plot/figure.m, plot/grid.m, plot/loglog.m, | |
7251 plot/loglogerr.m, plot/mesh.m, plot/meshgrid.m, plot/mplot.m, | |
7252 plot/multiplot.m, plot/oneplot.m, plot/plot.m, plot/plot_border.m, | |
7253 plot/polar.m, plot/semilogx.m, plot/semilogxerr.m, | |
7254 plot/semilogy.m, plot/semilogyerr.m, plot/shg.m, plot/stairs.m, | |
7255 plot/subplot.m, plot/subwindow.m, plot/title.m, plot/top_title.m, | |
7256 plot/xlabel.m, quaternion/demoquat.m, | |
7257 quaternion/qcoordinate_plot.m, signal/freqz_plot.m, sparse/spy.m, | |
7258 statistics/base/ppplot.m, statistics/base/qqplot.m: | |
7259 Use __gnuplot_plot__ instead of gplot, __gnuplot_splot__ instead | |
7260 of gsplot, and __gnuplot_set__ instead of gset. Remove gplot, | |
7261 gsplot from @seealso docs. | |
5214 | 7262 |
7263 * plot/replot.m: New file. | |
7264 | |
5205 | 7265 2005-03-15 David Bateman <dbateman@free.fr> |
7266 | |
7267 * set/unique.m, set/ismember.m: Handle cell arrays. | |
7268 | |
5196 | 7269 2005-03-09 John W. Eaton <jwe@octave.org> |
7270 | |
7271 * statistics/Makefile.in (bin-dist): Delete target. | |
7272 (BINDISTSUBDIRS): Delete variable. | |
6754 | 7273 * control/Makefile.in: Likewise. |
5196 | 7274 |
5378 | 7275 * audio/Makefile.in (bin-dist): Delete target. |
5196 | 7276 (BINDISTFILES): Delete variable. |
5378 | 7277 * control/base/Makefile.in: Likewise. |
7278 * control/hinf/Makefile.in: Likewise. | |
7279 * control/obsolete/Makefile.in: Likewise. | |
7280 * control/system/Makefile.in: Likewise. | |
7281 * control/util/Makefile.in: Likewise. | |
7282 * deprecated/Makefile.in: Likewise. | |
7283 * elfun/Makefile.in: Likewise. | |
7284 * finance/Makefile.in: Likewise. | |
7285 * general/Makefile.in: Likewise. | |
7286 * image/Makefile.in: Likewise. | |
7287 * sparse/Makefile.in: Likewise. | |
7288 * io/Makefile.in: Likewise. | |
7289 * plot/Makefile.in: Likewise. | |
7290 * Makefile.in: Likewise. | |
7291 * miscellaneous/Makefile.in: Likewise. | |
7292 * linear-algebra/Makefile.in: Likewise. | |
7293 * polynomial/Makefile.in: Likewise. | |
7294 * quaternion/Makefile.in: Likewise. | |
7295 * set/Makefile.in: Likewise. | |
7296 * signal/Makefile.in: Likewise. | |
7297 * specfun/Makefile.in: Likewise. | |
7298 * special-matrix/Makefile.in: Likewise. | |
7299 * startup/Makefile.in: Likewise. | |
7300 * statistics/base/Makefile.in: Likewise. | |
7301 * statistics/distributions/Makefile.in: Likewise. | |
7302 * statistics/models/Makefile.in: Likewise. | |
7303 * statistics/tests/Makefile.in: Likewise. | |
7304 * strings/Makefile.in: Likewise. | |
7305 * time/Makefile.in: Likewise. | |
5196 | 7306 |
5195 | 7307 2005-03-08 John W. Eaton <jwe@octave.org> |
7308 | |
7309 * general/repmat.m: Correctly diagnose 3-argument non-scalar | |
7310 dimensions case. From Matthew A Swabey <mas01r@ecs.soton.ac.uk>. | |
7311 | |
5192 | 7312 2005-03-04 John W. Eaton <jwe@octave.org> |
7313 | |
7314 * plot/clg.m: New file. | |
7315 | |
5193 | 7316 2005-03-03 John W. Eaton <jwe@octave.org> |
7317 | |
7318 * general/isequal.m, general/sortrows.m, set/ismember.m, | |
7319 set/setdiff.m, strings/str2double.m, strings/strmatch.m, | |
7320 strings/strcmpi.m: | |
7321 New files from Octave-forge. Adapt to Octave coding standards. | |
7322 | |
5181 | 7323 2005-03-03 Paul Kienzle <pkienzle@users.sf.net> |
7324 | |
7325 * statistics/distributions/binomial_pdf.m: Extend the feasible | |
7326 computation range. | |
7327 | |
5164 | 7328 2005-02-25 John W. Eaton <jwe@octave.org> |
7329 | |
7330 Sparse merge. | |
7331 | |
7332 2005-01-23 David Bateman <dbateman@free.fr> | |
7333 | |
7334 * sparse/randperm.m: Delete duplicate randperm.m. | |
7335 | |
7336 2005-01-10 John W. Eaton <jwe@octave.org> | |
7337 | |
7338 * sparse/Makefile.in: New file. | |
7339 * configure.in (AC_CONFIG_FILES): Add sparse/Makefile to the list. | |
7340 | |
7341 2005-01-07 David Bateman <dbateman@free.fr> | |
7342 | |
7343 * set/unique.m: import file from octave-forge. | |
7344 | |
7345 2005-01-05 David Bateman <dbateman@free.fr> | |
7346 | |
7347 * Makefile.in: include sparse directory in SUBDIRS. | |
7348 | |
7349 2004-12-30 John W. Eaton <jwe@octave.org> | |
7350 | |
7351 * sparse/nzmax.m: Delete (there is an nzmax function in | |
7352 src/DLD-FUNCTIONS/sparse.cc). | |
7353 | |
7354 2004-12-28 John W. Eaton <jwe@octave.org> | |
7355 | |
7356 Merge of sparse code from David Bateman <dbateman@free.fr> and | |
7357 Andy Adler <adler@site.uottawa.ca>. | |
7358 | |
7359 * sparse/colperm.m, sparse/nonzeros.m, sparse/nzmax.m, | |
7360 sparse/randperm.m, sparse/spalloc.m, sparse/spconvert.m, | |
7361 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/sphcat.m, | |
7362 sparse/spones.m, sparse/sprand.m, sparse/sprandn.m, | |
7363 sparse/spstats.m, sparse/spvcat.m, sparse/spy.m: New files. | |
7364 | |
7365 * sparse: New directory. | |
7366 | |
5158 | 7367 2005-02-22 John W. Eaton <jwe@octave.org> |
7368 | |
7369 * polynomial/residue.m: Force prepad to always create row vectors. | |
7370 | |
7371 * polynomial/poly.m: Quick return if m is 0. | |
7372 From Carmen Navarrete <carmen.navarrete@uam.es>. | |
7373 | |
5154 | 7374 2005-02-21 David Bateman <dbateman@free.fr> |
7375 | |
7376 * statistics/distributions/poisson_rnd.m: fix for lambda of zero. | |
7377 From Mark van Rossum <mvanross@inf.ed.ac.uk>. | |
7378 Fix for row vectors with at least one element of lambda not in | |
7379 (0, Inf). | |
7380 | |
5152 | 7381 2005-02-21 John W. Eaton <jwe@octave.org> |
7382 | |
5153 | 7383 * statistics/base/qqplot.m: Use feval instead of eval. |
7384 | |
5152 | 7385 * plot/grid.m, plot/plot_border.m, plot/title.m, plot/top_title.m, |
7386 plot/__axis_label__.m: Issue replot command. | |
7387 | |
5135 | 7388 2005-02-09 John W. Eaton <jwe@octave.org> |
7389 | |
7390 * polynomial/polyderiv.m: Force P to be a row vector. | |
7391 | |
5133 | 7392 2005-02-08 John W. Eaton <jwe@octave.org> |
7393 | |
7394 * strings/dec2base.m: Don't delete leading zero if third arg is | |
7395 provided and len <= computed max_len. | |
7396 | |
5125 | 7397 2005-01-27 David Bateman <dbateman@free.fr> |
7398 | |
7399 * strings/dec2base.m: Be even more careful about handling all digits. | |
7400 | |
7401 2005-01-27 Paul Kienzle <pkienzle@users.sf.net> | |
7402 | |
7403 * strings/dec2base.m: Use integer arithmetic to count number of digits. | |
7404 | |
5123 | 7405 2005-01-27 Benjamin Hall <benjamin.hall@pw.utc.com> |
7406 | |
7407 * statistics/base/median.m: Make it work for the scalar case too. | |
7408 | |
6308 | 7409 2005-01-25 Daniel J Sebald <daniel.sebald@ieee.org> |
5117 | 7410 |
7411 * plot/__plt__.m: Initialize fmt and sep outside of loop. | |
5118 | 7412 Simplify logic for decoding args. |
5117 | 7413 |
5115 | 7414 2005-01-24 John W. Eaton <jwe@octave.org> |
7415 | |
5116 | 7416 * plot/__plr__.m, plot/__plr2__.m: Pass name of caller to __plt__. |
7417 | |
7418 * plot/__plt__.m: No need to save and reset hold state now. | |
7419 (first_plot): Delete unused variable. | |
7420 | |
5115 | 7421 * plot/__plr2__.m, plot/__plt2__.m: Improve diagnostics. |
7422 | |
7423 * plot/__plr__.m: Use __plt__, not specific __pltXX__ functions. | |
7424 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, | |
7425 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
7426 plot/__plt2vv__.m: | |
7427 Return data and gnuplot commands instead of evaluating them. | |
7428 * plot/__plt__.m: Handle evaluation of all gnuplot commands here. | |
7429 Based on changes from Daniel J Sebald <daniel.sebald@ieee.org>. | |
7430 | |
5108 | 7431 2005-01-18 John W. Eaton <jwe@octave.org> |
7432 | |
7433 * linear-algebra/cross.m: Allocate idx1 before use. | |
7434 | |
5096 | 7435 2004-12-08 Heikki Junes <Heikki.Junes@hut.fi> |
7436 | |
7437 * statistics/base/range.m: Fix varargin usage. | |
7438 | |
5091 | 7439 2004-12-02 Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be> |
7440 | |
7441 * strings/deblank.m: Remove all trailing whitespace (check with | |
7442 isspace), not just SPC. | |
7443 | |
5090 | 7444 2004-12-02 Balint Reczey <balint_reczey@yahoo.com> |
7445 | |
7446 * statistics/base/moment.m: Fix argument parsing for N-d arrays. | |
7447 | |
5073 | 7448 2004-11-09 John W. Eaton <jwe@octave.org> |
7449 | |
7450 * miscellaneous/fileparts.m: Allow filenames with no extension. | |
7451 From Julius Smith <jos@ccrma.stanford.edu>. | |
7452 | |
5072 | 7453 2004-11-08 John W. Eaton <jwe@octave.org> |
7454 | |
7455 * plot/__plt2vm__.m: Delete debugging statement. | |
7456 From Dmitri A. Sergatskov <dmitri@unm.edu>. | |
7457 | |
5065 | 7458 2004-11-04 John W. Eaton <jwe@octave.org> |
7459 | |
7460 * plot/hist.m: Always return row vectors for vector args. | |
7461 | |
5031 | 7462 2004-09-23 John W. Eaton <jwe@octave.org> |
7463 | |
7464 * strings/strcmp.m: If args are not strings or cell arrays of | |
7465 strings, return zero instead of reporting an error. | |
7466 | |
5021 | 7467 2004-09-22 Federico Zenith <zenith@chemeng.ntnu.no> |
7468 | |
7469 * control/base/analdemo.m, control/base/are.m, control/base/bddemo.m, | |
7470 control/base/controldemo.m, control/base/damp.m, control/base/dare.m, | |
7471 control/base/dcgain.m, control/base/dgram.m, control/base/dlyap.m, | |
7472 control/base/dre.m, control/base/frdemo.m, control/base/gram.m, | |
7473 control/base/impulse.m, control/base/lqp.m, control/base/obsv.m, | |
7474 control/base/pzmap.m, control/base/rldemo.m, control/hinf/h2norm.m, | |
7475 control/hinf/hinfsyn.m, control/hinf/hinfsyn_ric.m, | |
7476 control/hinf/is_dgkf.m, control/system/c2d.m, | |
7477 control/system/is_detectable.m, control/system/is_sample.m, | |
7478 control/system/is_siso.m, control/system/is_stable.m, | |
7479 control/system/ss2sys.m, control/system/ss.m, control/system/sys2ss.m, | |
7480 control/system/sys2tf.m, control/system/sys2zp.m, | |
7481 control/system/sysappend.m, control/system/sysconnect.m, | |
7482 control/system/sysdisc.m, control/system/sysdup.m, | |
7483 control/system/sysgetsignals.m, control/system/sysmult.m, | |
7484 control/system/syssetsignals.m, control/system/syssub.m, | |
7485 control/system/tf2sys.m, control/system/ugain.m, | |
7486 control/system/zp2ss.m, control/system/zp2sys.m, | |
7487 control/system/zp2tf.m, control/util/axis2dlim.m, polynomial/roots.m, | |
7488 special-matrix/toeplitz.m: Fix typos in doc strings. | |
7489 | |
7490 * control/base/are.m, control/base/dare.m, control/base/lsim.m, | |
7491 control/base/ltifr.m, control/base/place.m,control/base/tzero2.m, | |
7492 control/base/tzero.m, control/hinf/hinf_ctr.m, control/hinf/wgt1o.m, | |
7493 ontrol/system/is_abcd.m, control/system/parallel.m, | |
7494 control/system/ss2tf.m, control/system/ss2zp.m, control/system/ss.m, | |
7495 control/system/sysappend.m, control/system/sysconnect.m, | |
7496 control/system/sysdup.m, control/system/sysgroup.m, | |
7497 control/system/sysprune.m, control/system/sysreorder.m, | |
7498 control/system/sysscale.m, control/system/syssub.m, | |
7499 control/system/tf2ss.m, control/system/tf2zp.m, control/util/zgfmul.m, | |
7500 control/util/zginit.m, control/util/zgscal.m, elfun/acoth.m, | |
7501 polynomial/polyout.m, specfun/log2.m: | |
7502 Add output arguments in doc strings. | |
7503 | |
7504 * control/base/are.m, control/base/bode_bounds, control/base/bode.m, | |
7505 control/base/__bodquist__.m, control/base/ctrb.m, control/base/dare.m, | |
7506 control/base/DEMOcontrol.m, control/base/dlyap.m, control/base/dre.m, | |
7507 control/base/freqchkw.m, control/base/__freqresp__.m, | |
7508 control/base/__freqresp__.m, control/base/lqp.m, control/base/lqr.m, | |
7509 contol/base/lsim.m, control/base/lyap.m, control/base/nyquist.m, | |
7510 control/base/obsv.m, control/base/place.m, control/base/pzmap.m, | |
7511 control/base/__stepimp__.m, control/base/step.m, control/base/tzero2.m | |
7512 control/base/tzero.m, control/hinf/dhinfdemo.m, control/hinf/h2norm.m, | |
7513 control/hinf/h2syn.m, control/hinf/hinfdemo.m, | |
7514 control/hinf/hinfnorm.m, control/hinf/hinfsyn_chk.m, | |
7515 control/hinf/hinfsyn.m, control/hinf/is_dgkf.m, | |
7516 control/obsolete/syschnames.m, control/obsolete/syschnames.m, | |
7517 control/system/c2d.m, control/system/is_abcd.m, | |
7518 control/system/is_controllable.m, control/system/is_detectable.m, | |
7519 control/system/is_observable.m, control/system/is_stable.m, | |
7520 control/system/jet707.m, control/system/ord2.m, | |
7521 control/system/starp.m, control/system/sys2fir.m, | |
7522 control/system/sys2ss.m, control/system/sys2tf.m, | |
7523 control/system/sys2zp.m, control/system/syscont.m, | |
7524 control/system/sysdisc.m, control/system/sysdup.m, | |
7525 control/system/sysgettype.m, control/system/sysgroup.m, | |
7526 control/system/sysmult.m, control/system/sysprune.m, | |
7527 control/system/sysreorder.m, control/system/sysscale.m, | |
7528 control/system/syssetsignals.m, control/system/sysupdate.m, | |
7529 control/system/tf2ss.m, control/system/tf2sys.m, | |
7530 control/system/zp2ss.m, control/system/zp2sys.m, | |
7531 control/util/axis2dlim.m, control/util/prompt.m, | |
7532 control/util/zgfmul.m, control/util/zginit.m, | |
7533 control/util/__zgpbal__.m, control/util/zgscal.m: | |
7534 Use @var, @strong, @command, @math, @acronym, @table and @cite | |
7535 in doc strings. | |
7536 | |
7537 * control/base/bode_bounds.m, control/base/ctrb.m, control/base/dre.m, | |
7538 control/base/dgram.m, control/base/dlyap.m, control/base/ltifr.m, | |
7539 control/base/nyquist.m, control/base/obsv.m, control/base/tzero.m, | |
7540 control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, | |
7541 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, | |
7542 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, | |
7543 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, | |
7544 control/hinf/wgt1o.m, control/obsolete/syschnames.m, | |
7545 control/system/c2d.m, control/system/fir2sys.m, | |
7546 control/system/is_stabilizable.m, control/system/jet707.m, | |
7547 control/system/ord2.m, control/system/ss2tf.m, control/system/tf2ss.m, | |
7548 control/util/zgshsr.m, polynomial/polyout.m: | |
7549 New @tex section(s) in doc strings for better formating of printed | |
7550 output. | |
7551 | |
7552 * control/base/__freqresp__.m, control/base/nyquist.m, | |
7553 control/base/__stepimp__.m, control/hinf/hinfdemo.m, | |
7554 control/obsolete/syschnames.m, control/system/sysprune.m: | |
7555 Use proper double quote marks for TeX. | |
7556 | |
7557 * control/base/DEMOcontrol.m: Add missing ; | |
7558 | |
7559 * control/base/nichols.m, control/base/rlocus.m, | |
7560 control/obsolete/minfo.m, control/system/is_digital.m, | |
7561 control/system/ss2zp.m, control/system/sysmin.m, | |
7562 control/system/tf2zp.m, control/util/sortcom.m: | |
7563 Convert documentation to use or more completely use Texinfo. | |
7564 | |
7565 * control/base/rlocus.m, control/hinf/dhinfdemo.m, | |
7566 control/hinf/hinfdemo.m, control/system/ord2.m, | |
7567 control/system/parallel.m, control/system/ss2tf.m, | |
7568 control/system/starp.m: Use "@group ... @end group" to avoid ascii | |
7569 art splitting over a page boundary. | |
7570 | |
7571 * control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, | |
7572 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, | |
7573 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, | |
7574 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, | |
7575 control/hinf/wgt1o.m, control/system/buildssic.m: | |
7576 Use {\cal H}_\infty for H-infinity and likewise for H-2 to | |
7577 the TeX documentation. | |
7578 | |
7579 * control/system/is_stabilizable.m: | |
7580 Add Copyright so that help is displayed correctly. | |
7581 | |
7582 * special-matrix/vander.m: Octave indexes start at 1. | |
7583 | |
5011 | 7584 2004-09-21 David Bateman <dbateman@free.fr> |
7585 | |
7586 * general/rotdim.m: New function for rotation of an N-d array in an | |
7587 arbitrary plane. | |
7588 | |
7589 * general/flipdim.m: New function to flip an N-d array about an | |
7590 arbitrary axis. | |
7591 | |
5003 | 7592 2004-09-15 David Bateman <dbateman@free.fr> |
7593 | |
7594 * general/bitget.m: Replace Bmax, which is undefined with bitmax | |
7595 | |
4992 | 7596 2004-09-15 John W. Eaton <jwe@octave.org> |
7597 | |
7598 * strings/strcmp.m: Fix typo in cell/string array case. | |
4993 | 7599 Use iscellstr to check for cells rather than iscell. |
7600 Improve diagnostics for invalid args. | |
4992 | 7601 |
4983 | 7602 2004-09-10 David Bateman <dbateman@free.fr> |
7603 | |
7604 * statistics/distributions/binomial_rnd.m: Fix error for scalar n | |
7605 and p with n > 1, and fix for matrix n and p with n == 1. | |
7606 | |
7607 * statistics/distributions/poisson_rnd.m: Fix for matrix length, | |
7608 due to row vs. column vector operations. | |
7609 | |
4964 | 7610 2004-09-03 David Bateman <dbateman@free.fr> |
7611 | |
7612 * general/repmat.m: Fix to allow logical classes. | |
7613 | |
4950 | 7614 2004-08-31 John W. Eaton <jwe@octave.org> |
7615 | |
7616 * general/isa.m: New function, from Octave-forge. | |
7617 | |
7618 2004-08-31 David Bateman <dbateman@free.fr> | |
7619 | |
7620 * general/bitcmp.m, general/bitget.m, general/bitset.m: Remove | |
7621 limitation on the use of int64 and uint64 types, and the use | |
7622 of the eval. | |
7623 | |
7624 * general/bitset.m: Remove superfluous cast to return type, as bug | |
7625 in .^ with integer types is fixed. | |
7626 | |
7627 * general/repmat.m: Adapt to allow integer types. | |
4945 | 7628 |
7629 2004-08-31 Paul Kienzle <pkienzle@users.sf.net> | |
7630 | |
7631 * plot/axis.m: Don't reset axes when querying them. | |
7632 | |
4942 | 7633 2004-08-27 David Bateman <dbateman@free.fr> |
7634 | |
7635 * statistics/base/ranks.m: Handle non-consecutive ties. | |
7636 Eliminate loop. | |
7637 | |
4918 | 7638 2004-07-27 David Bateman <dbateman@free.fr> |
7639 | |
7640 * general/num2str.m: Also insert spaces in output when precision | |
7641 argument is supplied. | |
7642 | |
4915 | 7643 2004-07-23 David Bateman <dbateman@free.fr> |
7644 | |
7645 * general/bitcmp.m, general/bitget.m, general/bitset.m: New functions. | |
7646 | |
4911 | 7647 2004-07-22 Etienne Grossmann <etienne@cs.uky.edu> |
7648 | |
7649 * general/sub2ind.m: Make reshaping index list unnecessary. | |
7650 | |
7651 2004-07-22 Paul Kienzle <pkienzle@users.sf.net> | |
7652 | |
7653 * miscellaneous/unix.m: Fix doc string. | |
7654 | |
7655 2004-07-22 Stefan van der Walt <stefan@sun.ac.za> | |
7656 | |
7657 * plot/figure.m: Clarification of documentation. | |
7658 | |
7659 * image/imshow.m: Warn for complex images. | |
7660 Only estimate colourmap for images in [0, 65536]. | |
7661 | |
7662 2004-07-22 David Bateman <dbateman@free.fr> | |
7663 | |
7664 * general/num2str.m: Fix the case of an all zero input. | |
7665 | |
4906 | 7666 2004-06-22 Etienne Grossmann <etienne@cs.uky.edu> |
7667 | |
7668 * general/ind2sub.m: Doc fix. | |
7669 | |
4900 | 7670 2004-06-08 John W. Eaton <jwe@octave.org> |
7671 | |
7672 * statistics/tests/kolmogorov_smirnov_test.m: Use func2str to | |
7673 convert function handle to string for eval. | |
7674 | |
4898 | 7675 2004-06-04 Paul Kienzle <pkienzle@users.sf.net> |
7676 | |
7677 * plot/errorbar.m: Remove debugging output. | |
7678 | |
7679 2004-06-03 Stefan van der Walt <stefan@sun.ac.za> | |
7680 | |
7681 * plot/__pltopt__.m: Properly escape @ symbols in doc string. | |
7682 | |
4897 | 7683 2004-06-03 Paul Kienzle <pkienzle@users.sf.net> |
7684 | |
4898 | 7685 * deprecated/com2str.m: Include 'i' suffix for pure imaginary numbers. |
7686 | |
7687 * polynomial/polyout.m: Use parenthesis if necessary around | |
7688 complex polynomial coefficient. | |
7689 | |
4897 | 7690 * plot/__errcomm__.m, plot/__errplot__.m: Simplify code and fix |
7691 the bug which causes __errplot__ to ignore the last argument. | |
7692 | |
4894 | 7693 2004-06-03 David Bateman <dbateman@free.fr> |
7694 | |
7695 * general/shiftdim.m: New function based on JWE code snippet. | |
7696 | |
7697 * general/circdim.m: New function. | |
7698 | |
4890 | 7699 2004-05-06 David Bateman <dbateman@free.fr> |
7700 | |
7701 * general/issquare.m: Fail if ndim(x) > 2. | |
7702 | |
7703 * linear-algebra/norm.m, linear-algebra/norm.m: Fail if ndim(x) > 2. | |
7704 | |
7705 * linear-alegbra/cross.m, linear-algebra/dot.m: Allow matrix and | |
7706 N-d array arguments. Add optional dim argument to define | |
7707 dimension along which to operate. | |
7708 | |
7709 * linear-algebra/dmult.m: Allow N-d arrays. | |
7710 | |
7711 * linear-algebra/vec.m: Use v(:) and not reshape. | |
7712 | |
4885 | 7713 2004-04-29 David Bateman <dbateman@free.fr> |
7714 | |
7715 * statistics/base/ranks.m, statistics/base/run_count.m, | |
7716 statistics/base/studentize.m, statistics/base/kurtosis.m | |
7717 statistics/base/statistics.m, statistics/base/skewness.m | |
7718 statistics/base/iqr.m: | |
7719 Make N-d array aware. Allow optional argument to define the | |
7720 dimension along which to operate. Update the documentation. | |
7721 | |
7722 * statistics/base/ranks.m: Change algorithm to use sort, | |
7723 and adjust for the ties after. | |
7724 | |
7725 * statistics/base/run_counts.m: Change algorithm to use | |
7726 the a combination of diff and find, rather than a for-loop. | |
7727 | |
4881 | 7728 2004-04-23 Paul Kienzle <pkienzle@users.sf.net> |
7729 | |
7730 * plot/hist.m: Correctly determine cutoffs. New tests. | |
7731 | |
4878 | 7732 2004-04-23 David Bateman <dbateman@free.fr> |
7733 | |
7734 * general/int2str.m: Treat only real part of argument, and treat | |
7735 NDArrays by stacking the slices through the matrix vertically. | |
7736 | |
7737 * general/num2str.m: Improve format of integer matrices, and the | |
7738 conversion of complex matrices added. Treat NDArrays by stacking | |
7739 the slices through the matrix vertically. | |
7740 | |
7741 * deprecated/com2str.m: Moved here from general subdirectory. | |
7742 | |
4877 | 7743 2004-04-22 John W. Eaton <jwe@octave.org> |
7744 | |
7745 * quaternion/qtransvmat.m: Use continuation characters to make | |
7746 sure result is a matrix instead of a vector. From <aklark@atdot.it>. | |
7747 | |
4869 | 7748 2004-04-21 David Bateman <dbateman@free.fr> |
7749 | |
5378 | 7750 * elfun/lcm.m: Make N-d aware. |
4870 | 7751 |
4869 | 7752 * general/diff.m: Make the code N-d array aware. Allow an |
7753 optional argument to define the dimension along which to perform | |
7754 the differences and allow the order of the differences to be larger | |
7755 than the dimension itself. | |
7756 | |
7757 * general/rot90.m, general/fliplr.m, general/flipud.m: Limit the | |
7758 use of these functions to 1- and 2-d arrays. | |
7759 | |
4863 | 7760 2004-04-16 John W. Eaton <jwe@octave.org> |
7761 | |
7762 * elfun/gcd.m: Delete. | |
7763 | |
4862 | 7764 2004-04-15 David Bateman <dbateman@free.fr> |
7765 | |
7766 * set/create_set.m, general/is_duplicate_entry.m: Make N-d array aware. | |
7767 | |
7768 * general/shift.m, general/prepad.m, general/postpad.m: Make N-d | |
7769 array aware and and optional argument for the dimension along | |
7770 which to operate. | |
7771 | |
5378 | 7772 * signal/unwrap.m: Make N-d array aware and fix optional |
4862 | 7773 argument for the dimension to be consistent with other N-d array |
7774 functions. | |
7775 | |
4860 | 7776 2004-04-08 David Bateman <dbateman@free.fr> |
7777 | |
7778 * statistics/distributions/discrete_cdf.m, | |
7779 statistics/distributions/discrete_inv.m, | |
7780 statistics/distributions/discrete_pdf.m, | |
7781 statistics/distributions/discrete_rnd.m, | |
7782 statistics/distributions/exponential_cdf.m, | |
7783 statistics/distributions/exponential_inv.m, | |
7784 statistics/distributions/exponential_pdf.m, | |
7785 statistics/distributions/exponential_rnd.m, | |
7786 statistics/distributions/f_cdf.m, | |
7787 statistics/distributions/f_inv.m, | |
7788 statistics/distributions/f_pdf.m, | |
7789 statistics/distributions/f_rnd.m, | |
7790 statistics/distributions/geometric_cdf.m, | |
7791 statistics/distributions/geometric_inv.m, | |
7792 statistics/distributions/geometric_pdf.m, | |
7793 statistics/distributions/geometric_rnd.m, | |
7794 statistics/distributions/hypergeometric_rnd.m, | |
7795 statistics/distributions/kolmogorov_smirnov_cdf.m, | |
7796 statistics/distributions/laplace_cdf.m, | |
7797 statistics/distributions/laplace_inv.m, | |
7798 statistics/distributions/laplace_pdf.m, | |
7799 statistics/distributions/laplace_rnd.m, | |
7800 statistics/distributions/logistic_inv.m, | |
7801 statistics/distributions/logistic_rnd.m, | |
7802 statistics/distributions/lognormal_cdf.m, | |
7803 statistics/distributions/lognormal_inv.m, | |
7804 statistics/distributions/lognormal_pdf.m, | |
7805 statistics/distributions/lognormal_rnd.m, | |
7806 statistics/distributions/pascal_cdf.m, | |
7807 statistics/distributions/pascal_inv.m, | |
7808 statistics/distributions/pascal_pdf.m, | |
7809 statistics/distributions/pascal_rnd.m, | |
7810 statistics/distributions/poisson_cdf.m, | |
7811 statistics/distributions/poisson_inv.m, | |
7812 statistics/distributions/poisson_pdf.m, | |
7813 statistics/distributions/poisson_rnd.m, | |
7814 statistics/distributions/t_cdf.m, | |
7815 statistics/distributions/t_inv.m, | |
7816 statistics/distributions/t_pdf.m, | |
7817 statistics/distributions/t_rnd.m, | |
7818 statistics/distributions/weibull_cdf.m, | |
7819 statistics/distributions/weibull_inv.m, | |
7820 statistics/distributions/weibull_pdf.m, | |
7821 statistics/distributions/weibull_rnd.m: | |
7822 Allow N-d arrays. | |
7823 | |
7824 * statistics/distributions/discrete_inv.m: Fix bug in indexing, | |
7825 that results in NaN in places where it should not have had. | |
7826 | |
7827 * statistics/distributions/discrete_rnd.m: New argument formats to | |
7828 allow creating arbitrary matrices, compatiable with the other | |
5583 | 7829 *_rnd.m functions. Maintain compatibility with previous format. |
4860 | 7830 |
7831 * statistics/distributions/empirical_rnd.m: New argument formats | |
7832 to allow creating arbitrary matrices, compatiable with the other | |
5583 | 7833 *_rnd.m functions. Maintain compatibility with previous |
4860 | 7834 format. Allow N-d arrays. |
7835 | |
7836 * statistics/distributions/hypergeometric_cdf.m, | |
7837 statistics/distributions/hypergeometric_inv.m, | |
7838 statistics/distributions/hypergeometric_pdf.m, | |
7839 statistics/distributions/wiener_rnd.m: | |
7840 Error for non-scalar arguments. | |
7841 | |
7842 * statistics/distributions/pascal_rnd.m: | |
7843 Correct for n = 1 bug, where all elements were equal. | |
7844 | |
4849 | 7845 2004-04-06 David Bateman <dbateman@free.fr> |
7846 | |
4854 | 7847 * general/common_size.m, miscellaneous/bincoeff.m, |
7848 statistics/distributions/beta_cdf.m, | |
7849 statistics/distributions/beta_inv.m, | |
7850 statistics/distributions/beta_pdf.m, | |
7851 statistics/distributions/beta_rnd.m, | |
7852 statistics/distributions/binomial_cdf.m, | |
7853 statistics/distributions/binomial_inv.m, | |
7854 statistics/distributions/binomial_pdf.m, | |
7855 statistics/distributions/binomial_rnd.m, | |
7856 statistics/distributions/cauchy_cdf.m, | |
7857 statistics/distributions/cauchy_inv.m, | |
7858 statistics/distributions/cauchy_pdf.m, | |
7859 statistics/distributions/cauchy_rnd.m, | |
7860 statistics/distributions/chisquare_cdf.m, | |
7861 statistics/distributions/chisquare_inv.m, | |
7862 statistics/distributions/chisquare_pdf.m, | |
7863 statistics/distributions/chisquare_rnd.m, | |
7864 statistics/distributions/gamma_cdf.m, | |
7865 statistics/distributions/gamma_inv.m, | |
7866 statistics/distributions/gamma_pdf.m, | |
7867 statistics/distributions/gamma_rnd.m, | |
7868 statistics/distributions/normal_cdf.m, | |
7869 statistics/distributions/normal_inv.m, | |
7870 statistics/distributions/normal_pdf.m, | |
7871 statistics/distributions/normal_rnd.m, | |
7872 statistics/distributions/stdnormal_cdf.m, | |
7873 statistics/distributions/stdnormal_pdf.m, | |
7874 statistics/distributions/stdnormal_rnd.m, | |
7875 statistics/distributions/uniform_cdf.m, | |
7876 statistics/distributions/uniform_inv.m, | |
7877 statistics/distributions/uniform_pdf.m, | |
7878 statistics/distributions/uniform_rnd.m: | |
7879 Allow the inputs to be N-d arrays. | |
7880 | |
4852 | 7881 * statistics/base/var.m: Update for N-d arrays. Allow dimension arg. |
7882 * statistics/base/median.m: Likewise. | |
4849 | 7883 |
4844 | 7884 2004-04-02 David Bateman <dbateman@free.fr> |
7885 | |
7886 * statistics/base/std.m: Allow optional args for type and dim. | |
4847 | 7887 * statistics/base/center.m, statistics/base/meansq.m, |
7888 statistics/base/moment.m, statistics/base/range.m: | |
4852 | 7889 Update for N-d arrays. |
4844 | 7890 * signal/fftshift.m: Fix dimensioning error. |
7891 | |
7892 * statistics/base/std.m: Use repmat not ones(nr,1)*mean to allow | |
4852 | 7893 N-d arrays. |
4844 | 7894 |
4852 | 7895 * general/mod.m, general/mod.m: Allow N-d arrays with one scalar arg. |
7896 | |
7897 * signal/fftshift.m: Update for N-d arrays, allow optional dim arg. | |
4844 | 7898 |
4852 | 7899 * specfun/erfinv.m, general/repmat.m: Update for N-d arrays. |
4844 | 7900 |
7901 * control/base/bode.m, control/base/lqg.m, control/system/ss2sys.m, | |
7902 control/system/cellidx.m, control/system/dmr2d.m control/system/ss.m, | |
7903 control/system/sysprune.m: Doc update for usage of cell arrays. | |
7904 | |
7905 * control/system/sysidx.m: Use cellidx and not listidx. | |
7906 | |
4841 | 7907 2004-03-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
7908 | |
7909 * plot/__pltopt1__.m: Always add title clause to plot command with | |
7910 default of "" (so it is off unless explicitly set by the user). | |
7911 | |
4836 | 7912 2004-03-12 Stefan van der Walt <stefan@sun.ac.za> |
7913 | |
7914 * image/imshow.m: Accept "truesize" argument. | |
7915 Ignore current colormap. New tests and demos. | |
7916 | |
4834 | 7917 2004-03-10 Volker Kuhlmann <VolkerKuhlmann@gmx.de> |
7918 | |
7919 * signal/sinewave.m: Allow N to default to M. | |
7920 | |
4826 | 7921 2004-03-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
7922 | |
7923 * signal/unwrap.m: Use "isempty (tol)" instead of "tol == []". | |
7924 | |
4818 | 7925 2004-03-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
7926 | |
7927 * general/deal.m: New function. | |
4819 | 7928 Add tests from Paul Kienzle. |
4818 | 7929 |
4811 | 7930 2004-03-03 Stefan van der Walt <stefan@sun.ac.za> |
7931 | |
7932 * plot/hist.m: Compute histogram correctly for n>=30. | |
7933 | |
5095 | 7934 2004-03-02 Paul Kienzle <pkienzle@users.sf.net> |
4807 | 7935 |
7936 * signal/sinc.m: Use i(:) instead of i when checking for any nonzeros. | |
7937 | |
4806 | 7938 2004-03-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
7939 | |
7940 * miscellaneous/horzcat.m: Delete. | |
7941 * miscellaneous/vertcat.m: Delete. | |
7942 | |
4790 | 7943 2004-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
7944 | |
7945 * plot/figure.m: Also look for GNUTERM in the environment and use | |
7946 that if it is set (for OS X). From Per Persson <persquare@mac.com>. | |
7947 | |
4789 | 7948 2004-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
7949 | |
7950 * control/base/__stepimp__.m: Only call clearplot if we will be | |
7951 doing multiple plots in the same gnuplot frame. | |
7952 | |
4780 | 7953 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
7954 | |
7955 * control/system/__sysconcat__.m, control/system/__tfl__.m, | |
7956 control/system/cellidx.m, control/system/ss.m, | |
7957 control/system/tf.m, control/system/zp.m: New functions. | |
7958 | |
4778 | 7959 2004-02-16 Glenn Golden <gdg@zplane.com> |
7960 | |
7961 * statistics/distributions/discrete_inv.m: | |
7962 Reduce memory requirements. | |
7963 | |
4772 | 7964 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
7965 | |
7966 * plot/__errcomm__.m: Fix thinko in previous change. | |
7967 From Teemu Ikonen <tpikonen@pcu.helsinki.fi>. | |
7968 | |
4771 | 7969 2004-02-16 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
7970 | |
7971 * control/base/__bodquist__.m, control/base/__stepimp__.m, | |
7972 control/base/analdemo.m, control/base/bddemo.m, | |
7973 control/base/bode.m, control/base/dre.m, control/base/frdemo.m, | |
7974 control/base/lqg.m, control/base/nyquist.m, control/base/place.m, | |
7975 control/base/rldemo.m, control/base/rlocus.m, | |
7976 control/base/tzero.m, control/hinf/dgkfdemo.m, | |
7977 control/hinf/dhinfdemo.m, control/hinf/h2syn.m, | |
7978 control/hinf/hinf_ctr.m, control/hinf/hinfsyn.m, | |
7979 control/hinf/wgt1o.m, control/obsolete/dlqg.m, | |
7980 control/obsolete/packsys.m, control/obsolete/series.m, | |
7981 control/system/__sysdefioname__.m, | |
7982 control/system/__sysdefstname__.m, control/system/__sysgroupn__.m, | |
7983 control/system/__tf2sysl__.m, control/system/buildssic.m, | |
7984 control/system/c2d.m, control/system/d2c.m, | |
7985 control/system/dmr2d.m, control/system/fir2sys.m, | |
7986 control/system/is_signal_list.m, control/system/is_siso.m, | |
7987 control/system/jet707.m, control/system/listidx.m, | |
7988 control/system/moddemo.m, control/system/ord2.m, | |
7989 control/system/packedform.m, control/system/parallel.m, | |
7990 control/system/ss2sys.m, control/system/sys2tf.m, | |
7991 control/system/sys2zp.m, control/system/sysadd.m, | |
7992 control/system/sysappend.m, control/system/sysconnect.m, | |
7993 control/system/syscont.m, control/system/sysdimensions.m, | |
7994 control/system/sysdisc.m, control/system/sysdup.m, | |
7995 control/system/sysgetsignals.m, control/system/sysgettype.m, | |
7996 control/system/sysgroup.m, control/system/sysmin.m, | |
7997 control/system/sysmult.m, control/system/sysprune.m, | |
7998 control/system/sysrepdemo.m, control/system/sysscale.m, | |
7999 control/system/syssetsignals.m, control/system/syssub.m, | |
8000 control/system/sysupdate.m, control/system/tf2sys.m, | |
8001 control/system/ugain.m, control/system/zp2ss.m, | |
8002 control/system/zp2sys.m, control/util/__outlist__.m, | |
8003 control/util/__zgpbal__.m, control/util/strappend.m: | |
8004 Use cell arrays instead of lists. | |
8005 | |
4723 | 8006 2004-01-23 Stefan van der Walt <stefan@sun.ac.za> |
8007 | |
8008 * plot/bar.m: Increase size of cutoff vector from xlen-1 to xlen | |
8009 so that bar (1, 1) will work. | |
8010 | |
4710 | 8011 2004-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8012 | |
4717 | 8013 * plot/__errcomm__.m: Cope with nargin now being a function. |
8014 * plot/__errplot__.m: Likewise. | |
8015 * plot/__plt__.m: Likewise. | |
8016 * plot/plot_border.m: Likewise. | |
8017 | |
4710 | 8018 * Makefile.in (distclean, maintainer-clean): Remove DOCSTRINGS, |
8019 not $(DOCSTRINGS). | |
8020 | |
4706 | 8021 2004-01-21 Quentin Spencer <qspencer@ieee.org> |
8022 | |
8023 * linear-algebra/rank.m: Allow rank ([]) to return 0, same as | |
8024 rank ([], tol). | |
8025 | |
4691 | 8026 2004-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8027 | |
4692 | 8028 * elfun/acot.m: Return atan (1./z). |
8029 From Gregory Vanuxem <g.vanuxem@wanadoo.fr>. | |
8030 | |
4691 | 8031 * miscellaneous/dir.m: New file. |
8032 | |
8033 * general/num2str.m: Use "%d" as format if values are ints with | |
8034 magnitude less than 1e10. | |
8035 | |
8036 2004-01-09 John W. Eaton <jwe@bevo.che.wisc.edu> | |
8037 | |
8038 * general/num2str.m: If single arg is string, return it. | |
8039 | |
8040 * miscellaneous/not.m: New file. | |
8041 | |
8042 * miscellaneous/unix.m: New file. | |
8043 | |
8044 * miscellaneous/isunix.m: New file. | |
8045 * miscellaneous/ispc.m: New file. | |
8046 | |
8047 * miscellaneous/computer.m: New file. | |
8048 | |
8049 * miscellaneous/delete.m: New file. | |
8050 | |
4689 | 8051 2004-01-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
8052 | |
8053 * statistics/tests/kolmogorov_smirnov_test_2.m: Fix test for ties. | |
8054 | |
8055 2004-01-07 John W. Eaton <jwe@bevo.che.wisc.edu> | |
8056 | |
8057 * miscellaneous/path.m: Handle DEFAULT_LOADPATH substitution. | |
8058 Always return substituted version of LOADPATH if nargout != 0. | |
8059 | |
4685 | 8060 2003-12-21 Schloegl Alois <alois.schloegl@tugraz.at> |
8061 | |
8062 * miscellaneous/fullfile.m: If filename is empty, set it to "." | |
8063 before continuing. | |
8064 | |
8065 * miscellaneous/fileparts.m: Allow name to start with ".". | |
8066 | |
4677 | 8067 2003-12-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
8068 | |
8069 * general/ind2sub.m: New file. | |
8070 * general/sub2ind.m: New file. | |
8071 | |
4675 | 8072 2003-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8073 | |
8074 * control/system/zp2ss.m: Don't save and restore | |
8075 warn_empty_list_elements. | |
8076 | |
8077 2003-12-15 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> | |
8078 | |
6778 | 8079 * control/system/zp2ss.m: Correct definition of pure gain system. |
4675 | 8080 |
4673 | 8081 2003-12-10 Quentin Spencer <qspencer@ieee.org> |
8082 | |
8083 * statistics/base/mean.m: Remove special case for row vectors. | |
8084 | |
4637 | 8085 2003-11-19 Quentin Spencer <qspencer@ieee.org> |
8086 | |
8087 * signal/freqz_plot.m: Save and restore automatic_replot too. | |
8088 | |
4631 | 8089 2003-11-18 Danilo Piazzalunga <danilopiazza@libero.it> |
8090 | |
8091 * statistics/base/iqr.m: Handle matrices. | |
8092 | |
4630 | 8093 2003-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8094 | |
8095 * general/issymmetric.m: Don't fail if norm (x) == 0. | |
8096 | |
4629 | 8097 2003-11-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
8098 | |
8099 * miscellaneous/path.m: Fix thinko in previous change. | |
8100 | |
4609 | 8101 2003-11-14 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
8102 | |
4629 | 8103 * control/base/dare.m: Check positive (semi)definiteness and |
8104 dimensions of r (and q). | |
8105 * control/base/dlqr.m: Check stabilizability of (A,B), | |
8106 detectability of (A,Q), and whether (A,Q) has non minimal modes | |
8107 near unit circle. | |
4611 | 8108 |
8109 * control/system/is_detectable.m: Use Hautus Lemma. | |
8110 Correct the behavior for discrete-time systems. | |
8111 * control/system/is_stabilizable.m: Likewise. | |
8112 | |
4609 | 8113 * linear-algebra/krylov.m: Return H = [] in Vnrm == 0 case. |
8114 | |
8115 * linear-algebra/krylovb.m: Fix typo in usage message. | |
8116 | |
4610 | 8117 * general/isdefinite.m: New function. |
8118 | |
4567 | 8119 2003-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
8120 | |
8121 * general/reshape: Delete. | |
8122 | |
4559 | 8123 2003-10-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
8124 | |
8125 * general/numel.m: Delete. | |
8126 | |
4535 | 8127 2003-10-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8128 | |
4536 | 8129 * miscellaneous/horzcat.m, miscellaneous/vartcat.m: New files. |
8130 | |
8131 * deprecated/isstr.m: New file. | |
4535 | 8132 |
4529 | 8133 2003-10-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
8134 | |
8135 * plot/__axis_label__.m, plot/xlabel.m, plot/ylabel.m, | |
8136 plot/zlabel.m, plot/title.m: Return a value if nargout > 0. | |
8137 | |
4525 | 8138 2003-10-02 Quentin Spencer <qspencer@ieee.org> |
8139 | |
8140 * statistics/base/mean.m: Fix missing semicolon problem. | |
8141 | |
4503 | 8142 2003-09-08 Al Niessner <Al.Niessner@jpl.nasa.gov> |
8143 | |
8144 * plot/subplot.m: New global variable, __multiplot_scale__. | |
8145 | |
4492 | 8146 2003-08-29 David Castelow <DCastelow@Airspan.com> |
8147 | |
8148 * strings/dec2base.m, strings/dec2bin.m, strings/dec2hex.m: | |
8149 Allow optional length argument. | |
8150 | |
4491 | 8151 2003-08-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
8152 | |
8153 * polynomial/polyfit.m: Avoid calling flipud. | |
8154 From Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be>. | |
8155 Return structure as second output value for improved Matlab | |
8156 compatibility. | |
8157 | |
4476 | 8158 2003-07-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
8159 | |
4478 | 8160 * linear-algebra/cond.m: Behave as though old built-in variable |
8161 propagate_empty_matrices is always 1. Also handle empty matrices | |
8162 with one non-zero dimension. | |
8163 | |
4476 | 8164 * miscellaneous/dump_prefs.m: Add warn_separator_insert and |
8165 warn_single_quote_string to the list. | |
4478 | 8166 Delete whitespace_in_literal_matrix and propagate_empty_matrices |
8167 from the list. | |
4476 | 8168 |
5095 | 8169 2003-07-25 Paul Kienzle <pkienzle@users.sf.net> |
4469 | 8170 |
8171 * signal/autocov.m: Transpose result of conj because diag returns | |
8172 a column vector, not a row vector. | |
8173 | |
8174 * audio/playaudio.m, audio/record.m, image/image.m, | |
8175 miscellaneous/bug_report.m: Protect spaces in filenames | |
8176 with quotes. | |
8177 | |
4466 | 8178 2003-07-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8179 | |
4468 | 8180 * io/printf.m, io/puts.m: Delete. |
8181 | |
4466 | 8182 * miscellaneous/dump_prefs.m: Delete define_all_return_values and |
8183 default_return_value from the list. | |
8184 Add warn_undefined_return_values to the list. | |
8185 | |
8186 | |
4464 | 8187 2003-07-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
8188 | |
8189 * miscellaneous/dump_prefs.m: Delete default_global_variable_value | |
8190 and initialize_global_variables from the list. | |
8191 | |
4460 | 8192 2003-07-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
8193 | |
4463 | 8194 * image/colormap.m: Don't save and restore default_eval_print_flag. |
8195 | |
8196 * miscellaneous/dump_prefs.m: Delete default_eval_print_flag. | |
8197 | |
8198 * control/util/zgshsr.m: Use x OP= y instead of x = x OP y. | |
8199 * control/system/sys2fir.m: Likewise. | |
8200 | |
8201 * control/system/is_siso.m: Use && instead of & where appropriate. | |
8202 * control/system/__tf2sysl__.m: Likewise. | |
8203 | |
8204 * control/system/__tf2sysl__.m: Use end instead of length(X). | |
8205 | |
8206 * control/freqchkw.m: Use %-escapes for error instead of num2str | |
8207 and [] concatenation. | |
8208 * control/system/sys2fir.m: Likewise. | |
8209 | |
8210 * control/base/dgram.m, control/base/freqchkw.m, | |
8211 control/base/gram.m, control/system/__abcddims__.m, | |
8212 control/system/__sysdefstname__.m, control/system/__tf2sysl__.m, | |
8213 control/system/is_sample.m, control/system/is_signal_list.m, | |
8214 control/system/is_siso.m, control/system/sys2fir.m, | |
8215 control/system/syschtsam.m, control/system/sysgettsam.m, | |
8216 control/system/sysgettype.m, control/system/tf2zp.m, | |
8217 control/system/ugain.m, control/util/prompt.m, | |
8218 control/util/run_cmd.m, control/util/zgrownorm.m, | |
8219 control/util/zgshsr.m: | |
8220 Improve conformance to Octave coding style. | |
8221 | |
4461 | 8222 * miscellaneous/dump_prefs.m: Add warn_resize_on_reange_error to |
8223 the list. | |
8224 Delete resize_on_range_error from the list. | |
8225 | |
4460 | 8226 * control/base/pzmap.m, control/base/place.m, |
8227 control/base/__freqresp__.m, control/system/sysappend.m, | |
8228 control/system/syscont.m, control/system/sysdisc.m, | |
8229 control/system/sysgroup.m, control/system/tfout.m, | |
8230 control/system/zp2ss.m, control/system/zpout.m, | |
8231 control/util/__outlist__.m, signal/arma_rnd.m, general/shift.m, | |
8232 strings/strcat.m: Save and restore warn_empty_list_elements, not | |
8233 empty_list_elements_ok. | |
8234 | |
8235 * miscellaneous/dump_prefs.m: Add warn_empty_list_elements to the list. | |
8236 Delete empty_list_elements_ok from the list. | |
8237 | |
4457 | 8238 2003-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8239 | |
8240 * miscellaneous/dump_prefs.m: Include warn_neg_dim_as_zero in the | |
8241 list. | |
8242 Delete treat_neg_dim_as_zero from the list. | |
8243 | |
8244 * strings/blanks.m: Don't check treat_neg_dim_as_zero. | |
8245 | |
4451 | 8246 2003-07-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8247 | |
4455 | 8248 * general/reshape.m: Omit do_fortran_indexing from doc string (it |
8249 was not used in the code in any case). | |
8250 | |
8251 * strings/strjust.m: Temporarily set warn_fortran_indexing, not | |
8252 do_fortran_indexing. | |
8253 | |
4452 | 8254 * statistics/base/moment.m: Temporarily set warn_str_to_num, not |
8255 implict_str_to_num_ok. Use unwind_protect block to do it. | |
8256 | |
4451 | 8257 * miscellaneous/dump_prefs.m: Include DEFAULT_EXEC_PATH, |
8258 DEFAULT_LOAD_PATH, crash_dumps_octave_core, | |
4452 | 8259 sighup_dumps_octave_core, sigterm_dumps_octave_core, |
4455 | 8260 warn_imag_to_real, warn_num_to_str, warn_str_to_num, and |
8261 warn_fortran_indexing in the list. | |
8262 Delete ok_to_lose_imaginary_part, implicit_num_to_str_ok, | |
8263 implicit_str_to_num_ok, do_fortran_indexing, and | |
8264 prefer_column_vectors from list. | |
4451 | 8265 |
4440 | 8266 2003-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
8267 | |
8268 * Makefile.in (distclean, maintainer-clean): Also remove | |
8269 gethelp$(BUILD_EXEEXT), $(DOCSTRINGS), and autom4te.cache | |
8270 directory. | |
8271 | |
5095 | 8272 2003-06-17 Aaron A. King <king@quercus.tiem.utk.edu> |
4430 | 8273 |
8274 * plot/hist.m: Don't forget to define n if x is a vector. | |
8275 | |
5095 | 8276 2003-06-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4424 | 8277 |
8278 * miscellaneous/fileparts.m: For compatibility with Matlab, | |
8279 return "." with extension. | |
8280 | |
4422 | 8281 2003-06-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
8282 | |
8283 * control/base/__stepimp__.m, control/base/nichols.m, | |
8284 control/base/nyquist.m, miscellaneous/dump_prefs.m, | |
8285 plot/bottom_title.m, plot/mplot.m, plot/multiplot.m, | |
8286 plot/oneplot.m, plot/plot_border.m, plot/subplot.m, | |
8287 plot/subwindow.m, plot/top_title.m, signal/freqz_plot.m: | |
8288 Eliminate gnuplot_has_multiplot (assume it is always true). | |
8289 | |
4413 | 8290 2003-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
8291 | |
8292 * Makefile.in, image/Makefile.in, startup/Makefile.in: Handle DESTDIR. | |
8293 | |
5095 | 8294 2003-05-05 Andy Adler <adler@site.uottawa.ca> |
4407 | 8295 |
8296 * plot/hist.m: Improve performance by using different algorithms | |
8297 depending on number of bins. | |
8298 | |
4404 | 8299 2003-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8300 | |
8301 * control/system/sysadd.m: If systems are not "tf", convert before | |
8302 adding. | |
8303 | |
5095 | 8304 2003-05-01 Paul Kienzle <pkienzle@users.sf.net> |
4403 | 8305 |
8306 * image/imagesc.m: Accept data limits parameter for colormap. | |
8307 | |
5095 | 8308 2003-04-11 Doug Stewart <dastew@sympatico.ca> |
4375 | 8309 |
8310 * control/base/__stepimp__.m: If digital impulse, reduce gain of | |
8311 the impulse by t_step. | |
8312 | |
4373 | 8313 2003-04-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
8314 | |
8315 * control/base/__bodquist__.m: Don't convert pdbig and fdbig to | |
8316 column vectors. | |
8317 | |
5095 | 8318 2003-03-24 Quentin Spencer <qspencer@ieee.org> |
4371 | 8319 |
8320 * linear-algebra/null.m: Handle empty matrix arg. | |
8321 | |
4369 | 8322 2003-03-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8323 | |
8324 * general/shift.m: Force empty_list_elements_ok to 1. | |
8325 | |
4358 | 8326 2003-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8327 | |
8328 * deprecated/struct_contains.m, deprecated/struct_elements.m: | |
8329 New files. | |
8330 | |
4348 | 8331 2003-02-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
8332 | |
8333 * statistics/tests/kolmogorov_smirnov_test.m: Use str2func to make | |
8334 function handle to pass to feval. | |
8335 * statistics/base/qqplot.m: Likewise. | |
8336 * statistics/base/ppplot.m: Likewise. | |
8337 * signal/spectral_xdf.m: Likewise. | |
8338 * signal/spectral_adf.m: Likewise. | |
8339 | |
4340 | 8340 2003-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
8341 | |
8342 * plot/axis.m: Avoid whitespace in literal matrix problem. | |
8343 | |
4334 | 8344 2003-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8345 | |
8346 * linear-algebra/logm.m: New file. | |
8347 | |
5095 | 8348 2003-02-18 David Bateman <dbateman@free.fr> |
4329 | 8349 |
8350 * mkpkgadd: Scan C++ files as well | |
8351 | |
5095 | 8352 2003-02-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4321 | 8353 |
8354 * strings/findstr.m: Return empty set for zero-length target. | |
8355 | |
5095 | 8356 2003-02-11 Paul Kienzle <pkienzle@users.sf.net> |
4317 | 8357 |
8358 * set/union.m: Preserve the orientation of inputs. | |
8359 | |
4305 | 8360 2003-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
8361 | |
8362 * general/int2str.m: Eliminate leading spaces. | |
8363 | |
4303 | 8364 2003-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8365 | |
8366 * general/int2str.m: Do a better job with 0, Inf, and NaN, | |
8367 | |
5095 | 8368 2003-01-11 Paul Kienzle <pkienzle@users.sf.net> |
4298 | 8369 |
8370 * Makefile.in (gethelp$(BUILD_EXEEXT)): Pass $(BUILD_CXXFLAGS) and | |
8371 $(BUILD_LDFLAGS) to compiler. | |
8372 | |
4295 | 8373 2003-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8374 | |
8375 * general/num2str.m: Don't specify field width for scalars. | |
8376 | |
4292 | 8377 2003-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
8378 | |
8379 * Makefile.in (DISTFILES): Don't forget mkpkgadd. | |
8380 | |
4265 | 8381 2003-01-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
8382 | |
4279 | 8383 * gethelp.cc: Define __USE_STD_IOSTREAM if using Compaq C++. |
8384 | |
4266 | 8385 * miscellaneous/tempname.m: New file. |
8386 | |
8387 * miscellaneous/tempdir.m: New file. | |
8388 | |
4265 | 8389 * miscellaneous/fullfile.m: New file. |
8390 | |
4259 | 8391 2003-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
8392 | |
4264 | 8393 * miscellaneous/fileparts.m: New file. |
8394 | |
8395 * io/beep.m: New file. | |
8396 | |
4260 | 8397 * plot/__pltopt1__.m: Call undo_string_escapes for title part of |
8398 format only. | |
4259 | 8399 |
4257 | 8400 2003-01-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8401 | |
8402 * strings/strcmp.m: Handle cell arrays of strings. | |
8403 | |
4229 | 8404 2002-12-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8405 | |
8406 * general/int2str.m: Handle matrices. | |
8407 * general/num2str.m: Likewise. | |
8408 Also handle optional precision, and format args. | |
8409 | |
4225 | 8410 2002-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
8411 | |
8412 * audio/Makefile.in, control/base/Makefile.in, | |
8413 control/hinf/Makefile.in, control/obsolete/Makefile.in, | |
8414 control/system/Makefile.in, elfun/Makefile.in, | |
8415 finance/Makefile.in, general/Makefile.in, image/Makefile.in, | |
8416 io/Makefile.in, linear-algebra/Makefile.in, | |
8417 miscellaneous/Makefile.in, polynomial/Makefile.in, | |
8418 quaternion/Makefile.in, set/Makefile.in, signal/Makefile.in, | |
8419 specfun/Makefile.in, special-matrix/Makefile.in, | |
8420 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
8421 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
8422 strings/Makefile.in, time/Makefile.in, plot/Makefile.in, | |
8423 deprecated/Makefile.in: Use new do-script-install and | |
8424 do-script-uninstall macros. | |
8425 | |
8426 * mkpkgadd: New script. | |
8427 | |
8428 * plot/close.m: New file. | |
8429 | |
4184 | 8430 2002-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8431 | |
8432 * image/image.m: Use -raw option for xv. | |
8433 From Remy Bruno <remy.bruno@libertysurf.fr> | |
8434 | |
4172 | 8435 2002-11-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
8436 | |
4174 | 8437 * control/base/lsim.m: Use approximate test for step size change. |
8438 | |
4172 | 8439 * signal/bartlett.m: Avoid row/column mismatch error. |
8440 | |
5095 | 8441 2002-11-12 Paul Kienzle <pkienzle@users.sf.net> |
4171 | 8442 |
8443 * statistics/base/var.m: Use better formula for improved accuracy. | |
8444 | |
5095 | 8445 2002-11-04 Nicholas Piper <nick-octave@nickpiper.co.uk> |
4150 | 8446 |
8447 * control/base/lsim.m: Correct doc string. | |
8448 | |
5095 | 8449 2002-11-04 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
4150 | 8450 |
8451 * control/system/syssub.m: Call tf2sys with Gnum-Hnum, not Gnum+Hnum. | |
8452 | |
4148 | 8453 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8454 | |
8455 * plot/contour.m: Handle x and y as matrices too. | |
8456 | |
5095 | 8457 2002-11-01 Joseph P. Skudlarek <jskud@jskud.com> |
4148 | 8458 |
8459 * plot/contour.m: Fix error and usage messages. | |
8460 | |
4146 | 8461 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8462 | |
8463 * plot/contour.m: Correct orientation of plot. | |
8464 | |
4139 | 8465 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
8466 | |
8467 * control/base/analdemo.m: Fix typo. | |
8468 | |
5095 | 8469 2002-10-31 Francesco Potorti` <pot@gnu.org> |
4137 | 8470 |
8471 * statistics/distributions/discrete_pdf.m: Fix typo. | |
8472 | |
4098 | 8473 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8474 | |
8475 * mkdoc: Exit immediately on errors. | |
8476 Exit with error if gethelp does not exist. | |
8477 | |
8478 * Makefile.in: Use $(BUILD_EXEEXT) as appropriate. | |
8479 | |
4093 | 8480 2002-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
8481 | |
8482 * Makefile.in (gethelp): Use $(BUILD_CXX), not $(CXX). | |
8483 | |
5095 | 8484 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4079 | 8485 |
8486 * statistics/distributions/normal_cdf.m: Handle variance == 0. | |
8487 * statistics/distributions/normal_pdf.m: Likewise. | |
8488 * statistics/distributions/normal_inv.m: Likewise. | |
8489 | |
5095 | 8490 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4077 | 8491 |
8492 * specfun/erfinv.m: Return NaN for NaN inputs. | |
8493 | |
5095 | 8494 2002-09-26 Jeff Cunningham <jeffrey@cunningham.net> |
4068 | 8495 |
8496 * statistics/base/var.m: Handle complex values. | |
8497 | |
4031 | 8498 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8499 | |
8500 * configure.in (AC_CONFIG_FILES): Add deprecated/Makefile to the | |
8501 list. | |
8502 * deprecated/Makefile.in: New file. | |
8503 | |
5095 | 8504 2002-08-09 Paul Kienzle <pkienzle@users.sf.net> |
4031 | 8505 |
8506 * statistics/distributions/beta_cdf.m: Replace betai with betainc. | |
8507 * statistics/distributions/binomial_cdf.m: Likewise. | |
8508 * statistics/distributions/f_cdf.m: Likewise. | |
8509 * statistics/distributions/t_cdf.m: Likewise. | |
8510 | |
8511 * miscellaneous/bincoeff.m: Replace lgamma with gammaln. | |
8512 * specfun/beta.m: Likewise. | |
8513 * special-matrix/invhilb.m: Likewise (but it is only in a comment). | |
8514 * statistics/distributions/gamma_pdf.m: Likewise. | |
8515 * statistics/distributions/poisson_pdf.m: Likewise. | |
8516 | |
8517 * statistics/distributions/gamma_cdf.m: replace gammai with gammainc | |
8518 * statistics/distributions/poisson_cdf.m: Likewise. | |
8519 | |
4026 | 8520 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8521 | |
4028 | 8522 * deprecated/is_bool.m: New file. |
8523 * deprecated/is_complex.m: New file. | |
8524 * deprecated/is_global.m: New file. | |
8525 * deprecated/is_list.m: New file. | |
8526 * deprecated/is_matrix.m: New file. | |
8527 * deprecated/is_scalar.m: New file. | |
8528 * deprecated/is_square.m: New file. | |
8529 * deprecated/is_stream.m: New file. | |
8530 * deprecated/is_struct.m: New file. | |
8531 * deprecated/is_symmetric.m: New file. | |
8532 * deprecated/is_vector.m: New file. | |
4030 | 8533 * Change all callers of these functions to use the new names. |
4028 | 8534 |
4029 | 8535 * deprecated: New directory. |
8536 * Makefile.in (SUBDIRS): Add it to the list. | |
8537 | |
4026 | 8538 * general/isscalar.m: Rename from is_scalar.m. |
8539 * general/issquare.m: Rename from is_square.m. | |
8540 * general/issymmetric.m: Rename from is_symmetric.m. | |
8541 * general/isvector.m: Rename from is_vector.m. | |
8542 | |
4022 | 8543 2002-08-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
8544 | |
8545 * statistics/base/mean.m: Allow empty matrices. | |
8546 Handle DIM arg. | |
8547 | |
5095 | 8548 2002-08-05 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4020 | 8549 |
8550 * plot/__errcomm__.m: If format is not specified, default to error | |
8551 bar format. | |
8552 | |
4011 | 8553 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8554 | |
8555 * miscellaneous/popen2.m: Use F_SETFL and O_NONBLOCK, not | |
8556 __F_SETFL__ and __O_NONBLOCK__. | |
8557 | |
8558 * image/saveimage.m: Use OCTAVE_VERSION, not __OCTAVE_VERSION__. | |
8559 * miscellaneous/bug_report.m: Likewise. | |
8560 | |
4007 | 8561 2002-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
8562 | |
4008 | 8563 * general/mod.m: Use isreal (x), not any (any (imag (x))). |
8564 * general/rem.m: Likewise. | |
8565 | |
8566 * plot/loglogerr.m: Use varargin instead of old style varargs. | |
8567 * plot/semilogxerr.m: Likewise. | |
4007 | 8568 * plot/semilogyerr.m: Likewise. |
8569 | |
5095 | 8570 2002-07-25 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4006 | 8571 |
8572 * plot/__errcomm__.m: New file. Common functionality for error plots. | |
8573 * plot/loglogerr.m: New file. Double logarithm plots with errorbars. | |
8574 * plot/semilogxerr.m: New file. Semilogarithm plots with errorbars. | |
8575 * plot/semilogyerr.m: New file. Semilogarithm plots with errorbars | |
8576 | |
8577 * plot/errorbar.m: Use __errcomm__.m. | |
8578 * plot/__errplot__.m: Minor cleanups. | |
8579 * plot/__pltopt__.m: Handle boxxyerrorbars plot style. | |
8580 * plot/__pltopt1__.m: Likewise. | |
8581 | |
3980 | 8582 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8583 | |
3981 | 8584 * general/rem.m: Delete redundant call to usage. |
8585 | |
3980 | 8586 * general/mod.m: Additional error checks, Texinfoize doc string. |
8587 | |
5095 | 8588 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3980 | 8589 |
8590 * general/mod.m: New function. | |
8591 | |
3979 | 8592 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8593 | |
8594 * control/system/sysmult.m: Use varargin instead of old style varargs. | |
8595 * control/system/sysadd.m: Likewise. | |
8596 * control/system/sysgroup.m: Likewise. | |
8597 * control/system/syssub.m: Likewise. | |
8598 * elfun/gcd.m: Likewise. | |
8599 * elfun/lcm.m: Likewise. | |
8600 * general/common_size.m: Likewise. | |
8601 * io/printf.m: Likewise. | |
8602 * miscellaneous/menu.m: Likewise. | |
8603 * miscellaneous/path.m: Likewise. | |
8604 * plot/__errplot__.m: Likewise. | |
8605 * plot/__plt__.m: Likewise. | |
8606 * plot/axis.m: Likewise. | |
8607 * plot/errorbar.m: Likewise. | |
8608 * plot/mplot.m: Likewise. | |
8609 * plot/loglog.m: Likewise. | |
8610 * plot/plot.m: Likewise. | |
8611 * plot/plot_border.m: Likewise. | |
8612 * plot/semilogx.m: Likewise. | |
8613 * plot/semilogy.m: Likewise. | |
8614 * plot/xlabel.m: Likewise. | |
8615 * plot/ylabel.m: Likewise. | |
8616 * plot/zlabel.m: Likewise. | |
8617 * statistics/base/ppplot.m: Likewise. | |
8618 * statistics/base/qqplot.m: Likewise. | |
8619 * statistics/tests/bartlett_test.m: Likewise. | |
8620 * statistics/tests/kolmogorov_smirnov_test.m: Likewise. | |
8621 * statistics/tests/kruskal_wallis_test.m: Likewise. | |
8622 * strings/str2mat.m: Likewise. | |
8623 * strings/strcat.m: Likewise. | |
8624 | |
5095 | 8625 2002-06-27 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
3962 | 8626 |
8627 * statistics/distributions/gamma_pdf.m: Avoid overflow in more cases. | |
8628 | |
3924 | 8629 2002-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8630 | |
8631 * skip-autoheader: New file, for autogen.sh. | |
3925 | 8632 * Makefile.in (DISTFILES): Add it to the list. |
3924 | 8633 |
5095 | 8634 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3914 | 8635 |
8636 * general/repmat.m: New function. | |
8637 | |
5095 | 8638 2002-04-25 Paul Kienzle <pkienzle@users.sf.net> |
3911 | 8639 |
8640 * audio/lin2mu.m: Accept matrices and [-1,1] normalized audio. | |
8641 Use optional parameter to specify the number of bits in the input. | |
8642 * audio/mu2lin.m: Accept matrices, return n-bit integers or | |
8643 floats in the range [-1,1], 2x speedup. | |
8644 | |
8645 * strings/index.m, strings/rindex.m: Vectorize for speed. | |
8646 | |
3910 | 8647 2002-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
8648 | |
8649 * linear-algebra/kron.m: Delete. | |
8650 | |
5095 | 8651 2002-04-24 Paul Kienzle <pkienzle@users.sf.net> |
3907 | 8652 |
8653 * signal/freqz.m: If nargout is zero, plot results instead of | |
8654 returning them. | |
8655 * signal/freqz_plot.m: New file. | |
8656 | |
5095 | 8657 2002-04-24 Bill Lash <lash@tellabs.com> |
3906 | 8658 |
5378 | 8659 * signal/unwrap.m: New file. |
3906 | 8660 |
5095 | 8661 2002-04-23 Paul Kienzle <pkienzle@users.sf.net> |
3904 | 8662 |
8663 * image/rgb2hsv.m: Faster, more accurate, remove the | |
8664 divide by zero warning. | |
8665 | |
5095 | 8666 2002-04-09 Paul Kienzle <pkienzle@users.sf.net> |
3893 | 8667 |
3894 | 8668 * strings/deblank.m: Trim \0 as well as blank. |
8669 | |
5378 | 8670 * freqz.m: Evaluate a specific range of frequencies |
3893 | 8671 expressed in radians or Hz relative to a supplied sample rate. |
8672 | |
5095 | 8673 2002-04-04 Paul Kienzle <pkienzle@users.sf.net> |
3890 | 8674 |
8675 * signal/fftfilt.m: Filter columns if called with a matrix. | |
8676 | |
3891 | 8677 * strings/findstr.m: Vectorize as much as possible. |
8678 | |
5095 | 8679 2002-04-04 Dirk Laurie <dirk@calvyn.puk.ac.za> |
3889 | 8680 |
8681 * special-matrix/invhilb.m: New version that is faster and more | |
8682 accurate. | |
8683 | |
5095 | 8684 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
3887 | 8685 |
8686 * configure.in: Update for autoconf 2.5x. | |
8687 | |
5095 | 8688 2002-04-03 Paul Kienzle <pkienzle@users.sf.net> |
3885 | 8689 |
8690 * special-matrix/vander.m: Code tidy and vectorize. | |
8691 | |
5095 | 8692 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
3882 | 8693 |
3883 | 8694 * linear-algebra/cross.m: Accept nx3 and 3xn matrices, in addition |
8695 to vectors. Issue a warning in the case x matches y' but return a | |
8696 column vector as Octave currently does. | |
8697 | |
3882 | 8698 * plot/contour.m: Set default number of levels for contour(x,y,z). |
8699 | |
8700 * control/system/starp.m: Leave more of the documentation | |
8701 processing to texinfo and less to the @format block. | |
8702 | |
8703 * image/imagesc.m: Only display image if no output is requested. | |
8704 Code tidying. | |
8705 | |
3876 | 8706 2002-03-07 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
8707 | |
8708 * statistics/base/center.m: Accept and return empty matrix. | |
8709 | |
3872 | 8710 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8711 | |
8712 * specfun/erfinv.m: Fix usage message. | |
8713 | |
3869 | 8714 2002-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
8715 | |
8716 * elfun/coth.m: Use 1 ./ tanh(z) instead of cosh(z) ./ sinh(z). | |
8717 From "Michael O'Brien" <mobrien@kento.unm.edu>. | |
8718 | |
3837 | 8719 2001-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
8720 | |
8721 * statistics/distributions/discrete_cdf.m: Downcase incorrectly | |
8722 capitalized variable names. | |
8723 | |
3836 | 8724 2001-05-30 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
8725 | |
8726 * m/image/saveimage.m: fix saving an image to Postscript format. | |
8727 | |
5095 | 8728 2001-04-18 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3814 | 8729 |
8730 * control/system/is_stabilizable.m: Pass a to sys2ss, not sys. | |
8731 | |
3803 | 8732 2001-02-28 Kai Habel <kai.habel@gmx.de> |
8733 | |
3833 | 8734 * general/cart2pol.m: New file. |
8735 * general/pol2cart.m: New file. | |
8736 * general/cart2sph.m: New file. | |
8737 * general/sph2cart.m: New file. | |
8738 * image/rgb2hsv.m: New file. | |
8739 * image/hsv2rgb.m: New file. | |
3803 | 8740 |
8741 2001-02-26 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> | |
8742 | |
8743 * plot/meshgrid.m: Avoid for loops. | |
8744 * plot/meshdom.m: Likewise. | |
8745 | |
3801 | 8746 2001-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8747 | |
8748 * linear-algebra/norm.m: Use sqrt instead of ^0.5. | |
8749 | |
8750 2001-02-22 Heinz Bauschke <bauschke@cecm.sfu.ca> | |
8751 | |
8752 * linear-algebra/norm.m: Use more efficient method for Frobenius | |
8753 norm. | |
8754 | |
3792 | 8755 2001-02-09 David Livings <david.livings@asa.co.uk> |
8756 | |
8757 * statistics/tests/welch_test.m: Fix typo. | |
8758 | |
8759 * statistics/distributions/chisquare_cdf.m: | |
8760 Don't restrict inputs to be only positive integers. | |
8761 * statistics/distributions/chisquare_inv.m: Likewise. | |
8762 * statistics/distributions/chisquare_pdf.m: Likewise. | |
8763 * statistics/distributions/chisquare_rnd.m: Likewise. | |
8764 * statistics/distributions/f_cdf.m: Likewise. | |
8765 * statistics/distributions/f_inv.m: Likewise. | |
8766 * statistics/distributions/f_pdf.m: Likewise. | |
8767 * statistics/distributions/f_rnd.m: Likewise. | |
8768 * statistics/distributions/t_cdf.m: Likewise. | |
8769 * statistics/distributions/t_inv.m: Likewise. | |
8770 * statistics/distributions/t_pdf.m: Likewise. | |
8771 * statistics/distributions/t_rnd.m: Likewise. | |
8772 | |
3790 | 8773 2001-02-08 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
8774 | |
8775 * strings/dec2base.m: New file. | |
8776 * strings/base2dec.m: New file. | |
8777 * strings/strjust.m: New file. | |
8778 * strings/dec2hex.m: Replace with version that just calls 2dec2base. | |
8779 * strings/dec2bin.m: Likewise. | |
8780 * strings/hex2dec.m: Replace with version that just calls base2dec. | |
8781 * strings/bin2dec.m: Likewise. | |
8782 | |
5095 | 8783 2001-02-07 David Livings <david.livings@asa.co.uk> |
3787 | 8784 |
8785 * statistics/base/ppplot.m: Use gset, not set. | |
8786 * statistics/base/qqplot.m: Likewise. | |
8787 | |
5095 | 8788 2001-02-05 Ondrej Popp <ondrej@geocities.com> |
3775 | 8789 |
8790 * control/system/c2d.m: Add missing endif. | |
8791 | |
3759 | 8792 2000-12-15 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
8793 | |
8794 * strings/index.m: Return 0 if either string is empty. | |
8795 | |
8796 2000-12-15 Ben Sapp <bsapp@lanl.gov> | |
8797 | |
8798 * control/system/c2d.m: Allow option of matched pole/zero | |
8799 equivalent for conversion. | |
8800 | |
8801 2000-12-15 Matthew W. Roberts <matt@lehi.tamu.edu> | |
8802 | |
8803 * strings/findstr.m: Return empty matrix if search string is empty. | |
8804 | |
3757 | 8805 2000-12-15 Kai Habel <kai.habel@gmx.de> |
8806 | |
8807 * saveimage.m: Do create rawbit image for black and white images, | |
8808 but do it correctly. | |
8809 | |
3754 | 8810 2000-12-13 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
8811 | |
6778 | 8812 * polynomial/deconv.m: For compatibility with Matlab, don't reduce |
8813 result polynomials. | |
3754 | 8814 |
3748 | 8815 2000-12-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
8816 | |
8817 * image/saveimage.m: Don't try to create rawbit image. | |
8818 | |
3740 | 8819 2000-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
8820 | |
8821 * Makefile.in (bin-dist): Pass -C to $(MAKE), not -c. | |
8822 | |
5095 | 8823 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3737 | 8824 |
8825 * plot/contour.m: Reorder args for Matlab compatibility. | |
8826 | |
3727 | 8827 2000-10-27 Mats Jansson <mats.e.jansson@home.se> |
8828 | |
8829 * set/create_set.m: Avoid empty matrix in matrix list warning. | |
8830 | |
3717 | 8831 2000-09-08 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
8832 | |
3718 | 8833 * plot/errorbar.m, plot/__errplot__.m: New functions. |
8834 | |
3717 | 8835 * plot/mesh.m: Also set nologscale before plotting. |
8836 * plot/__pltopt1__.m: Handle xerrorbars, yerrorbars, and | |
8837 xyerrorbars instead of just errorbars. | |
8838 | |
3714 | 8839 2000-08-25 Thomas Walter <walter@pctc.chemie.uni-erlangen.de> |
8840 | |
8841 * image/image.m: Try display (from ImageMagick) first. | |
8842 | |
3709 | 8843 2000-08-01 Rolf Fabian <fabian@tu-cottbus.de> |
8844 | |
8845 * plot/meshgrid.m: Use transpose to reorient vectors, not complex | |
8846 conjugate transpose. | |
8847 | |
3705 | 8848 2000-07-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
8849 | |
8850 * strings/str2mat.m: Apply setstr to each argument. | |
8851 | |
3696 | 8852 2000-07-17 Gabriele Pannocchia <pannocchia@ing.unipi.it> |
8853 | |
8854 * control/base/dkalman.m: New file. | |
8855 * control/base/dlqe.m: Handle singular A matrix. | |
8856 * control/base/dlqr.m: Likewise. | |
8857 | |
3695 | 8858 2000-07-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
8859 | |
8860 * strings/strcmp.m: Return 0 instead of an error if row and column | |
8861 dimensions don't match. | |
8862 | |
3690 | 8863 2000-06-30 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
8864 | |
8865 * plot/hist.m: Allow 3 argument form to work. | |
8866 | |
5095 | 8867 2000-06-27 Matthew W. Roberts <matt@lehi.tamu.edu> |
3683 | 8868 |
8869 * plot/plot.m: Add examples in doc string. | |
8870 | |
5095 | 8871 2000-06-08 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3679 | 8872 |
8873 * control/base/__stepimp__.m: Reset multiplot state when done. | |
8874 Do the right thing even if automatic_replot is not zero. | |
8875 Avoid failure if system has pure imaginary poles. | |
8876 | |
3674 | 8877 2000-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
8878 | |
8879 * general/logical.m: Return arg if it is empty. Better error | |
8880 message for non-numeric types. | |
8881 | |
5095 | 8882 2000-05-31 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3672 | 8883 |
8884 * control/base/dlqe.m: Update documentation. Fix typo. Warn | |
8885 about difference with Matlab dlqe function. | |
8886 | |
8887 * control/system/sysmult.m: Fix typo in argument dimensions checking. | |
8888 | |
5095 | 8889 2000-05-24 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3670 | 8890 |
8891 * strings/strrep.m: Fix typo. | |
8892 | |
3666 | 8893 2000-05-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
8894 | |
8895 * strings/strrep.m: Don't transpose result for case of jump > 0. | |
8896 | |
5095 | 8897 2000-05-13 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3666 | 8898 |
8899 * strings/strrep.m: Avoid for loop for speed. | |
3667 | 8900 * plot/axis.m: Handle string options for Matlab compatibility. |
3666 | 8901 |
5095 | 8902 2000-04-04 John Smith <john@arrows.demon.co.uk> |
3656 | 8903 |
8904 * statistics/distributions/beta_inv.m: Provide better(?) initial | |
8905 guess for iteration. | |
8906 | |
3651 | 8907 2000-03-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
8908 | |
8909 * image/image.m: Allow image (A) or image (x, y, A). | |
8910 * image/imagesc.m: Likewise. | |
8911 | |
8912 * image/image.m: If zoom is not supplied, or if it is an empty | |
8913 matrix, autoscale the image. | |
8914 | |
3618 | 8915 2000-03-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8916 | |
3619 | 8917 * plot/title.m, plot/bottom_title.m, plot/top_title.m: |
8918 Undo string escapes in text twice(!) before sending to gnuplot. | |
8919 | |
3618 | 8920 * image/saveimage.m: Add comment to file saying who created it and |
8921 when it was created. Suggested by Stephen Eglen | |
8922 <stephen@cogsci.ed.ac.uk>. | |
8923 | |
5095 | 8924 2000-03-21 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3617 | 8925 |
8926 * polynomial/polyreduce.m: Simplify by looking for the first | |
8927 non-zero element rather than the last of the first set of zero | |
8928 elements. | |
8929 | |
8930 * plot/__pltopt1__.m: Accept "--", "-.", and ":" line styles. | |
8931 | |
5095 | 8932 2000-03-21 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
3616 | 8933 |
8934 * image/saveimage.m: Swap black and white colormaps so zero is | |
8935 displayed as black and 1 is displayed as white. | |
8936 Fix indexing bug in ppm case. | |
8937 | |
3604 | 8938 2000-03-06 Stephen Eglen <stephen@anc.ed.ac.uk> |
8939 | |
8940 * statistics/tests/kolmogorov_smirnov_test_2.m: Account for ties | |
8941 between the two distributions (took same approach as ks.test() in R.) | |
8942 | |
3603 | 8943 2000-02-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
8944 | |
8945 * control/base/bode.m: Temporarily disable automatic_replot. | |
8946 | |
3599 | 8947 2000-02-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
8948 | |
3601 | 8949 * Makefile.in (clean): Also remove gethelp. |
8950 | |
3599 | 8951 * specfun/erfinv.m: Use z_new in convergence test, not z_old. |
8952 | |
5095 | 8953 2000-02-11 Georg Thimm <mgeorg@SGraphicsWS1.mpe.ntu.edu.sg> |
3597 | 8954 |
8955 * set/create_set.m: Use find to avoid while loop. | |
8956 | |
5095 | 8957 2000-02-11 Stephen Eglen <stephen@cogsci.ed.ac.uk> |
3597 | 8958 |
8959 * plot/hist.m: New optional third argument. | |
8960 | |
8961 2000-02-10 John W. Eaton <jwe@bevo.che.wisc.edu> | |
8962 | |
8963 * miscellaneous/bug_report.m: Use octave-bug script with version | |
8964 number appended. | |
8965 | |
3575 | 8966 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
8967 | |
8968 * gethelp.cc: Sprinkle with std:: qualifier. | |
8969 | |
3498 | 8970 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
8971 | |
8972 * image/saveimage.m: Delete some debugging code. | |
8973 | |
3486 | 8974 2000-01-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
8975 | |
8976 * signal/sinc.m: Avoid reshaping. | |
8977 | |
8978 * image/rgb2ind.m: No longer needs to reset do_fortran_indexing. | |
8979 * image/ind2rgb.m: Ditto. | |
8980 * image/ind2gray.m: Ditto. | |
8981 * general/reshape.m: Ditto. Also no longer needs to reset | |
8982 implicit_str_to_num_ok. | |
8983 | |
3483 | 8984 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
8985 | |
8986 * miscellaneous/popen2.m: Deal with the fact that pipe now returns | |
8987 a list of file structures, not a vector of numeric file ids. | |
8988 | |
3474 | 8989 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
8990 | |
3476 | 8991 * plot/__axis_label__.m: New function. |
8992 Undo string escapes in text twice(!) before sending to gnuplot. | |
8993 * plot/xlabel.m: Use it. | |
8994 * plot/ylabel.m: Ditto. | |
8995 * plot/zlabel.m: Ditto. | |
8996 | |
3474 | 8997 * plot/mesh.m: Fix error message to reflect reality. |
8998 | |
5095 | 8999 2000-01-24 Cyril Humbert <humbert@phobos.univ-mlv.fr> |
3473 | 9000 |
9001 * statistics/distributions/weibull_pdf.m: Use correct formula. | |
9002 | |
5095 | 9003 2000-01-22 Michael Reifenberger <mike@Plaut.de> |
3471 | 9004 |
9005 * audio/saveaudio.m: Also accept files with .ul extension. | |
9006 * audio/loadaudio.m: Ditto. | |
9007 * audio/playaudio.m: Ditto. | |
9008 | |
3456 | 9009 2000-01-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
9010 | |
9011 * statistics/distributions/beta_cdf.m: Texinfoize doc string. | |
9012 * statistics/distributions/beta_inv.m: Ditto. | |
9013 * statistics/distributions/beta_pdf.m: Ditto. | |
9014 * statistics/distributions/beta_rnd.m: Ditto. | |
9015 * statistics/distributions/binomial_cdf.m: Ditto. | |
9016 * statistics/distributions/binomial_inv.m: Ditto. | |
9017 * statistics/distributions/binomial_pdf.m: Ditto. | |
9018 * statistics/distributions/binomial_rnd.m: Ditto. | |
9019 * statistics/distributions/cauchy_cdf.m: Ditto. | |
9020 * statistics/distributions/cauchy_inv.m: Ditto. | |
9021 * statistics/distributions/cauchy_pdf.m: Ditto. | |
9022 * statistics/distributions/cauchy_rnd.m: Ditto. | |
9023 * statistics/distributions/chisquare_cdf.m: Ditto. | |
9024 * statistics/distributions/chisquare_inv.m: Ditto. | |
9025 * statistics/distributions/chisquare_pdf.m: Ditto. | |
9026 * statistics/distributions/chisquare_rnd.m: Ditto. | |
9027 * statistics/distributions/discrete_cdf.m: Ditto. | |
9028 * statistics/distributions/discrete_inv.m: Ditto. | |
9029 * statistics/distributions/discrete_pdf.m: Ditto. | |
9030 * statistics/distributions/discrete_rnd.m: Ditto. | |
9031 * statistics/distributions/empirical_cdf.m: Ditto. | |
9032 * statistics/distributions/empirical_inv.m: Ditto. | |
9033 * statistics/distributions/empirical_pdf.m: Ditto. | |
9034 * statistics/distributions/empirical_rnd.m: Ditto. | |
9035 * statistics/distributions/exponential_cdf.m: Ditto. | |
9036 * statistics/distributions/exponential_inv.m: Ditto. | |
9037 * statistics/distributions/exponential_pdf.m: Ditto. | |
9038 * statistics/distributions/exponential_rnd.m: Ditto. | |
9039 * statistics/distributions/f_cdf.m: Ditto. | |
9040 * statistics/distributions/f_inv.m: Ditto. | |
9041 * statistics/distributions/f_pdf.m: Ditto. | |
9042 * statistics/distributions/f_rnd.m: Ditto. | |
9043 * statistics/distributions/gamma_cdf.m: Ditto. | |
9044 * statistics/distributions/gamma_inv.m: Ditto. | |
9045 * statistics/distributions/gamma_pdf.m: Ditto. | |
9046 * statistics/distributions/gamma_rnd.m: Ditto. | |
9047 * statistics/distributions/geometric_cdf.m: Ditto. | |
9048 * statistics/distributions/geometric_inv.m: Ditto. | |
9049 * statistics/distributions/geometric_pdf.m: Ditto. | |
9050 * statistics/distributions/geometric_rnd.m: Ditto. | |
9051 * statistics/distributions/hypergeometric_cdf.m: Ditto. | |
9052 * statistics/distributions/hypergeometric_inv.m: Ditto. | |
9053 * statistics/distributions/hypergeometric_pdf.m: Ditto. | |
9054 * statistics/distributions/hypergeometric_rnd.m: Ditto. | |
9055 * statistics/distributions/kolmogorov_smirnov_cdf.m: Ditto. | |
9056 * statistics/distributions/laplace_cdf.m: Ditto. | |
9057 * statistics/distributions/laplace_inv.m: Ditto. | |
9058 * statistics/distributions/laplace_pdf.m: Ditto. | |
9059 * statistics/distributions/laplace_rnd.m: Ditto. | |
9060 * statistics/distributions/logistic_cdf.m: Ditto. | |
9061 * statistics/distributions/logistic_inv.m: Ditto. | |
9062 * statistics/distributions/logistic_pdf.m: Ditto. | |
9063 * statistics/distributions/logistic_rnd.m: Ditto. | |
9064 * statistics/distributions/lognormal_cdf.m: Ditto. | |
9065 * statistics/distributions/lognormal_inv.m: Ditto. | |
9066 * statistics/distributions/lognormal_pdf.m: Ditto. | |
9067 * statistics/distributions/lognormal_rnd.m: Ditto. | |
9068 * statistics/distributions/normal_cdf.m: Ditto. | |
9069 * statistics/distributions/normal_inv.m: Ditto. | |
9070 * statistics/distributions/normal_pdf.m: Ditto. | |
9071 * statistics/distributions/normal_rnd.m: Ditto. | |
9072 * statistics/distributions/pascal_cdf.m: Ditto. | |
9073 * statistics/distributions/pascal_inv.m: Ditto. | |
9074 * statistics/distributions/pascal_pdf.m: Ditto. | |
9075 * statistics/distributions/pascal_rnd.m: Ditto. | |
9076 * statistics/distributions/poisson_cdf.m: Ditto. | |
9077 * statistics/distributions/poisson_inv.m: Ditto. | |
9078 * statistics/distributions/poisson_pdf.m: Ditto. | |
9079 * statistics/distributions/poisson_rnd.m: Ditto. | |
9080 * statistics/distributions/stdnormal_cdf.m: Ditto. | |
9081 * statistics/distributions/stdnormal_inv.m: Ditto. | |
9082 * statistics/distributions/stdnormal_pdf.m: Ditto. | |
9083 * statistics/distributions/stdnormal_rnd.m: Ditto. | |
9084 * statistics/distributions/t_cdf.m: Ditto. | |
9085 * statistics/distributions/t_inv.m: Ditto. | |
9086 * statistics/distributions/t_pdf.m: Ditto. | |
9087 * statistics/distributions/t_rnd.m: Ditto. | |
9088 * statistics/distributions/uniform_cdf.m: Ditto. | |
9089 * statistics/distributions/uniform_inv.m: Ditto. | |
9090 * statistics/distributions/uniform_pdf.m: Ditto. | |
9091 * statistics/distributions/uniform_rnd.m: Ditto. | |
9092 * statistics/distributions/weibull_cdf.m: Ditto. | |
9093 * statistics/distributions/weibull_inv.m: Ditto. | |
9094 * statistics/distributions/weibull_pdf.m: Ditto. | |
9095 * statistics/distributions/weibull_rnd.m: Ditto. | |
9096 * statistics/distributions/wiener_rnd.m: Ditto. | |
9097 | |
3453 | 9098 2000-01-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
9099 | |
9100 * statistics/base/values.m: Texinfoize doc string. | |
9101 * statistics/base/var.m: Ditto. | |
9102 * statistics/base/table.m: Ditto. | |
9103 * statistics/base/studentize.m: Ditto. | |
9104 * statistics/base/statistics.m: Ditto. | |
9105 * statistics/base/spearman.m: Ditto. | |
9106 * statistics/base/run_count.m: Ditto. | |
9107 * statistics/base/ranks.m: Ditto. | |
9108 * statistics/base/range.m: Ditto. | |
9109 * statistics/base/qqplot.m: Ditto. | |
9110 * statistics/base/probit.m: Ditto. | |
9111 * statistics/base/ppplot.m: Ditto. | |
9112 * statistics/base/moment.m: Ditto. | |
9113 * statistics/base/meansq.m: Ditto. | |
9114 * statistics/base/logit.m: Ditto. | |
9115 * statistics/base/kendall.m: Ditto. | |
9116 * statistics/base/iqr.m: Ditto. | |
9117 * statistics/base/cut.m: Ditto. | |
9118 * statistics/base/cor.m: Ditto. | |
9119 * statistics/base/cloglog.m: Ditto. | |
9120 * statistics/base/center.m: Ditto. | |
3454 | 9121 * statistics/models/logistic_regression.m: Ditto. |
9122 * statistics/models/logistic_regression_derivative.m: Ditto. | |
9123 * statistics/models/logistic_regression_likelihood.m: Ditto. | |
9124 * statistics/tests/anova.m: Ditto. | |
9125 * statistics/tests/bartlett_test.m: Ditto. | |
9126 * statistics/tests/chisquare_test_homogeneity.m: Ditto. | |
9127 * statistics/tests/chisquare_test_independence.m: Ditto. | |
9128 * statistics/tests/cor_test.m: Ditto. | |
9129 * statistics/tests/f_test_regression.m: Ditto. | |
9130 * statistics/tests/hotelling_test.m: Ditto. | |
9131 * statistics/tests/hotelling_test_2.m: Ditto. | |
9132 * statistics/tests/kolmogorov_smirnov_test.m: Ditto. | |
9133 * statistics/tests/kolmogorov_smirnov_test_2.m: Ditto. | |
9134 * statistics/tests/kruskal_wallis_test.m: Ditto. | |
9135 * statistics/tests/manova.m: Ditto. | |
9136 * statistics/tests/mcnemar_test.m: Ditto. | |
9137 * statistics/tests/prop_test_2.m: Ditto. | |
9138 * statistics/tests/run_test.m: Ditto. | |
9139 * statistics/tests/sign_test.m: Ditto. | |
9140 * statistics/tests/t_test.m: Ditto. | |
9141 * statistics/tests/t_test_2.m: Ditto. | |
9142 * statistics/tests/t_test_regression.m: Ditto. | |
9143 * statistics/tests/u_test.m: Ditto. | |
9144 * statistics/tests/var_test.m: Ditto. | |
9145 * statistics/tests/welch_test.m: Ditto. | |
9146 * statistics/tests/wilcoxon_test.m: Ditto. | |
9147 * statistics/tests/z_test.m: Ditto. | |
9148 * statistics/tests/z_test_2.m: Ditto. | |
3453 | 9149 |
3446 | 9150 2000-01-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
9151 | |
9152 * strings/bin2dec.m: Texinfoize doc string. | |
3449 | 9153 * plot/__plr1__.m: Ditto. |
9154 * plot/__pltopt__.m: Ditto. | |
9155 * plot/__plt__.m: Ditto. | |
9156 * plot/__plt2vv__.m: Ditto. | |
9157 * plot/__plr2__.m: Ditto. | |
9158 * plot/__plr__.m: Ditto. | |
9159 * plot/__plt1__.m: Ditto. | |
9160 * plot/__plt2__.m: Ditto. | |
9161 * plot/__plt2mm__.m: Ditto. | |
9162 * plot/__plt2mv__.m: Ditto. | |
9163 * plot/__plt2ss__.m: Ditto. | |
9164 * miscellaneous/paren.m: Ditto. | |
9165 * miscellaneous/comma.m: Ditto. | |
9166 * miscellaneous/semicolon.m: Ditto. | |
9167 * miscellaneous/path.m: Ditto. | |
9168 * miscellaneous/list_primes.m: Ditto. | |
9169 * miscellaneous/flops.m: Ditto. | |
9170 * miscellaneous/dump_prefs.m: Ditto. | |
9171 * miscellaneous/bug_report.m: Ditto. | |
9172 * linear-algebra/dot.m: Ditto | |
9173 * linear-algebra/dmult.m: Ditto. | |
9174 * general/randperm.m: Ditto. | |
9175 * general/logical.m: Ditto. | |
9176 * general/is_duplicate_entry.m: Ditto. | |
9177 * signal/arch_fit.m: Ditto. | |
9178 * signal/arch_rnd.m: Ditto. | |
9179 * signal/arch_test.m: Ditto. | |
9180 * signal/arma_rnd.m: Ditto. | |
9181 * signal/autocor.m: Ditto. | |
9182 * signal/autocov.m: Ditto. | |
9183 * signal/autoreg_matrix.m: Ditto. | |
9184 * signal/bartlett.m: Ditto. | |
9185 * signal/blackman.m: Ditto. | |
9186 * signal/detrend.m: Ditto. | |
9187 * signal/diffpara.m: Ditto. | |
9188 * signal/durbinlevinson.m: Ditto. | |
9189 * signal/fftconv.m: Ditto. | |
9190 * signal/fftfilt.m: Ditto. | |
9191 * signal/fftshift.m: Ditto. | |
9192 * signal/fractdiff.m: Ditto. | |
9193 * signal/freqz.m: Ditto. | |
9194 * signal/hamming.m: Ditto. | |
9195 * signal/hanning.m: Ditto. | |
9196 * signal/hurst.m: Ditto. | |
9197 * signal/periodogram.m: Ditto. | |
9198 * signal/rectangle_lw.m: Ditto. | |
9199 * signal/rectangle_sw.m: Ditto. | |
9200 * signal/sinc.m: Ditto. | |
9201 * signal/sinetone.m: Ditto. | |
9202 * signal/sinewave.m: Ditto. | |
9203 * signal/spectral_adf.m: Ditto. | |
9204 * signal/spectral_xdf.m: Ditto. | |
9205 * signal/spencer.m: Ditto. | |
9206 * signal/stft.m: Ditto. | |
9207 * signal/synthesis.m: Ditto. | |
9208 * signal/triangle_lw.m: Ditto. | |
9209 * signal/triangle_sw.m: Ditto. | |
9210 * signal/yulewalker.m: Ditto. | |
3450 | 9211 * control/util/strappend.m: Ditto. |
3451 | 9212 * control/base/nichols.m: Ditto. |
3452 | 9213 * control/system/is_signal_list.m: Ditto. |
9214 * control/system/listidx.m: Ditto. | |
9215 * control/system/sysgettsam.m: Ditto. | |
9216 * control/system/sysidx.m: Ditto. | |
3446 | 9217 |
3438 | 9218 2000-01-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
9219 | |
9220 * control/system/__abcddims__.m: Rename from | |
9221 control/system/abcddims.m, change all callers. | |
9222 * control/base/__bodquist__.m: Likewise. | |
9223 * control/base/__freqresp__.m: Likewise. | |
9224 * control/util/__outlist__.m: Likewise. | |
9225 * control/base/__stepimp__.m: Likewise. | |
9226 * control/system/__syschnamesl__.m: Likewise. | |
9227 * control/system/__syscont_disc__.m: Likewise. | |
9228 * control/system/__sysdefioname__.m: Likewise. | |
9229 * control/system/__sysdefstname__.m: Likewise. | |
9230 * control/system/__sysgroupn__.m: Likewise. | |
9231 * control/system/__tf2sysl__.m: Likewise. | |
9232 * control/util/__zgpbal__.m: Likewise. | |
9233 * control/system/__zp2ssg2__.m: Likewise. | |
3495 | 9234 |
9235 * quaternion/demoquat.m: Add copyright notice, Texinfoize doc string. | |
3452 | 9236 * quaternion/qconj.m: Ditto. |
9237 * quaternion/qcoordinate_plot.m: Ditto. | |
9238 * quaternion/qderiv.m: Ditto. | |
9239 * quaternion/qderivmat.m: Ditto. | |
9240 * quaternion/qinv.m: Ditto. | |
9241 * quaternion/qmult.m: Ditto. | |
9242 * quaternion/qtrans.m: Ditto. | |
9243 * quaternion/qtransv.m: Ditto. | |
9244 * quaternion/qtransvmat.m: Ditto. | |
9245 * quaternion/quaternion.m: Ditto. | |
3438 | 9246 |
3436 | 9247 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
9248 | |
9249 * control/base/Makefile.in: Ditto. | |
9250 * control/hinf/Makefile.in: New file. | |
9251 * control/marsyas/Makefile.in: Ditto. | |
9252 * control/obsolete/Makefile.in: Ditto. | |
9253 * control/system/Makefile.in: Ditto. | |
9254 * control/util/Makefile.in: Ditto. | |
9255 | |
9256 * strings/com2str.m: Move here from control directory. | |
9257 | |
9258 * control/base: New directory. | |
9259 * control/base/DEMOcontrol.m: Move here from control directory. | |
9260 * control/base/analdemo.m: Ditto. | |
9261 * control/base/are.m: Ditto. | |
9262 * control/base/bddemo.m: Ditto. | |
9263 * control/base/bode.m: Ditto. | |
9264 * control/base/bode_bounds.m: Ditto. | |
9265 * control/base/bodquist.m: Ditto. | |
9266 * control/base/controldemo.m: Ditto. | |
9267 * control/base/ctrb.m: Ditto. | |
9268 * control/base/damp.m: Ditto. | |
9269 * control/base/dare.m: Ditto. | |
9270 * control/base/dcgain.m: Ditto. | |
9271 * control/base/dgram.m: Ditto. | |
9272 * control/base/dlqe.m: Ditto. | |
9273 * control/base/dlqr.m: Ditto. | |
9274 * control/base/dlyap.m: Ditto. | |
9275 * control/base/dre.m: Ditto. | |
9276 * control/base/frdemo.m: Ditto. | |
9277 * control/base/freqchkw.m: Ditto. | |
9278 * control/base/freqresp.m: Ditto. | |
9279 * control/base/gram.m: Ditto. | |
9280 * control/base/impulse.m: Ditto. | |
9281 * control/base/lqe.m: Ditto. | |
9282 * control/base/lqg.m: Ditto. | |
9283 * control/base/lqr.m: Ditto. | |
9284 * control/base/lsim.m: Ditto. | |
9285 * control/base/ltifr.m: Ditto. | |
9286 * control/base/lyap.m: Ditto. | |
9287 * control/base/nichols.m: Ditto. | |
9288 * control/base/nyquist.m: Ditto. | |
9289 * control/base/obsv.m: Ditto. | |
9290 * control/base/place.m: Ditto. | |
9291 * control/base/pzmap.m: Ditto. | |
9292 * control/base/rldemo.m: Ditto. | |
9293 * control/base/rlocus.m: Ditto. | |
9294 * control/base/step.m: Ditto. | |
9295 * control/base/stepimp.m: Ditto. | |
9296 * control/base/tzero.m: Ditto. | |
9297 * control/base/tzero2.m: Ditto. | |
9298 | |
9299 * control/hinf: New directory. | |
9300 * control/hinf/dhinfdemo.m: Move here from control directory. | |
9301 * control/hinf/h2norm.m: Ditto. | |
9302 * control/hinf/h2syn.m: Ditto. | |
9303 * control/hinf/hinf_ctr.m: Ditto. | |
9304 * control/hinf/hinfdemo.m: Ditto. | |
9305 * control/hinf/hinfnorm.m: Ditto. | |
9306 * control/hinf/hinfsyn.m: Ditto. | |
9307 * control/hinf/hinfsyn_chk.m: Ditto. | |
9308 * control/hinf/hinfsyn_ric.m: Ditto. | |
9309 * control/hinf/wgt1o.m: Ditto. | |
3441 | 9310 * control/hinf/dgkfdemo.m: Ditto. |
9311 * control/hinf/is_dgkf.m: Ditto. | |
3436 | 9312 |
9313 * control/marsyas: New directory. | |
9314 * control/marsyas/demomarsyas.m: Move here from control directory. | |
9315 * control/marsyas/susball.m: Ditto. | |
9316 | |
9317 * control/obsolete/dezero.m: Move here from control directory. | |
9318 * control/obsolete/rotg.m: Ditto. | |
9319 | |
9320 * control/system: New directory. | |
9321 * control/system/abcddim.m: Move here from control directory. | |
9322 * control/system/abcddims.m: Ditto. | |
9323 * control/system/buildssic.m: Ditto. | |
9324 * control/system/c2d.m: Ditto. | |
9325 * control/system/d2c.m: Ditto. | |
9326 * control/system/dmr2d.m: Ditto. | |
9327 * control/system/fir2sys.m: Ditto. | |
9328 * control/system/is_abcd.m: Ditto. | |
9329 * control/system/is_digital.m: Ditto. | |
9330 * control/system/is_sample.m: Ditto. | |
9331 * control/system/is_signal_list.m: Ditto. | |
9332 * control/system/is_siso.m: Ditto. | |
3441 | 9333 * control/system/is_controllable.m: Ditto. |
9334 * control/system/is_detectable.m: Ditto. | |
9335 * control/system/is_observable.m: Ditto. | |
9336 * control/system/is_stabilizable.m: Ditto. | |
9337 * control/system/is_stable.m: Ditto. | |
3436 | 9338 * control/system/jet707.m: Ditto. |
9339 * control/system/listidx.m: Ditto. | |
9340 * control/system/moddemo.m: Ditto. | |
9341 * control/system/ord2.m: Ditto. | |
9342 * control/system/packedform.m: Ditto. | |
9343 * control/system/parallel.m: Ditto. | |
9344 * control/system/ss2sys.m: Ditto. | |
9345 * control/system/ss2tf.m: Ditto. | |
9346 * control/system/ss2zp.m: Ditto. | |
9347 * control/system/starp.m: Ditto. | |
9348 * control/system/sys2fir.m: Ditto. | |
9349 * control/system/sys2ss.m: Ditto. | |
9350 * control/system/sys2tf.m: Ditto. | |
9351 * control/system/sys2zp.m: Ditto. | |
9352 * control/system/sysadd.m: Ditto. | |
9353 * control/system/sysappend.m: Ditto. | |
9354 * control/system/syschnamesl.m: Ditto. | |
9355 * control/system/syschtsam.m: Ditto. | |
9356 * control/system/sysconnect.m: Ditto. | |
9357 * control/system/syscont.m: Ditto. | |
9358 * control/system/syscont_disc.m: Ditto. | |
9359 * control/system/sysdefioname.m: Ditto. | |
9360 * control/system/sysdefstname.m: Ditto. | |
9361 * control/system/sysdimensions.m: Ditto. | |
9362 * control/system/sysdisc.m: Ditto. | |
9363 * control/system/sysdup.m: Ditto. | |
9364 * control/system/sysgetsignals.m: Ditto. | |
9365 * control/system/sysgettsam.m: Ditto. | |
9366 * control/system/sysgettype.m: Ditto. | |
9367 * control/system/sysgroup.m: Ditto. | |
9368 * control/system/sysgroupn.m: Ditto. | |
9369 * control/system/sysidx.m: Ditto. | |
9370 * control/system/sysmin.m: Ditto. | |
9371 * control/system/sysmult.m: Ditto. | |
9372 * control/system/sysout.m: Ditto. | |
9373 * control/system/sysprune.m: Ditto. | |
9374 * control/system/sysreorder.m: Ditto. | |
9375 * control/system/sysrepdemo.m: Ditto. | |
9376 * control/system/sysscale.m: Ditto. | |
9377 * control/system/syssetsignals.m: Ditto. | |
9378 * control/system/syssub.m: Ditto. | |
9379 * control/system/sysupdate.m: Ditto. | |
9380 * control/system/tf2ss.m: Ditto. | |
9381 * control/system/tf2sys.m: Ditto. | |
9382 * control/system/tf2sysl.m: Ditto. | |
9383 * control/system/tf2zp.m: Ditto. | |
9384 * control/system/tfout.m: Ditto. | |
9385 * control/system/ugain.m: Ditto. | |
9386 * control/system/zp2ss.m: Ditto. | |
9387 * control/system/zp2ssg2.m: Ditto. | |
9388 * control/system/zp2sys.m: Ditto. | |
9389 * control/system/zp2tf.m: Ditto. | |
9390 * control/system/zpout.m: Ditto. | |
9391 | |
9392 * control/util: New directory. | |
9393 * control/util/axis2dlim.m: Move here from control directory. | |
9394 * control/util/outlist.m: Ditto. | |
9395 * control/util/prompt.m: Ditto. | |
9396 * control/util/run_cmd.m: Ditto. | |
9397 * control/util/sortcom.m: Ditto. | |
9398 * control/util/strappend.m: Ditto. | |
9399 * control/util/swap.m: Ditto. | |
9400 * control/util/zgfmul.m: Ditto. | |
9401 * control/util/zgfslv.m: Ditto. | |
9402 * control/util/zginit.m: Ditto. | |
9403 * control/util/zgpbal.m: Ditto. | |
9404 * control/util/zgreduce.m: Ditto. | |
9405 * control/util/zgrownorm.m: Ditto. | |
9406 * control/util/zgscal.m: Ditto. | |
9407 * control/util/zgsgiv.m: Ditto. | |
9408 * control/util/zgshsr.m: Ditto. | |
9409 | |
3427 | 9410 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
9411 | |
9412 * gethelp.cc (extract_help_text): Discard first space character | |
9413 after consecutive comment characters. | |
9414 | |
3422 | 9415 Thu Jan 13 00:56:57 2000 John W. Eaton <jwe@bahaha.che.wisc.edu> |
9416 | |
9417 * control/obsolete: New directory | |
9418 * control/obsolete/swaprows.m: Move here from control directory. | |
3436 | 9419 * control/obsolete/swapcols.m: Ditto. |
9420 * control/obsolete/dlqg.m: Ditto. | |
9421 * control/obsolete/minfo.m: Ditto. | |
9422 * control/obsolete/packsys.m: Ditto. | |
9423 * control/obsolete/qzval.m: Ditto. | |
9424 * control/obsolete/unpacksys.m: Ditto. | |
9425 * control/obsolete/series.m: Ditto. | |
9426 * control/obsolete/syschnames.m: Ditto. | |
9427 * polynomial/polyout.m: Ditto. | |
3422 | 9428 |
3420 | 9429 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
9430 | |
9431 * general/fliplr.m: Eliminate useless copy of arg. | |
9432 * general/flipud.m: Ditto. | |
9433 | |
3418 | 9434 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
9435 | |
9436 * linear-algebra/cross.m: Only return a row vector if both args | |
9437 are row vectors. | |
9438 * polynomial/polyfit.m: Likewise. | |
9439 | |
9440 * signal/autocov.m: Don't reset prefer_column_vectors. | |
9441 | |
9442 * statistics/distributions/discrete_rnd.m: | |
9443 Always generate a row vector. | |
9444 * statistics/distributions/hypergeometric_rnd.m: Likewise. | |
9445 | |
5095 | 9446 2000-01-11 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3416 | 9447 |
9448 * strings/upper.m: Add missing `-*- texinfo -*-' tag to doc string. | |
9449 | |
9450 * audio/setaudio.m: Texinfoize doc string. | |
9451 * control/com2str.m: Likewise. | |
9452 * control/controldemo.m: Likewise. | |
9453 * control/DEMOcontrol.m: Likewise. | |
9454 * control/dezero.m: Likewise. | |
9455 * control/dre.m: Likewise. | |
9456 * control/hinfsyn_ric.m: Likewise. | |
9457 | |
5095 | 9458 2000-01-05 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3407 | 9459 |
9460 * io/printf.m: Add @seealso{...} to doc string. | |
9461 * io/puts.m: Likewise. | |
9462 * plot/semilogx.m: Likewise. | |
9463 * plot/semilogy.m: Likewise. | |
9464 * plot/__pltopt__.m: Likewise. | |
9465 * plot/bar.m: Likewise. | |
9466 * plot/xlabel.m: Likewise. | |
9467 * plot/grid.m: Likewise. | |
9468 * plot/shg.m: Likewise. | |
9469 * plot/title.m: Likewise. | |
9470 * plot/mesh.m: Likewise. | |
9471 * plot/__pltopt1__.m: Likewise. | |
9472 * plot/contour.m: Likewise. | |
9473 * plot/hist.m: Likewise. | |
9474 * plot/stairs.m: Likewise. | |
9475 * plot/meshgrid.m: Likewise. | |
9476 * plot/polar.m: Likewise. | |
9477 * plot/loglog.m: Likewise. | |
9478 * plot/plot.m: Likewise. | |
9479 * miscellaneous/semicolon.m: Likewise. | |
9480 * miscellaneous/menu.m: Likewise. | |
9481 * miscellaneous/etime.m: Likewise. | |
9482 * miscellaneous/texas_lotto.m: Likewise. | |
9483 * miscellaneous/comma.m: Likewise. | |
9484 * audio/lin2mu.m: Likewise. | |
9485 * audio/playaudio.m: Likewise. | |
9486 * audio/loadaudio.m: Likewise. | |
9487 * audio/saveaudio.m: Likewise. | |
9488 * audio/mu2lin.m: Likewise. | |
9489 * audio/record.m: Likewise. | |
9490 * strings/isletter.m: Likewise. | |
9491 * strings/lower.m: Likewise. | |
9492 * strings/lower.m: Likewise. | |
9493 * strings/upper.m: Likewise. | |
9494 * specfun/erfinv.m: Likewise. | |
9495 * specfun/gammai.m: Likewise. | |
9496 * specfun/log2.m: Likewise. | |
9497 * specfun/pow2.m: Likewise. | |
9498 * elfun/gcd.m: Likewise. | |
9499 * elfun/lcm.m: Likewise. | |
9500 * special-matrix/vander.m: Likewise. | |
9501 * special-matrix/sylvester_matrix.m: Likewise. | |
9502 * special-matrix/hilb.m: Likewise. | |
9503 * special-matrix/hankel.m: Likewise. | |
9504 * special-matrix/toeplitz.m: Likewise. | |
9505 * special-matrix/invhilb.m: Likewise. | |
9506 * statistics/base/std.m: Likewise. | |
9507 * statistics/base/median.m: Likewise. | |
9508 * linear-algebra/cond.m: Likewise. | |
9509 * linear-algebra/norm.m: Likewise. | |
9510 * finance/nper.m: Likewise. | |
9511 * finance/pmt.m: Likewise. | |
9512 * finance/pv.m: Likewise. | |
9513 * finance/rate.m: Likewise. | |
9514 * finance/npv.m: Likewise. | |
9515 * general/fliplr.m: Likewise. | |
9516 * general/flipud.m: Likewise. | |
9517 * general/is_scalar.m: Likewise. | |
9518 * general/rem.m: Likewise. | |
9519 * general/perror.m: Likewise. | |
9520 * general/tril.m: Likewise. | |
9521 * general/rot90.m: Likewise. | |
9522 * general/num2str.m: Likewise. | |
9523 * general/int2str.m: Likewise. | |
9524 * general/reshape.m: Likewise. | |
9525 * general/logspace.m: Likewise. | |
9526 * general/is_symmetric.m: Likewise. | |
9527 * general/is_vector.m: Likewise. | |
9528 * general/nextpow2.m: Likewise. | |
9529 * general/columns.m: Likewise. | |
9530 * general/is_square.m: Likewise. | |
9531 * general/rows.m: Likewise. | |
9532 * control/ugain.m: Likewise. | |
9533 * control/damp.m: Likewise. | |
9534 * control/dare.m: Likewise. | |
9535 * control/are.m: Likewise. | |
9536 * control/sys2fir.m: Likewise. | |
9537 * control/abcddim.m: Likewise. | |
9538 * control/is_abcd.m: Likewise. | |
9539 * control/step.m: Likewise. | |
9540 * control/is_observable.m: Likewise. | |
9541 * control/is_controllable.m: Likewise. | |
9542 * control/jet707.m: Likewise. | |
9543 * control/polyout.m: Likewise. | |
9544 * control/impulse.m: Likewise. | |
9545 * control/lqg.m: Likewise. | |
9546 * control/is_detectable.m: Likewise. | |
9547 * control/sysdimensions.m: Likewise. | |
9548 * control/sysupdate.m: Likewise. | |
9549 * control/stepimp.m: Likewise. | |
9550 * control/is_stable.m: Likewise. | |
9551 * control/tfout.m: Likewise. | |
9552 * control/zpout.m: Likewise. | |
9553 | |
3405 | 9554 2000-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
9555 | |
9556 * set/complement.m: Add @seealso{} stuff. | |
9557 * set/create_set.m: Likewise. | |
9558 * set/intersection.m: Likewise. | |
9559 * set/union.m: Likewise. | |
9560 | |
3399 | 9561 1999-12-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
9562 | |
3400 | 9563 * control/d2c.m: Use double quotes instead of single quotes for |
9564 string constants. | |
9565 * control/dgkfdemo.m: Likewise. | |
9566 * control/fir2sys.m: Likewise. | |
9567 * control/frdemo.m: Likewise. | |
9568 * control/moddemo.m: Likewise. | |
9569 * control/minfo.m: Likewise. | |
9570 * control/is_stabilizable.m: Likewise. | |
9571 * control/is_dgkf.m: Likewise. | |
9572 * control/polyout.m: Likewise. | |
9573 * control/sysconnect.m: Likewise. | |
9574 * control/sysrepdemo.m: Likewise. | |
9575 * control/tf2sys.m: Likewise. | |
9576 * control/tfout.m: Likewise. | |
9577 * control/zp2sys.m: Likewise. | |
9578 * control/zpout.m: Likewise. | |
9579 * control/tzero.m: Likewise. | |
9580 | |
9581 * control/DEMOcontrol.m: Handle moddemo case too. | |
9582 | |
9583 * image/loadimage.m: Use double quotes instead of single quotes | |
9584 for string constants. Use sprintf instead of square brackets to | |
9585 construct string. | |
9586 | |
3399 | 9587 * control/DEMOcontrol.m: Formatting tweaks. |
3400 | 9588 * control/fir2sys.m: Likewise. |
3399 | 9589 |
3390 | 9590 1999-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
9591 | |
9592 * mkdoc: Only delete spaces before @ characters at the beginning | |
9593 of a line. | |
9594 | |
3383 | 9595 1999-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
9596 | |
3388 | 9597 * control/bddemo.m: Make it more likely to work with any value of |
9598 whitespace_in_literal_matrix. | |
3386 | 9599 * control/analdemo.m: Ditto. |
9600 * control/dgkfdemo.m: Ditto. | |
9601 * control/frdemo.m: Ditto. | |
9602 * control/sysrepdemo.m: Ditto. | |
9603 * control/moddemo.m: Ditto. | |
3388 | 9604 * control/zp2ss.m: Ditto. |
3387 | 9605 * control/zp2tf.m: Ditto. |
3388 | 9606 * control/syssub.m: Ditto. |
9607 * finance/npv.m: Ditto. | |
9608 * statistics/base/studentize.m: Ditto. | |
9609 * statistics/base/values.m: Ditto. | |
9610 * statistics/distributions/exponential_cdf.m: Ditto. | |
9611 * statistics/distributions/poisson_cdf.m: Ditto. | |
3386 | 9612 |
3384 | 9613 * control/dezero.m: Use toascii to convert string to ASCII value |
9614 instead of multiplying it by 1. | |
9615 | |
3383 | 9616 * control/zp2sys.m: Don't save and restore implicit_str_to_num_ok. |
9617 * control/zpout.m: Ditto. | |
9618 * control/tfout.m: Ditto. | |
9619 * control/tf2sys.m: Ditto. | |
9620 * control/syssub.m: Ditto. | |
9621 * control/syssetsignals.m: Ditto. | |
9622 * control/sysout.m: Ditto. | |
9623 * control/sysmult.m: Ditto. | |
9624 * control/sysgroup.m: Ditto. | |
9625 * control/sysdup.m: Ditto. | |
9626 * control/sysdisc.m: Ditto. | |
9627 * control/syscont.m: Ditto. | |
9628 * control/sysconnect.m: Ditto. | |
9629 * control/sysappend.m: Ditto. | |
9630 * control/sysadd.m: Ditto. | |
9631 * control/ss2sys.m: Ditto. | |
9632 * control/nyquist.m: Ditto. | |
9633 * control/lqg.m: Ditto. | |
9634 * control/fir2sys.m: Ditto. | |
9635 * control/dmr2d.m: Ditto. | |
9636 * control/dezero.m: Ditto. | |
9637 * control/d2c.m: Ditto. | |
9638 * control/c2d.m: Ditto. | |
9639 * control/bddemo.m: Ditto. | |
9640 * control/pzmap.m: Ditto. | |
9641 | |
5095 | 9642 1999-12-08 Daniel Calvelo <dcalvelo@pharion.univ-lille2.fr> |
3374 | 9643 |
9644 * signal/spectral_adf.m: Fix typo. | |
9645 | |
3372 | 9646 1999-11-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
9647 | |
9648 * linear-algebra/cond.m: Texinfoize doc string. | |
9649 * linear-algebra/kron.m: Ditto. | |
9650 * linear-algebra/norm.m: Ditto. | |
9651 * linear-algebra/null.m: Ditto. | |
9652 * linear-algebra/orth.m: Ditto. | |
9653 * linear-algebra/rank.m: Ditto. | |
9654 * linear-algebra/trace.m: Ditto. | |
9655 * linear-algebra/qzhess.m: Ditto. | |
9656 * miscellaneous/menu.m: Ditto. | |
3373 | 9657 * general/perror.m: Ditto. |
9658 * general/strerror.m: Ditto. | |
9659 * general/columns.m: Ditto. | |
9660 * general/rows.m: Ditto. | |
9661 * image/colormap.m: Ditto. | |
9662 * image/gray.m: Ditto. | |
9663 * image/gray2ind.m: Ditto. | |
9664 * image/image.m: Ditto. | |
9665 * image/imagesc.m: Ditto. | |
9666 * image/imshow.m: Ditto. | |
9667 * image/ind2gray.m: Ditto. | |
9668 * image/ind2rgb.m: Ditto. | |
9669 * image/loadimage.m: Ditto. | |
9670 * image/rgb2ntsc.m: Ditto. | |
9671 * image/ntsc2rgb.m: Ditto. | |
9672 * image/ocean.m: Ditto. | |
9673 * image/rgb2ind.m: Ditto. | |
9674 * image/saveimage.m: Ditto. | |
3372 | 9675 * io/printf.m: Ditto. |
9676 * io/puts.m: Ditto. | |
9677 | |
3369 | 9678 1999-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
9679 | |
9680 * special-matrix/hankel.m: Texinfoize doc string. | |
9681 * special-matrix/hilb.m: Ditto. | |
9682 * special-matrix/invhilb.m: Ditto. | |
9683 * special-matrix/sylvester_matrix.m: Ditto. | |
9684 * special-matrix/toeplitz.m: Ditto. | |
9685 * special-matrix/vander.m: Ditto. | |
9686 * linear-algebra/vec.m: Ditto. | |
9687 * linear-algebra/vech.m: Ditto. | |
9688 * general/common_size.m: Ditto. | |
9689 * general/diff.m: Ditto. | |
9690 * general/fliplr.m: Ditto. | |
9691 * general/flipud.m: Ditto. | |
9692 * general/rot90.m: Ditto. | |
9693 * general/reshape.m: Ditto. | |
9694 * general/shift.m: Ditto. | |
9695 * general/tril.m: Ditto. | |
9696 * general/triu.m: Ditto. | |
9697 * general/logspace.m: Ditto. | |
3371 | 9698 * general/nargchk.m: Ditto. |
3369 | 9699 |
3367 | 9700 1999-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
9701 | |
9702 * statistics/base/mean: Texinfoize doc string. | |
9703 * statistics/base/median: Ditto. | |
9704 * statistics/base/std: Ditto. | |
9705 * statistics/base/cov: Ditto. | |
9706 * statistics/base/corrcoef: Ditto. | |
9707 * statistics/base/kurtosis: Ditto. | |
9708 * statistics/base/mahalanobis: Ditto. | |
9709 * statistics/base/skewness: Ditto. | |
3368 | 9710 * statistics/base/gls.m: Ditto. |
9711 * statistics/base/ols.m: Ditto. | |
3367 | 9712 * signal/detrend.m: Ditto. |
9713 * signal/freqz.m: Ditto. | |
9714 * signal/sinc.m: Ditto. | |
9715 * signal/fftconv.m: Ditto. | |
9716 * signal/fftfilt.m: Ditto. | |
3368 | 9717 * set/create_set.m: Ditto. |
9718 * set/union.m: Ditto. | |
9719 * set/intersection.m: Ditto. | |
9720 * set/complement.m: Ditto. | |
9721 * poly/compan.m: Ditto. | |
9722 * poly/conv: Ditto. | |
9723 * poly/deconv: Ditto. | |
9724 * poly/poly: Ditto. | |
9725 * poly/polyderiv: Ditto. | |
9726 * poly/polyfit: Ditto. | |
9727 * poly/polyinteg: Ditto. | |
9728 * poly/polyreduce: Ditto. | |
9729 * poly/polyval: Ditto. | |
9730 * poly/polyvalm: Ditto. | |
9731 * poly/residue: Ditto. | |
9732 * poly/roots: Ditto. | |
9733 * plot/top_title.m: Ditto | |
9734 * plot/subwindow.m: Ditto | |
9735 * plot/subplot.m: Ditto | |
9736 * plot/plot_border.m: Ditto | |
9737 * plot/oneplot.m: Ditto | |
9738 * plot/multiplot.m: Ditto | |
9739 * plot/mplot.m: Ditto | |
9740 * plot/xlabel.m: Ditto | |
9741 * plot/figure.m: Ditto | |
9742 * plot/meshdom.m: Ditto | |
9743 * plot/mesh.m: Ditto | |
9744 * plot/stairs.m: Ditto | |
9745 * plot/polar.m: Ditto | |
9746 * plot/loglog.m: Ditto | |
9747 * plot/hist.m: Ditto | |
9748 * plot/contour.m: Ditto | |
9749 * plot/bar.m: Ditto | |
9750 * plot/axis.m: Ditto | |
9751 * plot/plot.m: Ditto. | |
3367 | 9752 |
3361 | 9753 1999-11-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
9754 | |
3365 | 9755 * control/pinv.m: Delete. |
9756 | |
3364 | 9757 * Makefile.in (DOCSTRINGS): Don't echo $(ALL_M_FILES). |
9758 | |
3361 | 9759 * strings/blanks.m: Texinfoize doc string. |
9760 * strings/strcat.m: Ditto. | |
9761 * strings/str2mat.m: Ditto. | |
9762 * strings/deblank.m: Ditto. | |
9763 * strings/findstr.m: Ditto. | |
9764 * strings/index.m: Ditto. | |
9765 * strings/rindex.m: Ditto. | |
9766 * strings/split.m: Ditto. | |
9767 * strings/strcmp.m: Ditto. | |
9768 * strings/strrep.m: Ditto. | |
9769 * strings/substr.m: Ditto. | |
9770 * general/int2str.m: Ditto. | |
9771 * general/num2str.m: Ditto. | |
9772 * strings/dec2bin.m: Ditto. | |
9773 * strings/bin2dec: Ditto. | |
9774 * strings/dec2bin: Ditto. | |
9775 * strings/dec2hex: Ditto. | |
9776 * strings/hex2dec: Ditto. | |
9777 * strings/str2num: Ditto. | |
9778 | |
3347 | 9779 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
9780 | |
9781 * Makefile.in (DISTFILES): Include DOCSTRINGS. | |
9782 | |
5095 | 9783 1999-11-09 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3361 | 9784 |
9785 * control/DEMOcontrol.m: Texinfoize doc string. | |
9786 * control/abcddim.m: Ditto. | |
9787 * control/abcddims.m: Ditto. | |
9788 * control/analdemo.m: Ditto. | |
9789 * control/are.m: Ditto. | |
9790 * control/axis2dlim.m: Ditto. | |
9791 * control/bddemo.m: Ditto. | |
9792 * control/bode.m: Ditto. | |
9793 * control/bode_bounds.m: Ditto. | |
9794 * control/bodquist.m: Ditto. | |
9795 * control/buildssic.m: Ditto. | |
9796 * control/c2d.m: Ditto. | |
9797 * control/ctrb.m: Ditto. | |
9798 * control/d2c.m: Ditto. | |
9799 * control/damp.m: Ditto. | |
9800 * control/dare.m: Ditto. | |
9801 * control/dcgain.m: Ditto. | |
9802 * control/dgkfdemo.m: Ditto. | |
9803 * control/dgram.m: Ditto. | |
9804 * control/dlqe.m: Ditto. | |
9805 * control/dlqr.m: Ditto. | |
9806 * control/dlyap.m: Ditto. | |
9807 * control/dmr2d.m: Ditto. | |
9808 * control/fir2sys.m: Ditto. | |
9809 * control/frdemo.m: Ditto. | |
9810 * control/freqchkw.m: Ditto. | |
9811 * control/freqresp.m: Ditto. | |
9812 * control/gram.m: Ditto. | |
9813 * control/h2norm.m: Ditto. | |
9814 * control/h2syn.m: Ditto. | |
9815 * control/hinf_ctr.m: Ditto. | |
9816 * control/hinfdemo.m: Ditto. | |
9817 * control/hinfnorm.m: Ditto. | |
9818 * control/hinfsyn.m: Ditto. | |
9819 * control/hinfsyn_chk.m: Ditto. | |
9820 * control/impulse.m: Ditto. | |
9821 * control/is_abcd.m: Ditto. | |
9822 * control/is_controllable.m: Ditto. | |
9823 * control/is_detectable.m: Ditto. | |
9824 * control/is_dgkf.m: Ditto. | |
9825 * control/is_digital.m: Ditto. | |
9826 * control/is_observable.m: Ditto. | |
9827 * control/is_sample.m: Ditto. | |
9828 * control/is_signal_list.m: Ditto. | |
9829 * control/is_siso.m: Ditto. | |
9830 * control/is_stabilizable.m: Ditto. | |
9831 * control/is_stable.m: Ditto. | |
9832 * control/jet707.m: Ditto. | |
9833 * control/lqe.m: Ditto. | |
9834 * control/lqg.m: Ditto. | |
9835 * control/lqr.m: Ditto. | |
9836 * control/lsim.m: Ditto. | |
9837 * control/ltifr.m: Ditto. | |
9838 * control/lyap.m: Ditto. | |
9839 * control/moddemo.m: Ditto. | |
9840 * control/nyquist.m: Ditto. | |
9841 * control/obsv.m: Ditto. | |
9842 * control/ord2.m: Ditto. | |
9843 * control/outlist.m: Ditto. | |
9844 * control/pinv.m: Ditto. | |
9845 * control/place.m: Ditto. | |
9846 * control/polyout.m: Ditto. | |
9847 * control/prompt.m: Ditto. | |
9848 * control/pzmap.m: Ditto. | |
9849 * control/qzval.m: Ditto. | |
9850 * control/rldemo.m: Ditto. | |
9851 * control/rlocus.m: Ditto. | |
9852 * control/sortcom.m: Ditto. | |
9853 * control/ss2sys.m: Ditto. | |
9854 * control/ss2tf.m: Ditto. | |
9855 * control/ss2zp.m: Ditto. | |
9856 * control/starp.m: Ditto. | |
9857 * control/step.m: Ditto. | |
9858 * control/stepimp.m: Ditto. | |
9859 * control/susball.m: Ditto. | |
9860 * control/sys2fir.m: Ditto. | |
9861 * control/sys2ss.m: Ditto. | |
9862 * control/sys2tf.m: Ditto. | |
9863 * control/sys2zp.m: Ditto. | |
9864 * control/sysadd.m: Ditto. | |
9865 * control/sysappend.m: Ditto. | |
9866 * control/syschnames.m: Ditto. | |
9867 * control/syschnamesl.m: Ditto. | |
9868 * control/syschtsam.m: Ditto. | |
9869 * control/sysconnect.m: Ditto. | |
9870 * control/syscont.m: Ditto. | |
9871 * control/syscont_disc.m: Ditto. | |
9872 * control/sysdefioname.m: Ditto. | |
9873 * control/sysdefstname.m: Ditto. | |
9874 * control/sysdimensions.m: Ditto. | |
9875 * control/sysdisc.m: Ditto. | |
9876 * control/sysdup.m: Ditto. | |
9877 * control/sysgetsignals.m: Ditto. | |
9878 * control/sysgettype.m: Ditto. | |
9879 * control/sysgroup.m: Ditto. | |
9880 * control/sysgroupn.m: Ditto. | |
9881 * control/sysmult.m: Ditto. | |
9882 * control/sysout.m: Ditto. | |
9883 * control/sysprune.m: Ditto. | |
9884 * control/sysreorder.m: Ditto. | |
9885 * control/sysrepdemo.m: Ditto. | |
9886 * control/sysscale.m: Ditto. | |
9887 * control/syssetsignals.m: Ditto. | |
9888 * control/syssub.m: Ditto. | |
9889 * control/sysupdate.m: Ditto. | |
9890 * control/tf2ss.m: Ditto. | |
9891 * control/tf2sys.m: Ditto. | |
9892 * control/tf2sysl.m: Ditto. | |
9893 * control/tf2zp.m: Ditto. | |
9894 * control/tfout.m: Ditto. | |
9895 * control/tzero.m: Ditto. | |
9896 * control/tzero2.m: Ditto. | |
9897 * control/ugain.m: Ditto. | |
9898 * control/wgt1o.m: Ditto. | |
9899 * control/zgfmul.m: Ditto. | |
9900 * control/zgfslv.m: Ditto. | |
9901 * control/zginit.m: Ditto. | |
9902 * control/zgpbal.m: Ditto. | |
9903 * control/zgreduce.m: Ditto. | |
9904 * control/zgrownorm.m: Ditto. | |
9905 * control/zgscal.m: Ditto. | |
9906 * control/zgsgiv.m: Ditto. | |
9907 * control/zgshsr.m: Ditto. | |
9908 * control/zp2ss.m: Ditto. | |
9909 * control/zp2ssg2.m: Ditto. | |
9910 * control/zp2sys.m: Ditto. | |
9911 * control/zp2tf.m: Ditto. | |
9912 * control/zpout.m: Ditto. | |
9913 | |
5095 | 9914 1999-11-02 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3332 | 9915 |
5378 | 9916 * audio/lin2mu.m: Texinfoize doc string. |
9917 * audio/loadaudio.m: Ditto. | |
9918 * audio/mu2lin.m: Ditto. | |
9919 * audio/playaudio.m: Ditto. | |
9920 * audio/record.m: Ditto. | |
9921 * audio/saveaudio.m: Ditto. | |
3332 | 9922 |
5095 | 9923 1999-10-26 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321 | 9924 |
9925 * elfun/acot.m: Texinfoize doc string. | |
9926 * elfun/acsc.m: Ditto. | |
9927 * elfun/acsch.m: Ditto. | |
9928 * elfun/asec.m: Ditto. | |
9929 * elfun/asech.m: Ditto. | |
9930 * elfun/cot.m: Ditto. | |
9931 * elfun/coth.m: Ditto. | |
9932 * elfun/csc.m: Ditto. | |
9933 * elfun/csch.m: Ditto. | |
9934 * elfun/gcd.m: Ditto. | |
9935 * elfun/lcm.m: Ditto. | |
9936 * elfun/sec.m: Ditto. | |
9937 * elfun/sech.m: Ditto. | |
9938 * general/nextpow2.m: Ditto. | |
9939 * general/rem.m: Ditto. | |
9940 * linear-algebra/commutation_matrix.m: Ditto. | |
9941 * linear-algebra/cross.m: Ditto. | |
9942 * linear-algebra/duplication_matrix.m: Ditto. | |
9943 * miscellaneous/bincoeff.m: Ditto. | |
9944 * miscellaneous/xor.m: Ditto. | |
9945 * specfun/bessel.m: Ditto. | |
9946 * specfun/beta.m: Ditto. | |
9947 * specfun/betai.m: Ditto. | |
9948 * specfun/erfinv.m: Ditto. | |
9949 * specfun/gammai.m: Ditto. | |
9950 * specfun/log2.m: Ditto. | |
9951 * specfun/pow2.m: Ditto. | |
9952 | |
5095 | 9953 1999-10-23 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321 | 9954 |
9955 * general/is_scalar.m: Texinfoize help text. | |
9956 * general/is_square.m: Ditto. | |
9957 * general/is_symmetric.m: Ditto. | |
9958 | |
3320 | 9959 1999-10-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
9960 | |
9961 * strings/split.m: If the string to be split is empty, just return | |
9962 an empty string. | |
9963 | |
3319 | 9964 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
9965 | |
9966 * Makefile.in (ALL_M_FILES): New macro. | |
9967 (DOCSTRINGS): No longer .PHONY; depend on $(ALL_M_FILES). | |
9968 | |
3306 | 9969 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
9970 | |
9971 * control/bode.m: Don't return anything if nargout == 0. | |
9972 | |
9973 1999-10-20 James B. Rawlings <jbraw@bevo.che.wisc.edu> | |
9974 | |
9975 * control/bode.m: Don't do axis scaling for magnitude plots. | |
9976 | |
3305 | 9977 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
9978 | |
9979 * Makefile.in (DISTFILES): Add move-if-change, mkdoc, and | |
9980 gethelp.cc to the list. | |
9981 | |
3296 | 9982 1999-10-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
9983 | |
3301 | 9984 * time/asctime.m: Texinfoize help text. |
9985 * time/clock.m: Ditto. | |
9986 * time/date.m: Ditto. | |
9987 * miscellaneous/cputime.m: Ditto. | |
9988 * miscellaneous/etime.m: Ditto. | |
9989 * miscellaneous/is_leap_year.m: Ditto. | |
9990 * miscellaneous/popen2.m: Ditto. | |
9991 * miscellaneous/version.m: Ditto. | |
9992 * miscellaneous/tic.m: Ditto. | |
9993 * miscellaneous/toc.m: Just refer to tic.m. | |
9994 | |
3297 | 9995 * Makefile.in (dist, bin-dist): Use `$(MAKE) -C dir' instead of |
9996 `cd dir; $(MAKE); cd ..'. | |
9997 ($(SUBDIRS)): Likewise. | |
9998 | |
9999 * statistics/Makefile.in ($(SUBDIRS)): Likewise. | |
10000 | |
10001 * statistics/Makefile.in (bin-dist): Use `$(MAKE) -C dir' instead | |
10002 of `cd dir; $(MAKE)'. | |
10003 | |
3296 | 10004 * gethelp.cc, mkdoc: New files. |
10005 * Makefile.in: Use them to create DOCSTRINGS file from .m file | |
10006 sources. | |
10007 | |
3291 | 10008 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
10009 | |
10010 * linear-algebra/kron.m: Fix typo in previous change | |
10011 | |
3282 | 10012 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
10013 | |
10014 * control/bode.m: Allow optional 5th arg to specify plot style. | |
10015 | |
5095 | 10016 Wed Sep 22 22:12:03 1999 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3273 | 10017 |
10018 * linear-algebra/krylov.m: Correctly handle case of V having full | |
10019 rank when V has more columns than rows. | |
10020 | |
10021 Mon Sep 20 23:04:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10022 | |
10023 * general/linspace.m, linear-algebra/pinv.m: Delete. | |
10024 | |
10025 * statistics/tests/manova.m: Avoid problems if | |
10026 whitespace_in_literal_matrix is set to "traditional". | |
10027 * statistics/tests/t_test_regression.m: Likewise. | |
10028 * statistics/tests/u_test.m: Likewise. | |
10029 * statistics/tests/chisquare_test_homogeneity.m: Likewise. | |
10030 * statistics/tests/anova.m: Likewise. | |
10031 * statistics/tests/kruskal_wallis_test.m: Likewise. | |
10032 * statistics/base/statistics.m: Likewise. | |
10033 * image/saveimage.m: Likewise. | |
10034 * signal/arch_fit.m: Likewise. | |
10035 * signal/autoreg_matrix.m: Likewise. | |
10036 * signal/triangle_lw.m: Likewise. | |
10037 * strings/dec2hex.m: Likewise. | |
10038 | |
3268 | 10039 Thu Sep 9 19:31:58 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10040 | |
10041 * image/saveimage.m: Initialize scale. | |
10042 | |
10043 Sun Sep 5 22:13:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10044 | |
10045 * general/reshape.m: Allow reshape (a, size (b)). | |
10046 | |
3266 | 10047 Fri Sep 3 00:01:38 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10048 | |
10049 * specfun/erfinv.m: Improve stopping criterion. | |
10050 Add iteration count as second return value. | |
10051 | |
3265 | 10052 Mon Aug 30 12:07:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10053 | |
10054 * statistics/base/mean.m: Use .', not ' to reorient row vectors. | |
10055 | |
3263 | 10056 Tue Aug 17 11:11:27 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10057 | |
10058 * miscellaneous/pack.m: New function. | |
10059 | |
10060 Mon Aug 16 07:46:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10061 | |
10062 * plot/figure.m: Always return figure number. With no args, | |
10063 figure now creates a new figure window and returns its number. | |
10064 Accept figure (property, value) syntax, but do nothing. | |
10065 | |
5095 | 10066 Thu Aug 12 09:28:01 PDT 1999 Tom Poage <tfpoage@ucdavis.edu> |
3263 | 10067 |
10068 * general/shift.m: Avoid printing temporary value for backward shift. | |
10069 | |
3260 | 10070 Mon Aug 2 16:39:04 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10071 | |
10072 * plot/bar.m: Compute bar widths correctly when x-values are not | |
10073 evenly spaced. | |
10074 | |
3250 | 10075 Mon Jul 12 22:48:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10076 | |
10077 * linear-algebra/cond.m: Avoid returning NaN for matrices that | |
10078 contain only zeros. | |
10079 | |
5095 | 10080 Sun Jun 20 22:24:27 1999 Eduardo Gallestey <eduardo@faceng.anu.edu.au> |
3250 | 10081 |
10082 * linear-algebra/kron.m: Create result matrix and insert blocks | |
10083 instead of appending them. | |
10084 | |
10085 Sat Jun 19 01:52:18 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10086 | |
10087 * control/bodquist.m, control/buildssic.m, control/is_digital.m, | |
10088 control/stepimp.m, control/sysmin.m, control/syssetsignals.m: | |
10089 Update from A. S. Hodel. | |
10090 | |
3246 | 10091 Fri Jun 18 12:19:22 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10092 | |
10093 * polynomial/polyfit.m: Correct previous change. | |
10094 | |
3243 | 10095 Wed Apr 7 13:57:26 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10096 | |
10097 * linear-algebra/qrhouse.m, linear-algebra/krygetq.m: Delete. | |
10098 | |
5095 | 10099 Wed Apr 7 13:22:43 1999 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
3240 | 10100 |
10101 * control/is_controllable.m, control/zgscal.m: Accomodate new | |
10102 version of krylov and krylovb. | |
10103 | |
10104 * control/outlist.m, control/sysout.m: Fix typos. | |
10105 | |
10106 * control/sysdimensions.m: Add option for total number of states. | |
10107 | |
10108 * linear-algebra/krylov.m: Improve robustness by row-pivoting. | |
10109 * linear-algebra/krylovb.m: Just call krylov with appropriate | |
10110 arguments. | |
10111 | |
10112 Tue Mar 30 00:43:09 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10113 | |
10114 * strings/index.m: Fail with meaningful error message if either | |
10115 arg is a string array. | |
10116 | |
3238 | 10117 Wed Mar 24 20:34:48 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10118 | |
10119 * linear-algebra/norm.m: Do the right thing for 1- and | |
10120 infinity-norms of complex matrices. From Sven Khatri | |
10121 <khatri@saturn.vocalpoint.com>. | |
10122 | |
5095 | 10123 Tue Mar 16 13:36:36 1999 A. Scottedward Hodel" <scotte@eng.auburn.edu> |
3238 | 10124 |
10125 * linear-algebra/qrhouse.m: Handle default args correctly. | |
10126 | |
10127 Thu Mar 11 12:52:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10128 | |
10129 * strings/split.m: Avoid problems when splitting strings that have | |
10130 \ in them. | |
10131 | |
5095 | 10132 Thu Mar 11 12:36:13 1999 Massimo Lorenzin <maxlorenzin@tin.it> |
3238 | 10133 |
10134 * image/colormap.m: Do better arg checking, handle string args | |
10135 that name the colormap function to call (e.g., colormap ("ocean")). | |
10136 | |
5095 | 10137 Mon Mar 8 22:23:24 1999 Rolf Fabian <fabian@TU-Cottbus.De> |
3238 | 10138 |
10139 * polynomial/polyfit.m: Use .' transpose operator, not '. | |
10140 * linear-algebra/dot.m: Likewise. | |
10141 * linear-algebra/cross.m: Likewise. | |
10142 * general/rot90.m: Likewise. | |
10143 | |
5095 | 10144 Sat Mar 6 01:45:00 1999 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3238 | 10145 |
10146 * linear-algebra/qrhouse.m: Permute columns at each iteration so | |
10147 that the leading column is not all zeros. | |
10148 | |
10149 Fri Mar 5 00:37:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10150 | |
10151 * general/shift.m: Fix potential problems with | |
10152 whitespace_in_literal_matrix. | |
10153 * signal/arch_rnd.m: Ditto. | |
10154 * signal/autocov.m: Ditto. | |
10155 * signal/diffpara.m: Ditto. | |
10156 * signal/hurst.m: Ditto. | |
10157 * signal/periodogram.m: Ditto. | |
10158 * signal/spectral_adf.m: Ditto. | |
10159 * signal/spectral_xdf.m: Ditto. | |
10160 * signal/spencer.m: Ditto. | |
10161 * signal/synthesis.m: Ditto. | |
10162 * statistics/distributions/wiener_rnd.m: Ditto. | |
10163 * statistics/models/logistic_regression_likelihood.m: Ditto. | |
10164 * statistics/models/logistic_regression.m: Ditto. | |
10165 * statistics/models/logistic_regression_derivatives.m: Ditto. | |
10166 * statistics/tests/run_test.m: Ditto. | |
10167 * statistics/tests/chisquare_test_independence.m: Ditto. | |
10168 | |
5095 | 10169 Wed Mar 3 02:25:00 1999 Joao Cardoso <jcardoso@inescn.pt> |
3238 | 10170 |
10171 * plot/__plr2__.m: Fix typo. | |
10172 | |
3233 | 10173 Tue Jan 12 10:31:15 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10174 | |
10175 * plot/__pltopt1__.m: Accept "k" to mean black. | |
10176 | |
5095 | 10177 Fri Dec 11 10:43:19 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233 | 10178 |
10179 * linear-algebra/krylov.m: Force empty_list_elements_ok for this | |
10180 function. | |
10181 | |
5095 | 10182 Thu Dec 10 11:07:00 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233 | 10183 |
10184 * control/ss2sys.m: Fix typo. | |
10185 | |
10186 Wed Dec 9 12:42:19 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10187 | |
10188 * plot/subplot.m, plot/oneplot.m: Don't call clearplot. | |
10189 | |
10190 * control: Update from A. S. Hodel <a.s.hodel@eng.auburn.edu> for | |
10191 signal names as lists of strings instead of string arrays. | |
10192 | |
3225 | 10193 Fri Dec 4 16:08:42 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10194 | |
3233 | 10195 * quaternion: New directory of functions from A. S. Hodel |
3225 | 10196 <a.s.hodel@eng.auburn.edu>. |
10197 * Makefile.in (SUBDIRS): Add it to the list. | |
3226 | 10198 * quaternion/Makefile.in: New file. |
10199 * configure.in (AC_OUTPUT): Add quaternion/Makefile. | |
3225 | 10200 |
10201 Tue Nov 24 21:41:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10202 | |
10203 * image/saveimage.m: Make it work again for black and white colormaps. | |
10204 | |
10205 * image/imagesc.m: Use rows (colormap), not length (colormap), | |
10206 since there can be fewer rows than columns. Round values to | |
10207 nearest position in colormap instead of truncating. Correct usage | |
10208 message. | |
10209 | |
5095 | 10210 Tue Nov 24 14:50:52 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3225 | 10211 |
10212 * linear-algebra/krylov.m: New arg pflg. If nonzero, avoid using | |
10213 zero rows of [A,v] as householder pivots; this avoids spurious | |
10214 non-zero entries in returned orthogonal matrix U, but destroys the | |
10215 Householder matrix structure of H. | |
10216 | |
10217 Fri Nov 20 12:46:46 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10218 | |
10219 * general/logical.m: Just copy input to output if argument is | |
10220 already a logical object. | |
10221 | |
3215 | 10222 Fri Nov 6 10:17:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10223 | |
10224 * New files from OCST, in control subdiretory: | |
10225 | |
10226 DEMOcontrol.m is_siso.m syschnames.m | |
10227 abcddim.m is_stabilizable.m syschnamesl.m | |
10228 abcddims.m is_stable.m syschtsam.m | |
10229 analdemo.m jet707.m sysconnect.m | |
10230 are.m lqe.m syscont.m | |
10231 axis2dlim.m lqg.m syscont_disc.m | |
10232 bddemo.m lqr.m sysdefioname.m | |
10233 bode.m lsim.m sysdefstname.m | |
10234 bode_bounds.m ltifr.m sysdimensions.m | |
10235 bodquist.m lyap.m sysdisc.m | |
10236 buildssic.m mb.m sysdup.m | |
10237 c2d.m minfo.m sysgetsignals.m | |
6302 | 10238 com2str.m moddemo.m sysgettsam.m |
3215 | 10239 controldemo.m nichols.m sysgettype.m |
10240 ctrb.m nyquist.m sysgroup.m | |
10241 d2c.m obsv.m sysgroupn.m | |
10242 damp.m ord2.m sysmult.m | |
10243 dare.m outlist.m sysout.m | |
10244 dcgain.m packedform.m sysprune.m | |
10245 demomarsyas.m packsys.m sysreorder.m | |
10246 dezero.m; parallel.m sysrepdemo.m | |
10247 dgkfdemo.m place.m sysscale.m | |
10248 dgram.m polyout.m syssub.m | |
10249 dhinfdemo.m prompt.m sysupdate.m | |
10250 dlqe.m pzmap.m tf2ss.m | |
10251 dlqg.m qzval.m tf2sys.m | |
10252 dlqr.m rldemo.m tf2sysl.m | |
10253 dlyap.m rlocus.m tf2zp.m | |
10254 dmr2d.m rotg.m tfout.m | |
10255 fir2sys.m run_cmd.m; tzero.m | |
10256 frdemo.m series.m tzero2.m | |
10257 freqchkw.m sortcom.m ugain.m | |
10258 freqresp.m ss2sys.m unpacksys.m | |
10259 gram.m ss2tf.m wgt1o.m | |
10260 h2norm.m ss2zp.m zgfmul.m | |
10261 h2syn.m starp.m zgfslv.m | |
10262 hinf_ctr.m step.m zginit.m | |
10263 hinfdemo.m stepimp.m zgpbal.m | |
10264 hinfnorm.m strappend.m; zgreduce.m | |
10265 hinfsyn.m susball.m zgrownorm.m | |
10266 hinfsyn_chk.m swap.m zgscal.m | |
10267 impulse.m swapcols.m zgsgiv.m | |
10268 is_abcd.m swaprows.m zgshsr.m | |
10269 is_controllable.m sys2fir.m zp2ss.m | |
10270 is_detectable.m sys2ss.m zp2ssg2.m | |
10271 is_dgkf.m sys2tf.m zp2sys.m | |
10272 is_digital.m sys2zp.m zp2tf.m | |
10273 is_observable.m sysadd.m zpout.m | |
10274 is_sample.m sysappend.m | |
10275 | |
10276 Thu Nov 5 13:28:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10277 | |
10278 * configure.in (AC_OUTPUT): Escape newlinew in macro call with \. | |
10279 | |
10280 * strings/deblank.m: Make it work for string arrays too. | |
10281 | |
3211 | 10282 Wed Nov 4 21:51:13 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10283 | |
10284 * linear-algebra/housh.m: New file from the OCST. | |
10285 * linear-algebra/krygetq.m: Ditto. | |
10286 * linear-algebra/krylov.m: Ditto. | |
10287 * linear-algebra/krylovb.m: Ditto. | |
10288 * linear-algebra/qrhouse.m: Ditto. | |
10289 * general/is_duplicate_entry.m: Ditto. | |
10290 | |
10291 * general/is_symmetric.m: Call is_square instead of doing that | |
10292 check in line. | |
10293 | |
3196 | 10294 Wed Oct 28 11:51:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10295 | |
3202 | 10296 * general/is_square.m: |
10297 | |
10298 * general/isempty.m, general/is_matrix.m: Delete. | |
10299 | |
10300 * general/is_symmetric: Delete special case for strings. Whether | |
10301 the conversion is valid should depend on implicit_str_to_num_ok. | |
10302 | |
10303 * general/is_square.m: If arg is not a matrix, don't check size, | |
10304 just return 0. | |
10305 * general/is_symmetric: Likewise. | |
10306 * general/is_vector.m: Likewise. | |
10307 * general/is_scalar.m: Likewise. | |
10308 | |
3196 | 10309 * general/length.m: Delete. |
10310 | |
3191 | 10311 Fri Oct 23 00:21:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10312 | |
10313 * configure.in: Add finance/Makefile, statistics/base/Makefile, | |
10314 statistics/distributions/Makefile, statistics/models/Makefile, | |
10315 and statistics/tests/Makefile to the list of files to create. | |
10316 | |
10317 * finance/Makefile.in, statistics/base/Makefile.in, | |
10318 statistics/distributions/Makefile.in, statistics/models/Makefile.in, | |
10319 statistics/tests/Makefile.in: New files. | |
10320 * statistics/Makefile.in: Delete file lists. Now only handle | |
10321 subdirectories. | |
10322 * Makefile.in (SUBDIRS): Add finance. | |
10323 | |
10324 * Move the following files from statistics to statistics/base: | |
10325 | |
10326 corrcoef.m | |
10327 kurtosis.m | |
10328 mahalanobis.m | |
10329 median.m | |
10330 ols.m | |
10331 skewness.m | |
10332 std.m | |
10333 | |
10334 New files, from Kurt Hornik's octave-ci package: | |
10335 | |
10336 * finance (new directory): | |
10337 | |
10338 fv.m | |
10339 fvl.m | |
10340 irr.m | |
10341 nper.m | |
10342 npv.m | |
10343 pmt.m | |
10344 pv.m | |
10345 pvl.m | |
10346 rate.m | |
10347 vol.m | |
10348 | |
10349 * linear-algebra/dmult.m | |
10350 | |
10351 * signal: | |
10352 | |
10353 arch_fit.m | |
10354 arch_rnd.m | |
10355 arch_test.m | |
10356 arma_rnd.m | |
10357 autocor.m | |
10358 autocov.m | |
10359 autoreg_matrix.m | |
10360 bartlett.m | |
10361 blackman.m | |
10362 diffpara.m | |
10363 durbinlevinson.m | |
10364 fractdiff.m | |
10365 hamming.m | |
10366 hanning.m | |
10367 hurst.m | |
10368 periodogram.m | |
10369 rectangle_lw.m | |
10370 rectangle_sw.m | |
10371 sinetone.m | |
10372 sinewave.m | |
10373 spectral_adf.m | |
10374 spectral_xdf.m | |
10375 spencer.m | |
10376 stft.m | |
10377 synthesis.m | |
10378 triangle_lw.m | |
10379 triangle_sw.m | |
10380 yulewalker.m | |
10381 | |
10382 * statistics/base (new directory): | |
10383 | |
10384 center.m | |
10385 cloglog.m | |
10386 cor.m | |
10387 cov.m | |
10388 cut.m | |
10389 iqr.m | |
10390 kendall.m | |
10391 logit.m | |
10392 mean.m | |
10393 meansq.m | |
10394 moment.m | |
10395 ppplot.m | |
10396 probit.m | |
10397 qqplot.m | |
10398 range.m | |
10399 ranks.m | |
10400 run_count.m | |
10401 spearman.m | |
10402 statistics.m | |
10403 studentize.m | |
10404 table.m | |
10405 values.m | |
10406 var.m | |
10407 | |
10408 (Replaces cov.m and mean.m with new versions.) | |
10409 | |
10410 * statistics/distributions (new directory): | |
10411 | |
10412 beta_cdf.m | |
10413 beta_inv.m | |
10414 beta_pdf.m | |
10415 beta_rnd.m | |
10416 binomial_cdf.m | |
10417 binomial_inv.m | |
10418 binomial_pdf.m | |
10419 binomial_rnd.m | |
10420 cauchy_cdf.m | |
10421 cauchy_inv.m | |
10422 cauchy_pdf.m | |
10423 cauchy_rnd.m | |
10424 chisquare_cdf.m | |
10425 chisquare_inv.m | |
10426 chisquare_pdf.m | |
10427 chisquare_rnd.m | |
10428 discrete_cdf.m | |
10429 discrete_inv.m | |
10430 discrete_pdf.m | |
10431 discrete_rnd.m | |
10432 empirical_cdf.m | |
10433 empirical_inv.m | |
10434 empirical_pdf.m | |
10435 empirical_rnd.m | |
10436 exponential_cdf.m | |
10437 exponential_inv.m | |
10438 exponential_pdf.m | |
10439 exponential_rnd.m | |
10440 f_cdf.m | |
10441 f_inv.m | |
10442 f_pdf.m | |
10443 f_rnd.m | |
10444 gamma_cdf.m | |
10445 gamma_inv.m | |
10446 gamma_pdf.m | |
10447 gamma_rnd.m | |
10448 geometric_cdf.m | |
10449 geometric_inv.m | |
10450 geometric_pdf.m | |
10451 geometric_rnd.m | |
10452 hypergeometric_cdf.m | |
10453 hypergeometric_inv.m | |
10454 hypergeometric_pdf.m | |
10455 hypergeometric_rnd.m | |
10456 kolmogorov_smirnov_cdf.m | |
10457 laplace_cdf.m | |
10458 laplace_inv.m | |
10459 laplace_pdf.m | |
10460 laplace_rnd.m | |
10461 logistic_cdf.m | |
10462 logistic_inv.m | |
10463 logistic_pdf.m | |
10464 logistic_rnd.m | |
10465 lognormal_cdf.m | |
10466 lognormal_inv.m | |
10467 lognormal_pdf.m | |
10468 lognormal_rnd.m | |
10469 normal_cdf.m | |
10470 normal_inv.m | |
10471 normal_pdf.m | |
10472 normal_rnd.m | |
10473 pascal_cdf.m | |
10474 pascal_inv.m | |
10475 pascal_pdf.m | |
10476 pascal_rnd.m | |
10477 poisson_cdf.m | |
10478 poisson_inv.m | |
10479 poisson_pdf.m | |
10480 poisson_rnd.m | |
10481 stdnormal_cdf.m | |
10482 stdnormal_inv.m | |
10483 stdnormal_pdf.m | |
10484 stdnormal_rnd.m | |
10485 t_cdf.m | |
10486 t_inv.m | |
10487 t_pdf.m | |
10488 t_rnd.m | |
10489 uniform_cdf.m | |
10490 uniform_inv.m | |
10491 uniform_pdf.m | |
10492 uniform_rnd.m | |
10493 weibull_cdf.m | |
10494 weibull_inv.m | |
10495 weibull_pdf.m | |
10496 weibull_rnd.m | |
10497 wiener_rnd.m | |
10498 | |
10499 * statistics/models (new directory): | |
10500 | |
10501 logistic_regression.m | |
10502 logistic_regression_derivatives.m | |
10503 logistic_regression_likelihood.m | |
10504 | |
10505 * statistics/tests (new directory): | |
10506 | |
10507 anova.m | |
10508 bartlett_test.m | |
10509 chisquare_test_homogeneity.m | |
10510 chisquare_test_independence.m | |
10511 cor_test.m | |
10512 f_test_regression.m | |
10513 hotelling_test.m | |
10514 hotelling_test_2.m | |
10515 kolmogorov_smirnov_test.m | |
10516 kolmogorov_smirnov_test_2.m | |
10517 kruskal_wallis_test.m | |
10518 manova.m | |
10519 mcnemar_test.m | |
10520 prop_test_2.m | |
10521 run_test.m | |
10522 sign_test.m | |
10523 t_test.m | |
10524 t_test_2.m | |
10525 t_test_regression.m | |
10526 u_test.m | |
10527 var_test.m | |
10528 welch_test.m | |
10529 wilcoxon_test.m | |
10530 z_test.m | |
10531 z_test_2.m | |
10532 | |
10533 Thu Oct 22 12:25:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10534 | |
10535 * time/date.m: Use %Y, not %y in format string, for Matlab 5 | |
10536 compatibility and to avoid Y2K problems. | |
10537 | |
3190 | 10538 Mon Oct 19 17:26:35 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10539 | |
10540 * polynomial/polyfit.m: Just use the \ operator to handle the | |
10541 least-squares solution. | |
10542 | |
3180 | 10543 Thu Sep 3 12:40:47 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10544 | |
10545 * strings/str2num.m: If eval returns a string, return an empty matrix. | |
10546 | |
10547 * strings/strrep.m: Don't convert args to numeric values. | |
10548 Prevent warnings for empty string args. | |
10549 From Georg Thimm <thimm@idiap.ch>. | |
10550 | |
10551 * strings/strcat.m: Prevent warnings for empty string args. | |
10552 | |
10553 Wed Sep 2 17:20:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10554 | |
10555 * miscellaneous/menu.m: Remove special case for empty string | |
10556 returned from input(). Add second arg to eval() to catch errors. | |
10557 | |
3178 | 10558 Thu Jun 18 16:32:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10559 | |
10560 * plot/__plt__.m: Don't call usleep. | |
10561 | |
3175 | 10562 Mon May 18 11:42:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10563 | |
10564 * linear-algebra/dot.m: New function. | |
10565 | |
10566 * strings/lower.m, strings/upper.m: New functions, for Matlab | |
10567 compatibility. | |
10568 | |
10569 Fri May 15 01:16:53 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10570 | |
10571 * plot/hist.m: Also allow just one output argument. | |
10572 | |
10573 Sun May 10 23:00:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10574 | |
10575 * strings/deblank.m: Make it work if the string is only blanks. | |
10576 | |
10577 Tue May 5 00:53:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10578 | |
10579 * plot/__plt2mv__.m: Delete calls to keyboard. | |
10580 | |
10581 Mon May 4 11:43:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10582 | |
10583 * plot/oneplot.m: Fix typo. | |
10584 | |
3174 | 10585 Wed Apr 22 12:11:27 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10586 | |
10587 * miscellaneous/flops.m: Allow a single argument too. | |
10588 | |
10589 Tue Apr 21 10:18:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10590 | |
10591 * strings/str2mat.m: Also handle case when there are no empty | |
10592 strings correctly. | |
10593 | |
10594 Mon Apr 20 22:14:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10595 | |
10596 * strings/isletter.m: New function, for Matlab compatibility. | |
10597 | |
3168 | 10598 Fri Apr 17 10:53:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10599 | |
10600 * strings/str2mat.m: Handle string matrices too. | |
10601 | |
3167 | 10602 Wed Apr 15 11:16:01 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10603 | |
10604 * audio/loadaudio.m: Accept "pcm" as another file extension for | |
10605 linear encoding. | |
10606 | |
10607 * audio/saveaudio.m, audio/loadaudio.m, audio/playaudio.m, | |
10608 audio/record.m: Open files in binary mode. | |
10609 | |
3164 | 10610 Fri Apr 10 10:46:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10611 | |
10612 * miscellaneous/dump_prefs.m: Use string array for list of values. | |
10613 Move functionality of dump_1_pref here, but use built-in function | |
10614 type to extract value, and put it inside try/catch block. | |
10615 * miscellaneous/dump_1_pref.m: Delete unused function. | |
10616 | |
3162 | 10617 Wed Apr 8 13:17:58 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10618 | |
10619 * plot/__pltopt1.m__: New file. | |
10620 * plot/__pltopt.m__: Handle opt as a string array by calling | |
10621 __pltopt1__ multiple times and returning a string array with rows | |
10622 corresponding to the rows of opt. | |
10623 * plot/__plt2ss__.m, plot/__plt2vv__.m, plot/__plt2vm__.m, | |
10624 plot/__plt2mv__.m, plot/__plt2mm__.m: Handle fmt as a string | |
10625 array. | |
10626 | |
10627 Fri Mar 27 03:00:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10628 | |
10629 * plot/mplot.m: Fix misspellings of global variables. | |
10630 Don't call clearplot. | |
10631 | |
10632 Tue Mar 17 17:45:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10633 | |
10634 * plot/subplot.m, plot/multiplot.m: Set gnuplot_command_replot to | |
10635 "cle;rep" when going in ot multiplot mode. | |
10636 * plot/oneplot.m: Reset gnuplot_command_replot to "rep" when | |
10637 switching out of multiplot mode. | |
10638 | |
3156 | 10639 Fri Feb 20 01:31:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
3148 | 10640 |
3156 | 10641 * plot/mplot.m, plot/subplot.m, plot/oneplot.m, plot/multiplot.m, |
10642 plot/subwindow.m: Call clearplot after setting up multiplot mode. | |
3148 | 10643 |
3141 | 10644 Tue Feb 3 00:18:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10645 | |
10646 * special-matrix/sylvester_matrix.m: Rename from hadamard.m | |
10647 | |
10648 * miscellaneous/bug_report.m: Don't try to get smart with | |
10649 OCTAVE_HOME. Assume octave-bug can be found in EXEC_PATH. | |
10650 | |
10651 * Makefile.in (install): Create separate ls-R files for | |
10652 $(datadir) and $(libexecdir). | |
10653 (uninstall): Remove both ls-R files. | |
10654 | |
3136 | 10655 Sat Jan 31 01:09:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10656 | |
10657 * signal/fftshift.m: New file. | |
10658 | |
10659 * plot/contour.m: Fix for non-square case. | |
10660 | |
10661 * general/randperm.m: New file. | |
10662 | |
10663 Fri Jan 30 15:20:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10664 | |
10665 * specfun/betai.m: Restore file for compatibility with previous | |
10666 versions. Call betainc with reordered args. | |
10667 * specfun/gammai.m: Likewise, call gammainc with reordered args. | |
10668 | |
3131 | 10669 Wed Jan 28 22:44:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10670 | |
10671 * plot/contour.m: Handle discrete contour levels. | |
10672 | |
10673 Tue Jan 27 04:31:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10674 | |
10675 * control/lyap.m: For compatibility with Matlab, solve | |
10676 A*X + X*A' + C = 0 instead of A'*X + X*A + C = 0. | |
10677 | |
3124 | 10678 Wed Dec 10 00:14:29 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10679 | |
10680 * specfun/bessel.m: New file. | |
10681 | |
10682 * specfun/betai.m, specfun/betainc.m, specfun/gammai.m, | |
10683 specfun/gammainc.m: Delete. | |
10684 | |
3106 | 10685 Wed Nov 19 00:19:18 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10686 | |
10687 * image/colormap.m: Initialize __current_color_map__ in global | |
10688 statement. | |
10689 * miscellaneous/toc.m: Initialize __tic_toc_timestamp__ in global | |
10690 statement. | |
10691 * plot/axis.m: Initialize __current_axis__ in global statement. | |
10692 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, | |
10693 plot/subwindow.m: Initialize __multiplot_mode__ in global statement. | |
10694 | |
3103 | 10695 Tue Nov 18 01:35:50 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10696 | |
10697 * time/tic.m: Rename _time_tic_called to __tic_toc_timestamp__. | |
10698 * time/toc.m: Likewise. | |
10699 | |
10700 * image/colormap.m: Rename CURRENT_COLOR_MAP to __current_color_map__. | |
10701 | |
10702 * plot/mplot.m, plot/multiplot.m, plot/subplot.m: Don't do | |
10703 anything special for automatic_replot when in multiplot mode -- | |
10704 recent 3.6beta releases handle this correctly. | |
10705 | |
10706 * plot/figure.m: Ensure that we are not in multiplot mode before | |
10707 setting the terminal type. | |
10708 | |
10709 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, | |
10710 plot/subwindow.m: Use leading and trailing underscores for | |
10711 `private' globals. | |
10712 | |
10713 * plot/oneplot.m: Don't do anything if gnuplot_has_multiplot is false. | |
10714 | |
3101 | 10715 Fri Nov 14 10:53:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10716 | |
10717 * plot/__pltopt__.m: Use sprintf instead of strcat when adding TITLE. | |
10718 | |
3091 | 10719 Fri Oct 10 11:18:10 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10720 | |
3092 | 10721 * specfun/gammai.m: Avoid problems with whitespace when |
10722 constructing matrices. | |
10723 | |
3091 | 10724 * polynomial/polyfit.m: Compute yf correctly. From Seung Lee |
10725 <SJL@nrc.gov>. Also return yf in the same orientation as the | |
10726 original y vector. | |
10727 | |
3085 | 10728 Fri Sep 19 17:04:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10729 | |
10730 * linear-algebra/cross.m: Use direct formula instead of calling | |
10731 det three times in a loop. If both args are column (row) vectors, | |
10732 return a column (row) vector. If they don't match, pay attention | |
10733 to the value of prefer_column_vectors. | |
10734 | |
5095 | 10735 Thu Aug 28 15:31:20 1997 Rolf Fabian <fabian@olymp.Umwelt.TU-Cottbus.de> |
3085 | 10736 |
10737 * polynomial/polyvalm.m: Don't assume orthogonal eigenvectors for | |
10738 nonsymmetric matrices. | |
10739 | |
10740 * general/tril.m: Fix usage message. | |
10741 | |
10742 * polynomial/polyvalm.m: Fix error messages. | |
10743 * polynomial/polyderiv.m: Likewise. | |
10744 * polynomial/polyval.m: Likewise. | |
10745 | |
3081 | 10746 Wed Aug 13 14:14:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10747 | |
10748 * strings/blanks.m: Allow blanks(0) to return empty string. | |
10749 Allow negative arguments if treat_neg_dim_as_zero is true. | |
10750 | |
3063 | 10751 Wed Jun 25 21:26:24 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10752 | |
10753 * plot/mesh.m: Set noparametric plot mode after plotting. | |
10754 | |
5095 | 10755 Wed Jun 25 21:06:10 1997 Rick Niles <niles@axp745.gsfc.nasa.gov> |
3062 | 10756 |
10757 * plot/__pltopt__.m: Handle key/legend names. | |
10758 Correctly set colors, line styles, and point styles. | |
10759 | |
3061 | 10760 Wed Jun 25 13:34:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10761 | |
10762 * polynomial/polyfit.m: Return fit y values as second output. | |
10763 Don't use QR factorization to solve least squares problem. | |
10764 | |
10765 Wed Jun 18 10:24:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10766 | |
10767 * control/dlqr.m: Use ao, not a, to compute k. | |
10768 | |
3024 | 10769 Tue Jun 3 12:16:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10770 | |
10771 * miscellaneous/path.m: New file. | |
10772 | |
2993 | 10773 Wed May 21 11:45:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10774 | |
10775 * miscellaneous/bug_report.m: Pass file id to dump_prefs, not file | |
10776 name. | |
10777 | |
2968 | 10778 Mon May 12 02:04:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10779 | |
10780 * specfun/erfinv.m: Add missing semicolon. | |
10781 | |
2870 | 10782 Wed Apr 2 22:04:03 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10783 | |
10784 * miscellaneous/xor.m: Make type of return value logical. | |
10785 | |
2853 | 10786 Fri Mar 28 16:19:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10787 | |
10788 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for | |
10789 warn_comma_in_global_decl. | |
10790 | |
2831 | 10791 Tue Mar 25 22:00:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10792 | |
10793 * miscellaneous/bug_report.m: Use __OCTAVE_HOME__ to find | |
10794 octave-bug script. | |
10795 | |
2823 | 10796 Mon Mar 24 16:49:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10797 | |
2824 | 10798 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
10799 prefer_zero_one_indexing. | |
10800 | |
2823 | 10801 * general/logical.m: New file. |
10802 | |
2816 | 10803 Sat Mar 15 15:07:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10804 | |
10805 * general/nextpow2.m: Correctly handle new meaning of is_scalar() | |
10806 and is_vector(). | |
10807 | |
5095 | 10808 Thu Mar 13 16:36:35 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
2813 | 10809 |
10810 * specfun/erfinv.m: Scale update by sqrt (pi) / 2. | |
10811 Use tolerance of 2 * eps. | |
10812 | |
2811 | 10813 Wed Mar 12 16:57:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10814 | |
10815 * Makefile.in (install-strip): New target. | |
10816 * audio/Makefile.in: Ditto. | |
10817 * control/Makefile.in: Ditto. | |
10818 * elfun/Makefile.in: Ditto. | |
10819 * general/Makefile.in: Ditto. | |
10820 * image/Makefile.in: Ditto. | |
10821 * io/Makefile.in: Ditto. | |
10822 * linear-algebra/Makefile.in: Ditto. | |
10823 * miscellaneous/Makefile.in: Ditto. | |
10824 * plot/Makefile.in: Ditto. | |
10825 * polynomial/Makefile.in: Ditto. | |
10826 * set/Makefile.in: Ditto. | |
10827 * signal/Makefile.in: Ditto. | |
10828 * specfun/Makefile.in: Ditto. | |
10829 * special-matrix/Makefile.in: Ditto. | |
10830 * startup/Makefile.in: Ditto. | |
10831 * statistics/Makefile.in: Ditto. | |
10832 * strings/Makefile.in: Ditto. | |
10833 | |
2809 | 10834 Tue Mar 11 10:14:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10835 | |
10836 * elfun/coth.m: Write as cosh(x) ./ sinh(x) instead of 1 ./ tanh(x). | |
10837 | |
2798 | 10838 Fri Mar 7 23:06:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10839 | |
10840 * statistics/corrcoef.m: Make it actually work. | |
10841 | |
2795 | 10842 Thu Mar 6 12:36:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10843 | |
2798 | 10844 * statistics/corrcoef.m: Don't fail if single argument is a matrix. |
2795 | 10845 |
2779 | 10846 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775 | 10847 |
10848 * Version 2.0.5 released. | |
10849 | |
2745 | 10850 Wed Feb 26 01:48:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10851 | |
2749 | 10852 * Makefile.in (maintainer-clean): Also remove configure. |
10853 | |
2746 | 10854 * signal/fftconv.m: Check inputs with is_vector(), not is_matrix(). |
10855 | |
2745 | 10856 * general/is_matrix.m: Return zero for empty matrices. |
10857 | |
10858 Tue Feb 25 15:16:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10859 | |
10860 * linear-algebra/vech.m: Size result just once. | |
10861 | |
2726 | 10862 Sun Feb 23 00:15:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10863 | |
10864 * general/is_square.m: Handle empty matrices correctly. | |
10865 * general/is_symmetric.m: Handle empty matrices and strings. | |
10866 | |
2716 | 10867 Sat Feb 22 01:06:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10868 | |
10869 * polynomial/conv.m: Check inputs with is_vector(), not is_matrix(). | |
10870 * polynomial/deconv.m: Likewise. | |
10871 * polynomial/polyderiv.m: Likewise. | |
10872 * polynomial/polyinteg.m: Likewise. | |
10873 * polynomial/polyreduce.m: Likewise. | |
10874 * polynomial/polyval.m: Likewise. | |
10875 * polynomial/polyvalm.m: Likewise. | |
10876 * general/postpad.m: Likewise. | |
10877 * general/prepad.m: Likewise. | |
10878 | |
10879 * polynomial/compan.m: Check input with is_vector(), not | |
10880 is_matrix(). Handle scalar case. | |
10881 | |
2711 | 10882 Fri Feb 21 13:36:58 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10883 | |
2715 | 10884 * plot/contour.m: Order data so that it is consistent with |
10885 meshgrid and mesh. | |
10886 | |
2711 | 10887 * plot/meshdom.m, plot/meshgrid.m: Change help message. |
10888 * plot/sombrero.m: Use meshgrid, not meshdom. | |
10889 | |
2709 | 10890 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702 | 10891 |
10892 * Version 2.0.4 released. | |
10893 | |
2706 | 10894 Wed Feb 19 10:30:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10895 | |
2702 | 10896 * miscellaneous/paren.m: New file. |
10897 | |
2693 | 10898 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690 | 10899 |
10900 * Version 2.0.3 released. | |
10901 | |
2676 | 10902 Thu Feb 13 19:06:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10903 | |
10904 * image/saveimage.m: Only clip image data that is actually out of | |
10905 range. | |
10906 | |
2667 | 10907 Sun Feb 9 19:52:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10908 | |
10909 * general/is_matrix.m: Scalars, vectors, and empty matrices may | |
10910 also be considered to be matrices. | |
10911 | |
10912 * general/is_vector.m: Scalars may also be considered to be vectors. | |
10913 | |
10914 * general/isempty.m: Use size(), not rows() and columns(). | |
10915 | |
10916 * plot/contour.m: Convert set to gset. | |
10917 Set view to 0, 0, 1, 1, not 0, 0, 1.9, 1. | |
10918 | |
2663 | 10919 Fri Feb 7 12:55:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10920 | |
10921 * specfun/erfinv.m: Fix typo in last change. | |
10922 | |
2650 | 10923 Fri Jan 31 09:30:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10924 | |
10925 * image/loadimage.m: Make it possible to load files with image | |
10926 data named X or img. | |
10927 | |
10928 * image/default.img: Change name of image from X to img to match | |
10929 what saveimage does now. | |
10930 | |
10931 * image/loadimage.m: Rename X to be img, to match what saveimage | |
10932 does now. | |
10933 | |
2632 | 10934 Mon Jan 27 13:48:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10935 | |
2634 | 10936 * Version 2.0.2 released. |
10937 | |
2632 | 10938 * plot/__plt__.m: Use usleep() instead of replot to try to avoid |
10939 weird missing-lines bug without creating extra plots unecessarily. | |
10940 | |
2624 | 10941 Sat Jan 25 22:37:07 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10942 | |
10943 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
10944 elfun/Makefile.in, general/Makefile.in, image/Makefile.in, | |
10945 io/Makefile.in, linear-algebra/Makefile.in, | |
10946 miscellaneous/Makefile.in, plot/Makefile.in, | |
10947 polynomial/Makefile.in, set/Makefile.in, signal/Makefile.in, | |
10948 specfun/Makefile.in, special-matrix/Makefile.in, | |
10949 startup/Makefile.in, statistics/Makefile.in, strings/Makefile.in, | |
10950 time/Makefile.in (bin-dist): New target. | |
10951 | |
2621 | 10952 Wed Jan 22 11:28:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10953 | |
10954 * specfun/erfinv.m: Avoid A([]) = X, X != [] error. | |
10955 | |
10956 Tue Jan 21 11:16:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10957 | |
10958 * miscellaneous/xor.m: Make it work. | |
10959 | |
2613 | 10960 Mon Jan 20 12:28:34 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10961 | |
10962 * plot/sombrero.m: Doc fix. | |
10963 | |
2602 | 10964 Tue Jan 7 00:16:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
10965 | |
10966 * Version 2.0.1 released. | |
10967 | |
2601 | 10968 Thu Dec 19 22:16:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
10969 | |
10970 * elfun/lcm.m: Replace missing if statement. | |
10971 | |
10972 * elfun/gcd.m: Report error if no input args. | |
10973 * elfun/lcm.m: Likewise. | |
10974 | |
2597 | 10975 Mon Dec 16 15:23:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
10976 | |
10977 * Makefile.in (install): Use ls -LR to create ls-R database. | |
10978 Also list contents of $libexecdir/octave in ls-R database. | |
10979 | |
2583 | 10980 Tue Dec 10 01:43:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
10981 | |
10982 * Version 2.0 released. | |
10983 | |
2575 | 10984 Fri Dec 6 15:23:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
10985 | |
10986 * Version 1.94. | |
10987 | |
2558 | 10988 Sun Dec 1 20:55:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
10989 | |
10990 * strings/str2num.m: New file. | |
10991 | |
2554 | 10992 Wed Nov 20 01:00:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
10993 | |
10994 * Version 1.93. | |
10995 | |
2540 | 10996 Tue Nov 19 15:13:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
10997 | |
10998 * linear-algebra/commutation_matrix.m, linear-algebra/cross.m, | |
10999 linear-algebra/duplication_matrix.m, linear-algebra/vec.m, | |
11000 linear-algebra/vech.m: New files from Kurt Hornik. | |
11001 | |
11002 * general/nextpow2.m, general/shift.m, general/diff.m, | |
11003 general/common_size.m: New files from Kurt Hornik. | |
11004 | |
11005 * miscellaneous/bincoeff.m, miscellaneous/xor.m: | |
11006 New files from Kurt Hornik. | |
11007 | |
11008 * signal/detrend.m: New file from Kurt Hornik. | |
11009 | |
11010 * specfun/betai.m, specfun/gammai.m, specfun/erfinv.m, | |
11011 specfun/pow2.m, specfun/log2.m: | |
11012 New files and updates from Kurt Hornik. | |
11013 | |
2523 | 11014 Fri Nov 15 18:13:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11015 | |
11016 * plot/__plt__.m: Add explicit replot after last command is | |
11017 issued, to force all lines to be displayed. Hmm. | |
11018 | |
2512 | 11019 Thu Nov 14 00:06:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11020 | |
2520 | 11021 * plot/axis.m, plot/bottom_title.m, plot/contour.m, |
11022 plot/figure.m, plot/grid.m, plot/loglog.m, plot/mesh.m, | |
11023 plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/plot.m, | |
11024 plot/plot_border.m, plot/polar.m, plot/semilogx.m, | |
11025 plot/semilogy.m, plot/subplot.m, plot/subwindow.m, plot/title.m, | |
11026 plot/top_title.m, plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: | |
11027 Uset gset, not set. | |
11028 | |
2512 | 11029 * Version 1.92. |
11030 | |
2482 | 11031 Thu Nov 7 12:43:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11032 | |
2486 | 11033 * image/saveimage.m: When writing PostScript, name Octave as the |
11034 almighty Creator. Use single call to fprintf instead of looping. | |
11035 | |
11036 * image/Makefile.in: Delete references to octtopnm. | |
11037 | |
11038 * general/logspace.m: Doc fix. | |
11039 | |
2482 | 11040 * Version 1.91. |
11041 | |
2458 | 11042 Sat Nov 2 21:06:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11043 | |
11044 * image/image.m: Use tmpnam() instead of home-brew scheme. | |
11045 | |
11046 * audio/record.m, audio/playaudio.m: Use tmpnam() instead of | |
11047 octave_tmp_file_name(). Use unwind_protect to ensure tmp file is | |
11048 deleted. | |
11049 * miscellaneous/bug_report.m: Likewise. Also use unlink() instead | |
11050 of a system() command to delete the tmp file. | |
11051 | |
2452 | 11052 Wed Oct 30 17:19:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11053 | |
11054 * Version 1.90. | |
11055 | |
11056 * Makefile.in (DISTFILES): Add ChangeLog. | |
11057 | |
2360 | 11058 Thu Oct 10 17:31:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11059 | |
11060 * plot/subplot.m, plot/multiplot.m, plot/mplot.m: | |
11061 Don't check for string value of automatic_replot. | |
11062 | |
11063 * image/ind2ind.m, image/ind2rgb.m, image/ind2gray.m: | |
11064 Temporarily set do_fortran_indexing to 1, not "true". | |
11065 | |
11066 * miscellaneous/menu.m: Temporarily set page_screen_output to 0, | |
11067 not "false". | |
11068 | |
11069 * linear-algebra/cond.m: Don't compare propagate_empty_matrices to | |
11070 "false". | |
11071 | |
2355 | 11072 Tue Aug 20 18:27:36 1996 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
11073 | |
11074 * strings/substr.m: Allow negative OFFSET. LEN is now optional. | |
11075 | |
2330 | 11076 Mon Jul 15 16:15:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11077 | |
11078 * miscellaneous/bug_report.m: Don't redirect output to /dev/tty in | |
11079 system command. | |
11080 | |
11081 Fri Jul 12 12:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11082 | |
11083 * __plr1__.m: Renamed from polar_int_1.m. | |
11084 * __plr2__.m: Renamed from polar_int_2.m. | |
11085 * __plr__.m: Renamed from polar_int.m. | |
11086 * __plt1__.m: Renamed from plot_int_1.m. | |
11087 * __plt2__.m: Renamed from plot_int_2.m. | |
11088 * __plt2mm__.m: Renamed from plot_2_m_m_.m. | |
11089 * __plt2mv__.m: Renamed from plot_2_m_v_.m. | |
11090 * __plt2ss__.m: Renamed from plot_2_s_s_.m. | |
11091 * __plt2vm__.m: Renamed from plot_2_v_m_.m. | |
11092 * __plt2vv__.m: Renamed from plot_2_v_v_.m. | |
11093 * __plt__.m: Renamed from plot_int.m. | |
11094 * __pltopt__.m: Renamed from plot_opt.m. | |
11095 Change all callers. | |
11096 | |
11097 Thu Jul 11 17:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11098 | |
11099 * All .m files: Add regular Author:, Created:, and Adapted-By: | |
11100 comments like those found in Emacs lisp files. | |
11101 | |
11102 Mon Jun 24 04:16:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11103 | |
11104 * All .m files: Change comment style. | |
11105 | |
11106 Fri Jun 14 01:42:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11107 | |
11108 * bottom_title.m, mplot.m, multiplot.m, oneplot.m, plot_border.m, | |
11109 subplot.m, subwindow.m, top_title.m: | |
11110 Print error message if gnuplot_has_multiplot is not true. | |
11111 | |
11112 Thu Jun 6 00:18:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11113 | |
11114 * plot/figure.m: New function. | |
11115 | |
11116 Wed Jun 5 18:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11117 | |
11118 * strings/strrep.m: New function. | |
11119 | |
11120 Thu May 23 15:04:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11121 | |
11122 * strings/bin2dec.m, strings/blanks.m, strings/deblank.m, | |
11123 strings/dec2bin.m, strings/dec2hex.m, strings/findstr.m, | |
11124 strings/hex2dec.m, strings/index.m, strings/rindex.m, | |
11125 strings/split.m, strings/str2mat.m, strings/substr.m: | |
11126 New functions from Kurt Hornik, heavily modified by jwe. | |
11127 | |
11128 * general/reshape.m: Allow strings to be reshaped too. | |
11129 | |
11130 * strings/strcmp.m: No longer need to set implicit_str_to_num_ok. | |
11131 Always return a scalar. | |
11132 | |
11133 Wed May 22 19:52:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11134 | |
11135 * polynomial/polyfit.m: Make orientation of result compatible with | |
11136 Matlab. | |
11137 | |
11138 Sat May 18 17:32:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11139 | |
11140 * polynomial/polyfit.m: Add missing close paren. | |
11141 | |
11142 Thu May 16 10:23:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11143 | |
11144 * plot/plot_opt.m: Set compatibility arg in call to sscanf. | |
11145 | |
11146 * io/scanf.m: Delete. | |
11147 | |
11148 Mon May 13 09:37:38 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11149 | |
11150 * statistics/median.m: Fix typo in usage message. | |
11151 | |
11152 Wed Apr 24 02:45:52 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11153 | |
11154 * miscellaneous/popen2.m: New file. | |
11155 | |
11156 Wed Apr 17 18:34:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11157 | |
11158 * configure.in (AC_OUTPUT): Add io/Makefile. | |
11159 | |
11160 * io: New directory. | |
11161 * Makefile.in (SUBDIRS): Add it to the list. | |
11162 | |
11163 * miscellaneous/flops.m: New file. | |
11164 | |
11165 Fri Mar 22 04:40:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11166 | |
11167 * miscellaneous/cputime.m: Return three arguments instead of a | |
11168 vector, for compatibility with previous versions and with Matlab | |
11169 (which only returns one scalar value). | |
11170 | |
11171 Wed Mar 20 05:09:48 1996 Kurt Hornik <Kurt.Hornik@tuwien.ac.at> | |
11172 | |
11173 * general/triu.m: Compute lower bound on loop index correctly. | |
11174 * general/tril.m: Likewise, for upper bound. | |
11175 | |
11176 Tue Feb 6 09:29:43 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11177 | |
11178 * image/saveimage.m: For color images, make sure indices into | |
11179 temporary colormap and result matrix have proper orientation. | |
11180 Set grey flag correctly. | |
11181 | |
11182 Tue Jan 9 00:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11183 | |
11184 * statistics/std.m: Use better formula (from Jim Van Zandt | |
11185 jrv@vanzandt.mv.com). | |
11186 | |
11187 Sun Jan 7 20:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11188 | |
11189 * meshgrid.m: New file (from Jim Van Zandt jrv@vanzandt.mv.com). | |
11190 * mesh.m: Transpose Z if only one arg. | |
11191 Handle case of all three args being matrices (from Jim Van Zandt | |
11192 jrv@vanzandt.mv.com). | |
11193 * meshdom.m: Undo previous change. | |
11194 | |
11195 Wed Dec 20 13:48:12 1995 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11196 | |
11197 * configure.in (AC_OUTPUT): Add audio/Makefile | |
11198 | |
11199 Thu Nov 16 13:07:07 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11200 | |
11201 * audio: New directory of files from Kurt Hornik and Andreas | |
11202 Weingessel. | |
11203 * audio/Makefile.in: New file. | |
11204 * Makefile.in (SUBDIRS): Add audio to the list. | |
11205 | |
11206 Mon Nov 6 07:29:35 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11207 | |
11208 * polynomial/polyfit.m: Use `economy-stle' QR factorization. | |
11209 | |
11210 Fri Nov 3 00:38:46 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11211 | |
11212 * plot/mesh.m: Require, length (y) == rows (z) and length (x) == | |
11213 columns (z), not the other way around. | |
11214 * plot/meshdom.m: Don't reverse order of elements in y. | |
11215 | |
11216 Thu Nov 2 23:56:53 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11217 | |
11218 * plot/axis.m: Return current axis if nargin == 0. | |
11219 | |
11220 Tue Oct 31 04:11:28 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11221 | |
11222 * polynomial/roots.m: Updates from Kurt Hornik. | |
11223 | |
11224 * polynomial/polyder.m: New file. | |
11225 | |
11226 * polynomial/polyderiv.m: Give return value and arg different names. | |
11227 | |
11228 Mon Oct 30 23:27:02 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11229 | |
11230 * specfun/betainc.m: New file. | |
11231 * specfun/gammainc.m: New file. | |
11232 | |
11233 Wed Oct 18 23:45:52 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11234 | |
11235 * general/strerror.m: New file. | |
11236 * general/perror.m: Implement using strerror(). | |
11237 | |
11238 Thu Oct 5 03:21:36 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11239 | |
11240 * plot/bottom_title.m plot/mplot.m plot/multiplot.m plot/oneplot.m | |
11241 plot/plot_border.m plot/subplot.m plot/subwindow.m | |
11242 plot/top_title.m plot/zlabel.m: New files, from Vinayak Dutt. | |
11243 | |
11244 * image/saveimage.m: Round img values first. | |
11245 | |
11246 Tue Oct 3 03:55:18 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11247 | |
11248 * control/abcddim.m control/are.m general/tril.m general/triu.m | |
11249 image/saveimage.m linear-algebra/kron.m linear-algebra/norm.m | |
11250 linear-algebra/null.m miscellaneous/etime.m plot/contour.m | |
11251 plot/mesh.m plot/plot_int.m plot/polar_int.m | |
11252 special-matrix/hankel.m special-matrix/toeplitz.m | |
11253 tuwien/strfun/split.m: Add missing semicolons. | |
11254 | |
11255 * plot/polar_int.m: Use .', not ' to make vectors conform. | |
11256 | |
11257 * image/Makefile.in: Don't build or install octtoppm. | |
11258 | |
11259 * image/saveimage.m: Rewrite to avoid using octoppm and pbm | |
6653 | 11260 routines so that people who don't have the pbm stuff installed |
2330 | 11261 can still use this function. |
11262 | |
11263 Mon Oct 2 05:10:44 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11264 | |
11265 * image/saveimage.m: Better error checking, clean up a bit. | |
11266 | |
11267 Tue Sep 26 00:04:56 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11268 | |
11269 * plot/plot_opt.m: Change more to more_opts as a temporary fix to | |
11270 avoid conflict with new built-in text-style function more. | |
11271 | |
11272 * linear-algebra/norm.m: Also allow 2nd arg == "inf". | |
11273 | |
11274 * startup/Makefile.in (install): Also install octaverc in | |
11275 $localfcnfiledir/startup/octavrc. | |
11276 | |
11277 Wed Sep 20 00:01:30 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11278 | |
11279 * mkinstalldirs: New file. | |
11280 * Makefile.in (DISTFILES): Add it to the list. | |
11281 | |
11282 * Makefile.in (DISTFILES): Distribute configure.in and configure. | |
11283 | |
11284 Thu Sep 14 03:56:19 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11285 | |
11286 * special-matrix/hankel.m: Compatibility fix. Complain if | |
11287 r(1) != c(nr), not if r(1) != c(1). | |
11288 | |
11289 * signal/filter.m: Doc fix. | |
11290 | |
11291 Wed Sep 13 03:19:05 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11292 | |
11293 * miscellaneous/cputime.m: Use new resource structure names (no | |
11294 ru_ or tv_ prefixes). | |
11295 | |
11296 Tue Sep 12 02:20:44 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11297 | |
11298 * time/ctime.m: Fix doc string and usage message. | |
11299 | |
11300 Mon Sep 11 18:43:46 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11301 | |
11302 * time/clock.m: Use new time structure names (no tm_ prefix). | |
11303 | |
11304 Thu Aug 24 20:53:08 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11305 | |
11306 * control/c2d.m: Make function work for any value of | |
11307 whitespace_in_literal_matrix. | |
11308 * control/dare.m: Likewise. | |
11309 * control/tzero.m: Likewise. | |
11310 * elfun/gcd.m: Likewise. | |
11311 * elfun/lcm.m: Likewise. | |
11312 * general/postpad.m: Likewise. | |
11313 * general/prepad.m: Likewise. | |
11314 * linear-algebra/kron.m: Likewise. | |
11315 * miscellaneous/etime.m: Likewise. | |
11316 * polynomial/conv.m: Likewise. | |
11317 * polynomial/deconv.m: Likewise. | |
11318 * polynomial/poly.m: Likewise. | |
11319 * polynomial/roots.m: Likewise. | |
11320 * signal/filter.m: Likewise. | |
11321 * signal/freqz.m: Likewise. | |
11322 * signal/fftfilt.m: Likewise. | |
11323 | |
11324 Tue Jun 6 22:34:04 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11325 | |
11326 * miscellaneous/is_leap_year.m: Make work for vector args. | |
11327 | |
11328 Tue May 2 16:18:33 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11329 | |
11330 * plot/polar_int_2.m: Add missing semicolons. | |
11331 Set theta = theta', not rho'. | |
11332 | |
11333 Sun Apr 30 11:19:11 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11334 | |
11335 * polynomial/roots.m: Make it work for any value of | |
11336 whitespace_in_literal_matrix. | |
11337 | |
11338 Mon Apr 10 09:37:17 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11339 | |
11340 * configure.in: New file. | |
11341 | |
11342 Thu Mar 30 13:29:35 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11343 | |
11344 * control/lyap.m: Add missing semicolon. | |
11345 | |
11346 * miscellaneous/cputime.m: New function file. | |
11347 | |
11348 Wed Mar 29 22:50:49 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11349 | |
11350 * time: New directory. | |
11351 * time/asctime.m, time/clock.m, time/ctime.m, time/date.m: | |
11352 New function files. | |
11353 * time/Makefile.in: New file. | |
11354 * Makefile.in (SUBDIRS): Add time. | |
11355 | |
11356 Thu Mar 23 15:42:26 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11357 | |
11358 * polynomial/polyreduce.m: Make sure initial index is not empty. | |
11359 | |
11360 Tue Mar 14 23:38:24 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11361 | |
11362 * plot/plot_int_1.m: Transpose data with .', not '. | |
11363 | |
11364 Fri Mar 10 10:40:13 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11365 | |
11366 * Makefile.in (install uninstall clean mostlyclean distclean | |
11367 realclean): Use SUBDIR_FOR_COMMAND. Combine actions. | |
11368 | |
11369 Sun Feb 26 22:18:22 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11370 | |
11371 * Makefile.in (install): Create ls-R database file. | |
11372 (uninstall): Delete it. | |
11373 | |
11374 Fri Feb 24 10:36:01 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11375 | |
5378 | 11376 * image/saveimage.m: Fix typo. |
2330 | 11377 |
11378 See ChangeLog.1 in the top level directory for earlier changes. |