Mercurial > hg > octave-lyh
annotate scripts/ChangeLog @ 8877:2c8b2399247b
implement strsplit; deprecate split
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 26 Feb 2009 10:29:59 +0100 |
parents | e258715b2e78 |
children | ebb8c1dcf4d3 |
rev | line source |
---|---|
8877
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
1 2009-02-26 Jaroslav Hajek <highegg@gmail.com> |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
2 |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
3 * strings/strsplit.m: New function. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
4 * strings/split.m: Move to deprecated/. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
5 * strings/Makefile.in: Update. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
6 * deprecated/Makefile.in: Update. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
7 |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
8 * general/int2str.m: Use strsplit instead of split. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
9 * general/num2str.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
10 * help/__makeinfo__.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
11 * help/lookfor.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
12 * miscellaneous/compare_versions.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
13 * miscellaneous/tar.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
14 * miscellaneous/unpack.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
15 * miscellaneous/what.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
16 * miscellaneous/zip.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
17 * pkg/pkg.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
18 * strings/strtok.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
19 * testfun/rundemos.m: Ditto. |
2c8b2399247b
implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents:
8873
diff
changeset
|
20 |
8873
e258715b2e78
fixes for clean targets in Makefiles
John W. Eaton <jwe@octave.org>
parents:
8870
diff
changeset
|
21 2009-02-25 John W. Eaton <jwe@octave.org> |
e258715b2e78
fixes for clean targets in Makefiles
John W. Eaton <jwe@octave.org>
parents:
8870
diff
changeset
|
22 |
e258715b2e78
fixes for clean targets in Makefiles
John W. Eaton <jwe@octave.org>
parents:
8870
diff
changeset
|
23 * Makefile.in (distclean maintainer-clean): Remove tags and TAGS |
e258715b2e78
fixes for clean targets in Makefiles
John W. Eaton <jwe@octave.org>
parents:
8870
diff
changeset
|
24 in distclean target. |
e258715b2e78
fixes for clean targets in Makefiles
John W. Eaton <jwe@octave.org>
parents:
8870
diff
changeset
|
25 |
8870
eea0e1b45ec0
optimize string manipulation in lookfor
Jaroslav Hajek <highegg@gmail.com>
parents:
8867
diff
changeset
|
26 2009-02-25 Jaroslav Hajek <highegg@gmail.com> |
eea0e1b45ec0
optimize string manipulation in lookfor
Jaroslav Hajek <highegg@gmail.com>
parents:
8867
diff
changeset
|
27 |
eea0e1b45ec0
optimize string manipulation in lookfor
Jaroslav Hajek <highegg@gmail.com>
parents:
8867
diff
changeset
|
28 * help/lookfor.m: Vectorize the path splitting using mat2cell. |
eea0e1b45ec0
optimize string manipulation in lookfor
Jaroslav Hajek <highegg@gmail.com>
parents:
8867
diff
changeset
|
29 Extract new path elements using setdiff. |
eea0e1b45ec0
optimize string manipulation in lookfor
Jaroslav Hajek <highegg@gmail.com>
parents:
8867
diff
changeset
|
30 |
8866
3149112b9412
improve lookfor performance
John W. Eaton <jwe@octave.org>
parents:
8863
diff
changeset
|
31 2009-02-25 John W. Eaton <jwe@octave.org> |
3149112b9412
improve lookfor performance
John W. Eaton <jwe@octave.org>
parents:
8863
diff
changeset
|
32 |
8867
ff89a265592b
pie.m: fix arg size comparison
John W. Eaton <jwe@octave.org>
parents:
8866
diff
changeset
|
33 * plot/pie.m: Use numel to check sizes of X and LABELS instead of |
ff89a265592b
pie.m: fix arg size comparison
John W. Eaton <jwe@octave.org>
parents:
8866
diff
changeset
|
34 using size_equal. From Andy Buckle <andybuckle@gmail.com>. |
ff89a265592b
pie.m: fix arg size comparison
John W. Eaton <jwe@octave.org>
parents:
8866
diff
changeset
|
35 |
8866
3149112b9412
improve lookfor performance
John W. Eaton <jwe@octave.org>
parents:
8863
diff
changeset
|
36 * help/lookfor.m: Split original path into cell array and compare |
3149112b9412
improve lookfor performance
John W. Eaton <jwe@octave.org>
parents:
8863
diff
changeset
|
37 elements with strcmp. Suppress warnings and errors when getting |
3149112b9412
improve lookfor performance
John W. Eaton <jwe@octave.org>
parents:
8863
diff
changeset
|
38 help text from function files. |
3149112b9412
improve lookfor performance
John W. Eaton <jwe@octave.org>
parents:
8863
diff
changeset
|
39 |
8861 | 40 2009-02-24 John W. Eaton <jwe@octave.org> |
41 | |
42 * help/gen_doc_cache.m: Don't compress output file. By default, | |
8863
34a821854961
pkg.m (generate_lookfor_cache): generate a DOC file for each directory
Jason Riedy <jason@acm.org>
parents:
8861
diff
changeset
|
43 write to DOC, not DOC.gz. Don't save empty cache. |
34a821854961
pkg.m (generate_lookfor_cache): generate a DOC file for each directory
Jason Riedy <jason@acm.org>
parents:
8861
diff
changeset
|
44 |
8861 | 45 * help/lookfor.m: Use doc_cache_file to get location of DOC file. |
46 | |
8860
257ed585b471
gen_doc_cache.m: call __makeinfo__, not makeinfo
Jason Riedy <jason@acm.org>
parents:
8857
diff
changeset
|
47 2009-02-24 Jason Riedy <jason@acm.org> |
257ed585b471
gen_doc_cache.m: call __makeinfo__, not makeinfo
Jason Riedy <jason@acm.org>
parents:
8857
diff
changeset
|
48 |
8863
34a821854961
pkg.m (generate_lookfor_cache): generate a DOC file for each directory
Jason Riedy <jason@acm.org>
parents:
8861
diff
changeset
|
49 * pkg/pkg.m (generate_lookfor_cache): Generate a DOC file for each |
34a821854961
pkg.m (generate_lookfor_cache): generate a DOC file for each directory
Jason Riedy <jason@acm.org>
parents:
8861
diff
changeset
|
50 directory. |
34a821854961
pkg.m (generate_lookfor_cache): generate a DOC file for each directory
Jason Riedy <jason@acm.org>
parents:
8861
diff
changeset
|
51 |
8860
257ed585b471
gen_doc_cache.m: call __makeinfo__, not makeinfo
Jason Riedy <jason@acm.org>
parents:
8857
diff
changeset
|
52 * help/gen_doc_cache.m: Call __makeinfo__, not makeinfo. |
257ed585b471
gen_doc_cache.m: call __makeinfo__, not makeinfo
Jason Riedy <jason@acm.org>
parents:
8857
diff
changeset
|
53 |
8857 | 54 2009-02-24 Jaroslav Hajek <highegg@gmail.com> |
55 | |
56 * optimization/fsolve.m: Update niter after each iteration, not just | |
57 a succesful one. | |
58 | |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8847
diff
changeset
|
59 2009-02-08 Thorsten Meyer <thorsten.meyier@gmx.de> |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8847
diff
changeset
|
60 |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8847
diff
changeset
|
61 * configure.in: AC_SUBST ac_config_files |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8847
diff
changeset
|
62 |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8847
diff
changeset
|
63 * Makefile.in: Add make targets for configuration files |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8847
diff
changeset
|
64 and config.status. |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8847
diff
changeset
|
65 |
8847 | 66 2009-02-23 John W. Eaton <jwe@octave.org> |
67 | |
68 * plot/fplot.m: Fix nargin check. | |
69 From Joel Parker <Joel.Parker@radiancetech.com>. | |
70 | |
8833
b86b42f77899
__patch__.m: fix indexing of varargin
Steffen Groot <steffen.groot@technolution.eu>
parents:
8826
diff
changeset
|
71 2009-02-20 Steffen Groot <steffen.groot@technolution.eu> |
b86b42f77899
__patch__.m: fix indexing of varargin
Steffen Groot <steffen.groot@technolution.eu>
parents:
8826
diff
changeset
|
72 |
b86b42f77899
__patch__.m: fix indexing of varargin
Steffen Groot <steffen.groot@technolution.eu>
parents:
8826
diff
changeset
|
73 * plot/__patch__.m: Correct indexing of varargin. |
b86b42f77899
__patch__.m: fix indexing of varargin
Steffen Groot <steffen.groot@technolution.eu>
parents:
8826
diff
changeset
|
74 |
8826 | 75 2009-02-20 Jaroslav Hajek <highegg@gmail.com> |
76 | |
77 * linear-algebra/dmult.m: Remove. | |
78 * linear-algebra/Makefile.in: Update. | |
79 * deprecated/dmult.m: Move here; revert to the 3.0.x version. | |
80 * deprecated/Makefile.in: Update. | |
81 * statistics/models/logistic_regression_derivatives.m: Replace dmult | |
82 by diagonal matrices. | |
83 | |
8813
70d06ed27c08
gnuplot_drawnow.m: Only send figure position info to gnuplot when the plot stream is first opened. Revert usage of hidden axes to store prior figure "position" property.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
84 2009-02-19 Ben Abbott <bpabbott@mac.com> |
70d06ed27c08
gnuplot_drawnow.m: Only send figure position info to gnuplot when the plot stream is first opened. Revert usage of hidden axes to store prior figure "position" property.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
85 |
70d06ed27c08
gnuplot_drawnow.m: Only send figure position info to gnuplot when the plot stream is first opened. Revert usage of hidden axes to store prior figure "position" property.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
86 * plot/gnuplot_drawnow.m: Only send figure position info to gnuplot |
70d06ed27c08
gnuplot_drawnow.m: Only send figure position info to gnuplot when the plot stream is first opened. Revert usage of hidden axes to store prior figure "position" property.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
87 when the plot stream is first opened. Revert usage of hidden axes |
70d06ed27c08
gnuplot_drawnow.m: Only send figure position info to gnuplot when the plot stream is first opened. Revert usage of hidden axes to store prior figure "position" property.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
88 to store prior figure "position" property. |
70d06ed27c08
gnuplot_drawnow.m: Only send figure position info to gnuplot when the plot stream is first opened. Revert usage of hidden axes to store prior figure "position" property.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
89 |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
90 2009-02-19 John W. Eaton <jwe@octave.org> |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
91 |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
92 * general/__isequal__.m, general/__splinen__.m, image/__img__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
93 image/__img_via_file__.m, miscellaneous/__xzip__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
94 optimization/__all_opts__.m, optimization/__dogleg__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
95 optimization/__fdjac__.m, path/__extractpath__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
96 plot/__add_datasource__.m, plot/__area__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
97 plot/__axes_limits__.m, plot/__axis_label__.m, plot/__bar__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
98 plot/__bars__.m, plot/__clabel__.m, plot/__contour__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
99 plot/__default_plot_options__.m, plot/__errcomm__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
100 plot/__errplot__.m, plot/__ezplot__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
101 plot/__gnuplot_has_feature__.m, plot/__gnuplot_version__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
102 plot/__go_close_all__.m, plot/__go_draw_axes__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
103 plot/__go_draw_figure__.m, plot/__line__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
104 plot/__next_line_color__.m, plot/__patch__.m, plot/__plr1__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
105 plot/__plr2__.m, plot/__plt1__.m, plot/__plt2__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
106 plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
107 plot/__plt2sv__.m, plot/__plt2vm__.m, plot/__plt2vs__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
108 plot/__plt2vv__.m, plot/__plt__.m, plot/__plt_get_axis_arg__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
109 plot/__pltopt1__.m, plot/__pltopt__.m, plot/__quiver__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
110 plot/__scatter__.m, plot/__stem__.m, startup/__finish__.m, |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
111 statistics/base/__quantile__.m: Consistent doc strings for |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
112 internal fucntions. |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8804
diff
changeset
|
113 |
8804
995f8b064b32
subplot.m: Compatible placement of subplots.
Ben Abbott <bpabbott@mac.com>
parents:
8796
diff
changeset
|
114 2009-02-18 Ben Abbott <bpabbott@mac.com> |
995f8b064b32
subplot.m: Compatible placement of subplots.
Ben Abbott <bpabbott@mac.com>
parents:
8796
diff
changeset
|
115 |
995f8b064b32
subplot.m: Compatible placement of subplots.
Ben Abbott <bpabbott@mac.com>
parents:
8796
diff
changeset
|
116 * plot/subplot.m: Fix unintended deletion of axes. |
995f8b064b32
subplot.m: Compatible placement of subplots.
Ben Abbott <bpabbott@mac.com>
parents:
8796
diff
changeset
|
117 |
8796
9662dfb26652
wavread.m: improve search for data chunks
Frederick Umminger <Frederick_Umminger@playstation.sony.com>
parents:
8795
diff
changeset
|
118 2009-02-18 Frederick Umminger <Frederick_Umminger@playstation.sony.com> |
9662dfb26652
wavread.m: improve search for data chunks
Frederick Umminger <Frederick_Umminger@playstation.sony.com>
parents:
8795
diff
changeset
|
119 |
9662dfb26652
wavread.m: improve search for data chunks
Frederick Umminger <Frederick_Umminger@playstation.sony.com>
parents:
8795
diff
changeset
|
120 * audio/wavread.m: Improve search for data chunks. |
9662dfb26652
wavread.m: improve search for data chunks
Frederick Umminger <Frederick_Umminger@playstation.sony.com>
parents:
8795
diff
changeset
|
121 |
8795
bb38a86efa1b
improve documentation for edit.m
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8794
diff
changeset
|
122 2009-02-18 Ivan Sutoris <ivan.sutoris@gmail.com> |
bb38a86efa1b
improve documentation for edit.m
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8794
diff
changeset
|
123 |
bb38a86efa1b
improve documentation for edit.m
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8794
diff
changeset
|
124 * miscellaneous/edit.m: Expand documentation about editor mode. |
bb38a86efa1b
improve documentation for edit.m
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8794
diff
changeset
|
125 |
8794
f16aafdd99ca
__gnuplot_version__.m: don't use regexp to extract version number
John W. Eaton <jwe@octave.org>
parents:
8793
diff
changeset
|
126 2009-02-18 John W. Eaton <jwe@octave.org> |
f16aafdd99ca
__gnuplot_version__.m: don't use regexp to extract version number
John W. Eaton <jwe@octave.org>
parents:
8793
diff
changeset
|
127 |
f16aafdd99ca
__gnuplot_version__.m: don't use regexp to extract version number
John W. Eaton <jwe@octave.org>
parents:
8793
diff
changeset
|
128 * plot/__gnuplot_version__.m: Don't use regexp to extract version |
f16aafdd99ca
__gnuplot_version__.m: don't use regexp to extract version number
John W. Eaton <jwe@octave.org>
parents:
8793
diff
changeset
|
129 number. |
f16aafdd99ca
__gnuplot_version__.m: don't use regexp to extract version number
John W. Eaton <jwe@octave.org>
parents:
8793
diff
changeset
|
130 |
8793
4c989d52f35c
gnuplot_drawnow.m (gnuplot_set_term): adjust nargin checks for new signature
John W. Eaton <jwe@octave.org>
parents:
8790
diff
changeset
|
131 2009-02-18 John W. Eaton <jwe@octave.org> |
4c989d52f35c
gnuplot_drawnow.m (gnuplot_set_term): adjust nargin checks for new signature
John W. Eaton <jwe@octave.org>
parents:
8790
diff
changeset
|
132 |
4c989d52f35c
gnuplot_drawnow.m (gnuplot_set_term): adjust nargin checks for new signature
John W. Eaton <jwe@octave.org>
parents:
8790
diff
changeset
|
133 * plot/gnuplot_drawnow.m (gnuplot_set_term): |
4c989d52f35c
gnuplot_drawnow.m (gnuplot_set_term): adjust nargin checks for new signature
John W. Eaton <jwe@octave.org>
parents:
8790
diff
changeset
|
134 Adjust nargin checks for new signature. |
4c989d52f35c
gnuplot_drawnow.m (gnuplot_set_term): adjust nargin checks for new signature
John W. Eaton <jwe@octave.org>
parents:
8790
diff
changeset
|
135 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
136 2009-02-17 Ben Abbott <bpabbott@mac.com> |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
137 |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
138 * plot/contourc.m: Convert demo to test. |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
139 * plot/surfnorm.m: Add another demo. |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
140 * plot/surfnorm.m, plot/pareto.m: Add "colormap(jet)" to 1st demo. |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
141 * plot/plotyy.m, plot/patch.m, plot/pareto.m, plot/legend.m, |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
142 plot/fill.m, plot/comet.m, plot/colorbar.m, plot/clabel.m: |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
143 Replace "close all" with "clf" in demo. |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
144 |
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
145 2009-02-17 Ben Abbott <bpabbott@mac.com> |
8789
d9bff42fec43
gnuplot_drawnow.m: Only close the gnuplot window and send position/size info when the figure's position property has changed.
Ben Abbott <bpabbott@mac.com>
parents:
8769
diff
changeset
|
146 |
d9bff42fec43
gnuplot_drawnow.m: Only close the gnuplot window and send position/size info when the figure's position property has changed.
Ben Abbott <bpabbott@mac.com>
parents:
8769
diff
changeset
|
147 * plot/gnuplot_drawnow.m: Only close the gnuplot window and send |
d9bff42fec43
gnuplot_drawnow.m: Only close the gnuplot window and send position/size info when the figure's position property has changed.
Ben Abbott <bpabbott@mac.com>
parents:
8769
diff
changeset
|
148 position/size info when the figure's position property has changed. |
d9bff42fec43
gnuplot_drawnow.m: Only close the gnuplot window and send position/size info when the figure's position property has changed.
Ben Abbott <bpabbott@mac.com>
parents:
8769
diff
changeset
|
149 (gnuplot_set_term): New arg, NEW_STREAM. Change all uses. |
d9bff42fec43
gnuplot_drawnow.m: Only close the gnuplot window and send position/size info when the figure's position property has changed.
Ben Abbott <bpabbott@mac.com>
parents:
8769
diff
changeset
|
150 (open_gnuplot_stream): Delete unused output ENHANCED. |
d9bff42fec43
gnuplot_drawnow.m: Only close the gnuplot window and send position/size info when the figure's position property has changed.
Ben Abbott <bpabbott@mac.com>
parents:
8769
diff
changeset
|
151 |
8769
a186c5b4f264
plotyy.m: handle existing figure with no axes
John W. Eaton <jwe@octave.org>
parents:
8768
diff
changeset
|
152 2009-02-17 John W. Eaton <jwe@octave.org> |
a186c5b4f264
plotyy.m: handle existing figure with no axes
John W. Eaton <jwe@octave.org>
parents:
8768
diff
changeset
|
153 |
a186c5b4f264
plotyy.m: handle existing figure with no axes
John W. Eaton <jwe@octave.org>
parents:
8768
diff
changeset
|
154 * plot/plotyy.m: Handle case of existing figure with no axes. |
a186c5b4f264
plotyy.m: handle existing figure with no axes
John W. Eaton <jwe@octave.org>
parents:
8768
diff
changeset
|
155 |
8768
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
156 2009-02-16 John W. Eaton <jwe@octave.org> |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
157 |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
158 * help/__makeinfo__.m: Rename from help/makeinfo.m. Delete tmp file. |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
159 * help/Makefile.in (SOURCES): Add __makeinfo__.m, delete makeinfo.m. |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
160 * help/get_first_help_sentence.m, help/help.m, help/lookfor.m, |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
161 help/print_usage.m: Call __makeinfo__ instead of makeinfo. |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
162 * help/__strip_html_tags__.m, help/__additional_help_message__.m: |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
163 Doc fix. |
e0fbf17a17bb
__makeinfo__.m: rename from makeinfo.m
John W. Eaton <jwe@octave.org>
parents:
8765
diff
changeset
|
164 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
165 2009-02-16 Ben Abbott <bpabbott@mac.com> |
8765
cf2163418140
Trivial change to shading.m and surfl.m demos.
Ben Abbott <bpabbott@mac.com>
parents:
8763
diff
changeset
|
166 |
cf2163418140
Trivial change to shading.m and surfl.m demos.
Ben Abbott <bpabbott@mac.com>
parents:
8763
diff
changeset
|
167 * plot/shading.m: No new figure windows for the demos. |
cf2163418140
Trivial change to shading.m and surfl.m demos.
Ben Abbott <bpabbott@mac.com>
parents:
8763
diff
changeset
|
168 * plot/surfl.m: Clear figure before running demos. |
cf2163418140
Trivial change to shading.m and surfl.m demos.
Ben Abbott <bpabbott@mac.com>
parents:
8763
diff
changeset
|
169 |
8757 | 170 2009-02-16 Jaroslav Hajek <highegg@gmail.com> |
171 | |
172 * linear-algebra/expm.m: Fix invalid unscaling. | |
8761
1db8033efa17
fix which message for built-in functions
Jaroslav Hajek <highegg@gmail.com>
parents:
8757
diff
changeset
|
173 * help/which.m: Do not add "function" here. |
8763
5ce12bca4c51
update comments in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8761
diff
changeset
|
174 * optimization/fsolve.m: Update comments. |
8757 | 175 |
8748
d1eed318100f
help.m: shorten default help text
John W. Eaton <jwe@octave.org>
parents:
8746
diff
changeset
|
176 2009-02-16 John W. Eaton <jwe@octave.org> |
d1eed318100f
help.m: shorten default help text
John W. Eaton <jwe@octave.org>
parents:
8746
diff
changeset
|
177 |
d1eed318100f
help.m: shorten default help text
John W. Eaton <jwe@octave.org>
parents:
8746
diff
changeset
|
178 * help/help.m: Shorten default help text. |
d1eed318100f
help.m: shorten default help text
John W. Eaton <jwe@octave.org>
parents:
8746
diff
changeset
|
179 |
8746
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
180 2009-02-15 John W. Eaton <jwe@octave.org> |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
181 |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
182 * help/doc.m, help/help.m, help/lookfor.m, help/type.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
183 help/which.m, image/colormap.m, miscellaneous/delete.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
184 miscellaneous/dir.m, miscellaneous/edit.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
185 miscellaneous/intwarning.m, miscellaneous/ls.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
186 miscellaneous/mex.m, miscellaneous/mkoctfile.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
187 miscellaneous/run.m, miscellaneous/what.m, path/savepath.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
188 pkg/pkg.m, plot/axis.m, plot/box.m, plot/caxis.m, plot/cla.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
189 plot/close.m, plot/colorbar.m, plot/grid.m, plot/hidden.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
190 plot/hold.m, plot/legend.m, plot/orient.m, plot/print.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
191 plot/shading.m, plot/title.m, plot/xlabel.m, plot/ylabel.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
192 plot/zlabel.m, testfun/demo.m, testfun/example.m, testfun/fail.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
193 testfun/rundemos.m, testfun/test.m: |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
194 Delete "PKG_ADD: mark_as_command" directive. |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
195 |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
196 * scripts/edit.m: Avoid command-style function call syntax when |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
197 assigning results in tests. |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
198 |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
199 * deprecated/mark_as_rawcommand.m, deprecated/unmark_rawcommand.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
200 deprecated/israwcommand.m, deprecated/mark_as_command.m, |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
201 deprecated/unmark_command.m, deprecated/iscommand.m: |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
202 New functions. |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
203 * deprecated/Makefile.in (SOURCES): Add them to the list. |
5dd06f19e9be
handle commands in the lexer
John W. Eaton <jwe@octave.org>
parents:
8744
diff
changeset
|
204 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
205 2009-02-15 Ben Abbott <bpabbott@mac.com> |
8744
4142982c66c6
subplot.m: Compatible placement of subplots.
Ben Abbott <bpabbott@mac.com>
parents:
8740
diff
changeset
|
206 |
4142982c66c6
subplot.m: Compatible placement of subplots.
Ben Abbott <bpabbott@mac.com>
parents:
8740
diff
changeset
|
207 * plot/subplot.m: Compatible placement of subplots. |
4142982c66c6
subplot.m: Compatible placement of subplots.
Ben Abbott <bpabbott@mac.com>
parents:
8740
diff
changeset
|
208 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
209 2009-02-13 Ben Abbott <bpabott@mac.com> |
8740
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8733
diff
changeset
|
210 |
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8733
diff
changeset
|
211 * plot/__go_draw_axes__.m: Respect axes ticklength property. |
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8733
diff
changeset
|
212 |
8733
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8729
diff
changeset
|
213 2009-02-12 John W. Eaton <jwe@octave.org> |
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8729
diff
changeset
|
214 |
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8729
diff
changeset
|
215 * general/sortrows.m: Call __sort_rows_idx__, not __sortrows_idx__. |
3ef774603887
rename all uses of sortrows_idx to sort_rows_idx
John W. Eaton <jwe@octave.org>
parents:
8729
diff
changeset
|
216 |
8729
d65a0a1780b6
Simplify documentation cache generation to only handle one directory per call to 'gen_doc_cache'
Soren Hauberg <hauberg@gmail.com>
parents:
8727
diff
changeset
|
217 2009-02-12 Soren Hauberg <hauberg@gmail.com> |
d65a0a1780b6
Simplify documentation cache generation to only handle one directory per call to 'gen_doc_cache'
Soren Hauberg <hauberg@gmail.com>
parents:
8727
diff
changeset
|
218 |
d65a0a1780b6
Simplify documentation cache generation to only handle one directory per call to 'gen_doc_cache'
Soren Hauberg <hauberg@gmail.com>
parents:
8727
diff
changeset
|
219 * help/gen_doc_cache.m: Change API so we only handle one directory per |
d65a0a1780b6
Simplify documentation cache generation to only handle one directory per call to 'gen_doc_cache'
Soren Hauberg <hauberg@gmail.com>
parents:
8727
diff
changeset
|
220 call to this function. |
d65a0a1780b6
Simplify documentation cache generation to only handle one directory per call to 'gen_doc_cache'
Soren Hauberg <hauberg@gmail.com>
parents:
8727
diff
changeset
|
221 |
8727
5a5dbdacbf5d
scripts/help/lookfor.m: Adapt to new cache scheme.
Soren Hauberg <hauberg@gmail.com>
parents:
8721
diff
changeset
|
222 2009-02-12 Soren Hauberg <hauberg@gmail.com> |
5a5dbdacbf5d
scripts/help/lookfor.m: Adapt to new cache scheme.
Soren Hauberg <hauberg@gmail.com>
parents:
8721
diff
changeset
|
223 |
5a5dbdacbf5d
scripts/help/lookfor.m: Adapt to new cache scheme.
Soren Hauberg <hauberg@gmail.com>
parents:
8721
diff
changeset
|
224 * help/lookfor.m: Adapt to new cache scheme. |
5a5dbdacbf5d
scripts/help/lookfor.m: Adapt to new cache scheme.
Soren Hauberg <hauberg@gmail.com>
parents:
8721
diff
changeset
|
225 |
8721
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8719
diff
changeset
|
226 2009-02-11 Jaroslav Hajek <highegg@gmail.com> |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8719
diff
changeset
|
227 |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8719
diff
changeset
|
228 * general/sortrows.m: Employ __sortrows_idx__ when applicable, |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8719
diff
changeset
|
229 gripe for sparse matrices. |
e9cb742df9eb
imported patch sort3.diff
Jaroslav Hajek <highegg@gmail.com>
parents:
8719
diff
changeset
|
230 |
8719
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8714
diff
changeset
|
231 2009-02-11 John W. Eaton <jwe@octave.org> |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8714
diff
changeset
|
232 |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8714
diff
changeset
|
233 * miscellaneous/news.m: Look in octetcdir for NEWS file. |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8714
diff
changeset
|
234 |
8714 | 235 2009-02-09 Jaroslav Hajek <highegg@gmail.com> |
8712
010e15c7be9a
support pchip method in interp2
Jaroslav Hajek <highegg@gmail.com>
parents:
8709
diff
changeset
|
236 |
010e15c7be9a
support pchip method in interp2
Jaroslav Hajek <highegg@gmail.com>
parents:
8709
diff
changeset
|
237 * general/interp2.m: Added support for pchip bicubic interpolation. |
010e15c7be9a
support pchip method in interp2
Jaroslav Hajek <highegg@gmail.com>
parents:
8709
diff
changeset
|
238 Also simplified code and added support for natural extrapolation via |
010e15c7be9a
support pchip method in interp2
Jaroslav Hajek <highegg@gmail.com>
parents:
8709
diff
changeset
|
239 "extrap". |
010e15c7be9a
support pchip method in interp2
Jaroslav Hajek <highegg@gmail.com>
parents:
8709
diff
changeset
|
240 |
8699
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
241 2009-02-09 John W. Eaton <jwe@octave.org> |
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
242 |
8709
d090213c697a
scripts/miscellaneous/Makefile.in (SOURCES): include __xzip__.m in the list
John W. Eaton <jwe@octave.org>
parents:
8699
diff
changeset
|
243 * miscellaneous/Makefile.in (SOURCES): Include __xzip__.m in the list. |
d090213c697a
scripts/miscellaneous/Makefile.in (SOURCES): include __xzip__.m in the list
John W. Eaton <jwe@octave.org>
parents:
8699
diff
changeset
|
244 |
8699
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
245 * testfun/rundemos.m: Error if fopen fails. |
6e764b7317bd
test/fntests.m, scripts/test/demo.m: error on fopen failures
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
246 |
8698 | 247 2009-02-08 John W. Eaton <jwe@octave.org> |
248 | |
249 * Makefile.in (install install-strip): Don't install ls-R file. | |
250 (uninstall): Don't uninstall ls-R file. | |
251 | |
8693
e5ffb52c9c61
improve fsolve and add ComplexEqn option
Jaroslav Hajek <highegg@gmail.com>
parents:
8688
diff
changeset
|
252 2009-02-06 Jaroslav Hajek <highegg@gmail.com> |
e5ffb52c9c61
improve fsolve and add ComplexEqn option
Jaroslav Hajek <highegg@gmail.com>
parents:
8688
diff
changeset
|
253 |
e5ffb52c9c61
improve fsolve and add ComplexEqn option
Jaroslav Hajek <highegg@gmail.com>
parents:
8688
diff
changeset
|
254 * optimization/fsolve.m: Document support for complex holomorphic |
e5ffb52c9c61
improve fsolve and add ComplexEqn option
Jaroslav Hajek <highegg@gmail.com>
parents:
8688
diff
changeset
|
255 systems. Improve guarded evaluation. |
e5ffb52c9c61
improve fsolve and add ComplexEqn option
Jaroslav Hajek <highegg@gmail.com>
parents:
8688
diff
changeset
|
256 |
8688
d7306ecd077a
news.m: use puts, not printf
John W. Eaton <jwe@octave.org>
parents:
8684
diff
changeset
|
257 2009-02-05 John W. Eaton <jwe@octave.org> |
d7306ecd077a
news.m: use puts, not printf
John W. Eaton <jwe@octave.org>
parents:
8684
diff
changeset
|
258 |
d7306ecd077a
news.m: use puts, not printf
John W. Eaton <jwe@octave.org>
parents:
8684
diff
changeset
|
259 * miscellaneous/news.m: Use puts instead of printf. |
d7306ecd077a
news.m: use puts, not printf
John W. Eaton <jwe@octave.org>
parents:
8684
diff
changeset
|
260 |
8684
6d15bc6c4c15
polyout.m: Replace com2str with num2str.
Thomas D. Dean <tomdean@speakeasy.org>
parents:
8672
diff
changeset
|
261 2009-02-05 Thomas D. Dean <tomdean@speakeasy.org> |
6d15bc6c4c15
polyout.m: Replace com2str with num2str.
Thomas D. Dean <tomdean@speakeasy.org>
parents:
8672
diff
changeset
|
262 |
6d15bc6c4c15
polyout.m: Replace com2str with num2str.
Thomas D. Dean <tomdean@speakeasy.org>
parents:
8672
diff
changeset
|
263 * polynomial/polyout.m: Replace com2str with num2str, and minor |
6d15bc6c4c15
polyout.m: Replace com2str with num2str.
Thomas D. Dean <tomdean@speakeasy.org>
parents:
8672
diff
changeset
|
264 style changes. |
6d15bc6c4c15
polyout.m: Replace com2str with num2str.
Thomas D. Dean <tomdean@speakeasy.org>
parents:
8672
diff
changeset
|
265 |
8672
2a49c32d4322
allow help to work with files containing only comments
John W. Eaton <jwe@octave.org>
parents:
8670
diff
changeset
|
266 2009-02-04 John W. Eaton <jwe@octave.org> |
2a49c32d4322
allow help to work with files containing only comments
John W. Eaton <jwe@octave.org>
parents:
8670
diff
changeset
|
267 |
2a49c32d4322
allow help to work with files containing only comments
John W. Eaton <jwe@octave.org>
parents:
8670
diff
changeset
|
268 * help/which.m: Still print something sensible if type is empty. |
2a49c32d4322
allow help to work with files containing only comments
John W. Eaton <jwe@octave.org>
parents:
8670
diff
changeset
|
269 |
8668
739b0aebf261
scripts/miscellaneous/Makefile.in: add bzip2
Soren Hauberg <hauberg@gmail.com>
parents:
8667
diff
changeset
|
270 2009-02-04 Soren Hauberg <hauberg@gmail.com> |
8670
6f5b2835325c
Get the bzip2 change right.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8668
diff
changeset
|
271 Thomas Treichl <Thomas.Treichl@gmx.net> |
8668
739b0aebf261
scripts/miscellaneous/Makefile.in: add bzip2
Soren Hauberg <hauberg@gmail.com>
parents:
8667
diff
changeset
|
272 |
739b0aebf261
scripts/miscellaneous/Makefile.in: add bzip2
Soren Hauberg <hauberg@gmail.com>
parents:
8667
diff
changeset
|
273 * miscellaneous/Makefile.in (SOURCES): Add bzip2.m to the list. |
739b0aebf261
scripts/miscellaneous/Makefile.in: add bzip2
Soren Hauberg <hauberg@gmail.com>
parents:
8667
diff
changeset
|
274 |
8667
a89198168175
freqz.m: freqz.m: fix for long input
Ben Abbott <bpabbott@mac.com>
parents:
8666
diff
changeset
|
275 2009-02-04 Frederick Umminger <Frederick_Umminger@playstation.sony.com> |
a89198168175
freqz.m: freqz.m: fix for long input
Ben Abbott <bpabbott@mac.com>
parents:
8666
diff
changeset
|
276 |
a89198168175
freqz.m: freqz.m: fix for long input
Ben Abbott <bpabbott@mac.com>
parents:
8666
diff
changeset
|
277 * signal/freqz.m: Ensure causal phase response. |
a89198168175
freqz.m: freqz.m: fix for long input
Ben Abbott <bpabbott@mac.com>
parents:
8666
diff
changeset
|
278 Handle long input correctly. |
a89198168175
freqz.m: freqz.m: fix for long input
Ben Abbott <bpabbott@mac.com>
parents:
8666
diff
changeset
|
279 |
8666 | 280 2009-02-04 Petr Mikulik <mikulik@physics.muni.cz> |
281 | |
282 * plot/__go_draw_axes__.m: Pass "interpolate 0, 0" to gnuplot | |
283 instead of "interpolate 4, 4". | |
284 | |
8664 | 285 2009-02-04 John W. Eaton <jwe@octave.org> |
286 | |
287 * audio/wavwrite.m, deprecated/splu.m, general/bitcmp.m, | |
288 general/fliplr.m, general/flipud.m, general/genvarname.m, | |
289 general/nargchk.m, general/nargoutchk.m, general/quadgk.m, | |
290 general/rot90.m, geometry/griddata.m, geometry/rectint.m, | |
291 geometry/voronoi.m, geometry/voronoin.m, | |
292 help/__strip_html_tags__.m, image/brighten.m, image/imfinfo.m, | |
293 image/imread.m, linear-algebra/cond.m, linear-algebra/condest.m, | |
294 linear-algebra/dmult.m, linear-algebra/dot.m, | |
295 linear-algebra/expm.m, linear-algebra/housh.m, | |
296 linear-algebra/onenormest.m, linear-algebra/subspace.m, | |
297 miscellaneous/compare_versions.m, optimization/__all_opts__.m, | |
298 optimization/optimget.m, pkg/pkg.m, plot/__bar__.m, | |
299 plot/__plr2__.m, plot/ribbon.m, plot/slice.m, polynomial/pchip.m, | |
300 polynomial/roots.m, set/unique.m, signal/fractdiff.m, | |
301 signal/hurst.m, specfun/beta.m, specfun/legendre.m, | |
302 statistics/base/__quantile__.m, statistics/base/quantile.m, | |
303 statistics/tests/cor_test.m, | |
304 statistics/tests/kolmogorov_smirnov_test_2.m, strings/base2dec.m, | |
305 strings/dec2base.m, strings/strcat.m, strings/validatestring.m, | |
306 time/addtodate.m: Style fixes. | |
307 | |
8661 | 308 2009-02-04 Jaroslav Hajek <highegg@gmail.com> |
309 | |
310 * optimization/fsolve.m: remove redundant line. | |
311 | |
8657
102e05821f93
add __all_opts__ to build process
Jaroslav Hajek <highegg@gmail.com>
parents:
8656
diff
changeset
|
312 2009-02-03 Jaroslav Hajek <highegg@gmail.com> |
102e05821f93
add __all_opts__ to build process
Jaroslav Hajek <highegg@gmail.com>
parents:
8656
diff
changeset
|
313 |
102e05821f93
add __all_opts__ to build process
Jaroslav Hajek <highegg@gmail.com>
parents:
8656
diff
changeset
|
314 * optimization/Makefile.in: Add missing source. |
102e05821f93
add __all_opts__ to build process
Jaroslav Hajek <highegg@gmail.com>
parents:
8656
diff
changeset
|
315 |
8656
e3041433a57e
increase tolerance in interpft tests
Rob Mahurin <rob@chimera.(none)>
parents:
8652
diff
changeset
|
316 2009-02-02 Rob Mahurin <rob@utk.edu> |
e3041433a57e
increase tolerance in interpft tests
Rob Mahurin <rob@chimera.(none)>
parents:
8652
diff
changeset
|
317 |
e3041433a57e
increase tolerance in interpft tests
Rob Mahurin <rob@chimera.(none)>
parents:
8652
diff
changeset
|
318 * general/interpft.m: Increase tolerance in tests, for FFTPACK. |
e3041433a57e
increase tolerance in interpft tests
Rob Mahurin <rob@chimera.(none)>
parents:
8652
diff
changeset
|
319 |
8652 | 320 2009-02-03 Jaroslav Hajek <highegg@gmail.com> |
321 | |
322 * optimization/__all_opts__.m: Yield empty list in recursive calls. | |
323 mlock to avoid unloading. | |
324 | |
8648
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8647
diff
changeset
|
325 2009-01-30 John W. Eaton <jwe@octave.org> |
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8647
diff
changeset
|
326 |
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8647
diff
changeset
|
327 * optimization/PKG_ADD: Delete. |
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8647
diff
changeset
|
328 * optimization/fsolve.m, optimization/fzero.m, |
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8647
diff
changeset
|
329 optimization/lsqnonneg.m: Use PKG_ADD: comment to call __all_opts__. |
ff61b53eb294
optimization: use PKG_ADD: comments instead of PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
8647
diff
changeset
|
330 |
8647
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
331 2009-01-30 Jaroslav Hajek <highegg@gmail.com> |
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
332 |
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
333 * optimization/__all_opts__.m: New source. |
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
334 * optimization/optimset.m: Implement checking for registered options. |
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
335 * optimization/optimget.m: Ditto. |
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
336 * optimization/fsolve.m: Fix misspelled option. |
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
337 * optimization/PKG_ADD: New startup file. |
06f5dd901f30
implement registering of optimization options
Jaroslav Hajek <highegg@gmail.com>
parents:
8645
diff
changeset
|
338 |
8645 | 339 2009-01-30 Kai Habel <kai.habel@gmx.de> |
340 | |
341 * plot/__go_draw_axes__.m: Add support for transparent surfaces. | |
342 * plot/__gnuplot_has_feature__.m: Add feature 'transparent_surface', | |
343 Require gnuplot 4.3 for transparent patches and surfaces. | |
344 | |
8643
92e193030b77
bugfix in datestr with YYYY and dd
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8639
diff
changeset
|
345 2009-01-30 Benjamin Lindner <lindnerben@gmx.net> |
92e193030b77
bugfix in datestr with YYYY and dd
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8639
diff
changeset
|
346 |
92e193030b77
bugfix in datestr with YYYY and dd
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8639
diff
changeset
|
347 * time/datestr.m: Convert YYYY to %Y instead of %C%y. |
92e193030b77
bugfix in datestr with YYYY and dd
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8639
diff
changeset
|
348 Convert [Dd][Dd] to %d instead of %e. |
92e193030b77
bugfix in datestr with YYYY and dd
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8639
diff
changeset
|
349 |
8638
20e93feaa7f8
gnuplot_drawnow.m: gnuplot_drawnow.m: respect x11 figure position property
Ben Abbott <bpabbott@mac.com>
parents:
8634
diff
changeset
|
350 2009-01-30 Ben Abbott <bpabbott@mac.com> |
20e93feaa7f8
gnuplot_drawnow.m: gnuplot_drawnow.m: respect x11 figure position property
Ben Abbott <bpabbott@mac.com>
parents:
8634
diff
changeset
|
351 |
8639
399af34bb4bf
# User Ben Abbott <bpabbott@mac.com>
John W. Eaton <jwe@octave.org>
parents:
8638
diff
changeset
|
352 * plot/print.m: Use __gnuplot_has_feature__ instead of |
399af34bb4bf
# User Ben Abbott <bpabbott@mac.com>
John W. Eaton <jwe@octave.org>
parents:
8638
diff
changeset
|
353 compare_versions. |
399af34bb4bf
# User Ben Abbott <bpabbott@mac.com>
John W. Eaton <jwe@octave.org>
parents:
8638
diff
changeset
|
354 |
8638
20e93feaa7f8
gnuplot_drawnow.m: gnuplot_drawnow.m: respect x11 figure position property
Ben Abbott <bpabbott@mac.com>
parents:
8634
diff
changeset
|
355 * plot/gnuplot_drawnow.m: Respect x11 figure position property. |
20e93feaa7f8
gnuplot_drawnow.m: gnuplot_drawnow.m: respect x11 figure position property
Ben Abbott <bpabbott@mac.com>
parents:
8634
diff
changeset
|
356 |
8634
cbd6545b0d85
fileparts.m: match all possible file separators
John W. Eaton <jwe@octave.org>
parents:
8633
diff
changeset
|
357 2009-01-29 John W. Eaton <jwe@octave.org> |
cbd6545b0d85
fileparts.m: match all possible file separators
John W. Eaton <jwe@octave.org>
parents:
8633
diff
changeset
|
358 |
cbd6545b0d85
fileparts.m: match all possible file separators
John W. Eaton <jwe@octave.org>
parents:
8633
diff
changeset
|
359 * miscellaneous/fileparts.m: Match all possible file separators. |
cbd6545b0d85
fileparts.m: match all possible file separators
John W. Eaton <jwe@octave.org>
parents:
8633
diff
changeset
|
360 |
8633 | 361 2009-01-29 Kai Habel <kai.habel@gmx.de> |
362 | |
363 * plot/__go_draw_axes__.m: Add support for transparent patches. | |
364 | |
8632 | 365 2009-01-29 S�ren Hauberg <hauberg@gmail.com> |
366 | |
367 * help/help.m, help/print_usage.m, help/get_first_help_sentence.m: | |
368 print sensible error message when function is found but not documented. | |
369 | |
370 * help/help.m: Allow displaying 'Contents.m' files. | |
371 | |
8627
fdd1cefd3714
Add missing files to SOURCES in plot/Makefile.in
Kai Habel
parents:
8624
diff
changeset
|
372 2009-01-29 Kai Habel <kai.habel@gmx.de> |
fdd1cefd3714
Add missing files to SOURCES in plot/Makefile.in
Kai Habel
parents:
8624
diff
changeset
|
373 |
fdd1cefd3714
Add missing files to SOURCES in plot/Makefile.in
Kai Habel
parents:
8624
diff
changeset
|
374 * plot/Makefile.in (SOURCES): Include diffuse.m, specular.m, and |
fdd1cefd3714
Add missing files to SOURCES in plot/Makefile.in
Kai Habel
parents:
8624
diff
changeset
|
375 surfl.m in the list. |
fdd1cefd3714
Add missing files to SOURCES in plot/Makefile.in
Kai Habel
parents:
8624
diff
changeset
|
376 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
377 2009-01-28 Ben Abbott <bpabbott@mac.com> |
8624
ff7d90d92db8
gnuplot_drawnow.m: style fixes.
Ben Abbott <bpabbott@mac.com>
parents:
8622
diff
changeset
|
378 |
ff7d90d92db8
gnuplot_drawnow.m: style fixes.
Ben Abbott <bpabbott@mac.com>
parents:
8622
diff
changeset
|
379 * plot/gnuplot_drawnow.m: Style fixes. |
8622 | 380 |
381 * plot/__gnuplot_has_feature__.m: New file, checks for supported | |
382 feature. | |
383 | |
8616
3d75d717cbe0
do not pivot by default in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8613
diff
changeset
|
384 2009-01-28 Jaroslav Hajek <highegg@gmail.com> |
3d75d717cbe0
do not pivot by default in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8613
diff
changeset
|
385 |
3d75d717cbe0
do not pivot by default in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8613
diff
changeset
|
386 * optimization/fsolve.m: Don't use pivoting at all (for the time |
3d75d717cbe0
do not pivot by default in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8613
diff
changeset
|
387 being). |
3d75d717cbe0
do not pivot by default in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8613
diff
changeset
|
388 |
8613
38482007c834
relax scaling in fsolve and use class-dependent default tolerances
Jaroslav Hajek <highegg@gmail.com>
parents:
8612
diff
changeset
|
389 2009-01-28 Jaroslav Hajek <highegg@gmail.com> |
38482007c834
relax scaling in fsolve and use class-dependent default tolerances
Jaroslav Hajek <highegg@gmail.com>
parents:
8612
diff
changeset
|
390 |
38482007c834
relax scaling in fsolve and use class-dependent default tolerances
Jaroslav Hajek <highegg@gmail.com>
parents:
8612
diff
changeset
|
391 * optimization/fsolve.m: Use more adaptive rescaling. |
38482007c834
relax scaling in fsolve and use class-dependent default tolerances
Jaroslav Hajek <highegg@gmail.com>
parents:
8612
diff
changeset
|
392 Put back the default tolerances based on machine eps respecting |
38482007c834
relax scaling in fsolve and use class-dependent default tolerances
Jaroslav Hajek <highegg@gmail.com>
parents:
8612
diff
changeset
|
393 the used precision. Partially reflect this in the default optimset |
38482007c834
relax scaling in fsolve and use class-dependent default tolerances
Jaroslav Hajek <highegg@gmail.com>
parents:
8612
diff
changeset
|
394 values. |
38482007c834
relax scaling in fsolve and use class-dependent default tolerances
Jaroslav Hajek <highegg@gmail.com>
parents:
8612
diff
changeset
|
395 |
8612
20d23d65cc84
fix & optimize orderfields
Jaroslav Hajek <highegg@gmail.com>
parents:
8610
diff
changeset
|
396 2009-01-28 Jaroslav Hajek <highegg@gmail.com> |
20d23d65cc84
fix & optimize orderfields
Jaroslav Hajek <highegg@gmail.com>
parents:
8610
diff
changeset
|
397 |
20d23d65cc84
fix & optimize orderfields
Jaroslav Hajek <highegg@gmail.com>
parents:
8610
diff
changeset
|
398 * miscellaneous/ordefields.m: Use indexed assignment instead of a |
20d23d65cc84
fix & optimize orderfields
Jaroslav Hajek <highegg@gmail.com>
parents:
8610
diff
changeset
|
399 loop. Fix for multidimensional cases. |
20d23d65cc84
fix & optimize orderfields
Jaroslav Hajek <highegg@gmail.com>
parents:
8610
diff
changeset
|
400 |
8609
fcf762ba66cf
load-path.cc (Fcommand_line_path): rename from Fcommandlinepath
John W. Eaton <jwe@octave.org>
parents:
8605
diff
changeset
|
401 2009-01-27 John W. Eaton <jwe@octave.org> |
fcf762ba66cf
load-path.cc (Fcommand_line_path): rename from Fcommandlinepath
John W. Eaton <jwe@octave.org>
parents:
8605
diff
changeset
|
402 |
8610
85c9906abfd1
use endif and endfor instead of end
John W. Eaton <jwe@octave.org>
parents:
8609
diff
changeset
|
403 * general/arrayfun.m, image/imwrite.m, plot/axis.m, plot/clf.m, |
85c9906abfd1
use endif and endfor instead of end
John W. Eaton <jwe@octave.org>
parents:
8609
diff
changeset
|
404 plot/ribbon.m, plot/gnuplot_drawnow.m, plot/cla.m, set/unique.m: |
85c9906abfd1
use endif and endfor instead of end
John W. Eaton <jwe@octave.org>
parents:
8609
diff
changeset
|
405 Use endif or endfor instead of "end". |
85c9906abfd1
use endif and endfor instead of end
John W. Eaton <jwe@octave.org>
parents:
8609
diff
changeset
|
406 |
8609
fcf762ba66cf
load-path.cc (Fcommand_line_path): rename from Fcommandlinepath
John W. Eaton <jwe@octave.org>
parents:
8605
diff
changeset
|
407 * path/savepath.m: Call command_line_path instead of commandlinepath. |
fcf762ba66cf
load-path.cc (Fcommand_line_path): rename from Fcommandlinepath
John W. Eaton <jwe@octave.org>
parents:
8605
diff
changeset
|
408 |
8605
9fc72c114ce1
Really fix indexing in orderfields.m
Jason Riedy <jason@acm.org>
parents:
8602
diff
changeset
|
409 2009-01-27 Jason Riedy <jason@acm.org> |
9fc72c114ce1
Really fix indexing in orderfields.m
Jason Riedy <jason@acm.org>
parents:
8602
diff
changeset
|
410 |
9fc72c114ce1
Really fix indexing in orderfields.m
Jason Riedy <jason@acm.org>
parents:
8602
diff
changeset
|
411 * miscellaneous/orderfields.m: Really fix the indexing for struct |
9fc72c114ce1
Really fix indexing in orderfields.m
Jason Riedy <jason@acm.org>
parents:
8602
diff
changeset
|
412 arrays. |
9fc72c114ce1
Really fix indexing in orderfields.m
Jason Riedy <jason@acm.org>
parents:
8602
diff
changeset
|
413 |
8602 | 414 2009-01-27 Carlo de Falco <kingcrimson@tsicali.it> |
415 | |
416 * polynomial/spline.m: Doc fix. | |
417 | |
8601
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
418 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
|
419 |
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
420 * 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
|
421 handle. |
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
422 |
8600 | 423 2009-01-27 Jaroslav Hajek <highegg@gmail.com> |
424 | |
425 * optimization/lsqnonneg.m: Reimplement using QR updating for | |
426 square and overdetermined systems. | |
427 | |
8596
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
428 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
|
429 |
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
430 * 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
|
431 Adjust some defaults. |
8628 | 432 * optimization/fzero.m: Ditto. |
8596
8833c0b18eb2
enable default settings queries in optim funcs
Jaroslav Hajek <highegg@gmail.com>
parents:
8594
diff
changeset
|
433 * 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
|
434 |
8594
756b0ba61350
orderfields.m: avoid loop for non-empty cases. New tests.
Jason Riedy <jason@acm.org>
parents:
8592
diff
changeset
|
435 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
|
436 |
756b0ba61350
orderfields.m: avoid loop for non-empty cases. New tests.
Jason Riedy <jason@acm.org>
parents:
8592
diff
changeset
|
437 * 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
|
438 |
8592
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
439 2009-01-17 Jaroslav Hajek <highegg@gmail.com> |
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
440 |
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
441 * optimization/fsolve.m: Disable Broyden updates for sparse jacobians. |
dacfd030633a
handle sparse jacobians in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8591
diff
changeset
|
442 |
8591 | 443 2009-01-17 Jaroslav Hajek <highegg@gmail.com> |
444 | |
445 * optimization/__fsolve_defopts__.m: Remove. | |
446 * optimization/Makefile.in: Reflect change. | |
447 | |
8590 | 448 2009-01-17 Jaroslav Hajek <highegg@gmail.com> |
449 | |
450 * optimization/__fdjac__.m: Fix setting up h. | |
451 * optimization/fsolve.m: Allow underdetermined systems. Use QR for | |
452 large enough square and overdetermined systems, with pivoting in the | |
453 first step. Simplify options. Adjust defaults - make TR radius | |
454 tolerance less stringent. Support DisplayFcn. | |
455 | |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
456 2008-12-24 Ben Abbott <bpabbott@mac.com> |
8586
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8585
diff
changeset
|
457 |
31ab3b83bc8a
savepath: Respect cmd-line and env paths.
Ben Abbott <bpabbott@mac.com>
parents:
8585
diff
changeset
|
458 * 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
|
459 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
460 2009-01-24 Ben Abbott <bpabbott@mac.com> |
8585
e6497be3f3d6
Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents:
8582
diff
changeset
|
461 |
e6497be3f3d6
Skip tests if ARPACK is missing.
Ben Abbott <bpabbott@mac.com>
parents:
8582
diff
changeset
|
462 * 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
|
463 |
8601
b297b86f4ad9
gradient.m: Add support for computing the gradient of a function handle
sh@sh-t400
parents:
8600
diff
changeset
|
464 2009-01-23 S�ren Hauberg <hauberg@gmail.com> |
8582 | 465 |
466 * help/type.m: Make 'type X' work, when X is the name of a variable. | |
467 | |
8575
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
468 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
|
469 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
470 * help/which.m: New function. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
471 * 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
|
472 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
473 * 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
|
474 * help/print_usage: Also display additional help text. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
475 * 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
|
476 displaying it. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
477 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
478 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
|
479 |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
480 * help: New directory. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
481 * 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
|
482 * Makefile.in (SUBDIRS): Add it to the list. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
483 * 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
|
484 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
|
485 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
|
486 New functions. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
487 * 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
|
488 * 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
|
489 * 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
|
490 * miscellaneous/pkg.m: Generate documentation cache during install. |
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8562
diff
changeset
|
491 |
8562
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8558
diff
changeset
|
492 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
|
493 |
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8558
diff
changeset
|
494 * 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
|
495 |
8558
438520011621
Check for successful build of the documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8557
diff
changeset
|
496 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
|
497 |
438520011621
Check for successful build of the documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8557
diff
changeset
|
498 * 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
|
499 |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
500 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
|
501 |
8557
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
502 * 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
|
503 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
|
504 * 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
|
505 * 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
|
506 |
8556
d81caf2e3a28
ylabel.m: handle rotation property here, not in __axis_label__.m
John W. Eaton <jwe@octave.org>
parents:
8554
diff
changeset
|
507 * 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
|
508 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
|
509 * 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
|
510 |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
511 * 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
|
512 before passing it on to __axis_label__. |
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
8552
diff
changeset
|
513 |
8552
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
514 2009-01-21 Jaroslav Hajek <highegg@gmail.com> |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
515 |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
516 * strings/strchr.m: New function. |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
517 * strings/Makefile.in: Add it. |
3591fe09f3b1
add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents:
8550
diff
changeset
|
518 |
8550
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
519 2009-01-20 Jaroslav Hajek <highegg@gmail.com> |
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
520 |
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
521 * optimization/fsolve.m: Only use qrupdate if available. |
1cb63ac13934
allow fsolve work without qrupdate
Jaroslav Hajek <highegg@gmail.com>
parents:
8545
diff
changeset
|
522 |
8538
f4a4f914462e
assert.m: use isfield instead of struct_contains
John W. Eaton <jwe@octave.org>
parents:
8533
diff
changeset
|
523 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
|
524 |
8545
faccdb98d953
postpad.m, prepad.m: doc fix
John W. Eaton <jwe@octave.org>
parents:
8544
diff
changeset
|
525 * general/postpad.m: Doc fix. |
faccdb98d953
postpad.m, prepad.m: doc fix
John W. Eaton <jwe@octave.org>
parents:
8544
diff
changeset
|
526 * general/prepad.m: Doc fix. |
8544 | 527 * image/pink.m: Spelling fix. |
528 * image/hsv.m: Doc fix. | |
529 From Francesco Potorti` <Potorti@isti.cnr.it>. | |
8543 | 530 |
8538
f4a4f914462e
assert.m: use isfield instead of struct_contains
John W. Eaton <jwe@octave.org>
parents:
8533
diff
changeset
|
531 * 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
|
532 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
533 2009-01-17 Ben Abbott <bpabbott@mac.com> |
8533
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
534 |
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
535 * general/cart2sph.m, cart2pol.m, sph2cart.m pol2cart.m: |
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
536 Permit scalars when transforming coordinates. |
fb1b87ea4af9
Permit scalars when transforming coordinates.
Ben Abbott <bpabbott@mac.com>
parents:
8532
diff
changeset
|
537 |
8532
4d884a016846
__quiver__.m: __quiver__.m: Fix auto-size of (x,y) coord.
Ben Abbott <bpabbott@mac.com>
parents:
8530
diff
changeset
|
538 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
|
539 |
4d884a016846
__quiver__.m: __quiver__.m: Fix auto-size of (x,y) coord.
Ben Abbott <bpabbott@mac.com>
parents:
8530
diff
changeset
|
540 * 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
|
541 |
8530
c7e49bf03d42
Fix for handling options
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8529
diff
changeset
|
542 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
|
543 |
c7e49bf03d42
Fix for handling options
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8529
diff
changeset
|
544 * plot/gnuplot_drawnow.m: Fix for handling options. |
c7e49bf03d42
Fix for handling options
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8529
diff
changeset
|
545 |
8529
774b44619c5c
Fix legend order for both horizontal and vertical string cell.
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8528
diff
changeset
|
546 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
|
547 |
774b44619c5c
Fix legend order for both horizontal and vertical string cell.
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8528
diff
changeset
|
548 * 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
|
549 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
|
550 |
8528 | 551 2008-01-15 Ben Abbott <bpabbott@mac.com> |
552 | |
553 * plot/grid.m: Document handle argument. | |
554 | |
8522
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
555 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
|
556 |
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
557 * general/nargoutchk.m: Doc fix. |
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
558 * general/nargchk.m: Improve compatibility. New tests. |
d65b33e55d40
nargchk.m: improve compatibility; new tests
Peter L. Sondergaard <peter@sonderport.dk>
parents:
8521
diff
changeset
|
559 |
8521 | 560 2008-01-15 Rafael Laboissiere <rafael@debian.org> |
561 | |
562 * gethelp.cc: Include <cstdio>. | |
563 | |
8518
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8517
diff
changeset
|
564 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
|
565 |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8517
diff
changeset
|
566 * 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
|
567 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
|
568 |
8517
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
569 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
|
570 |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
571 * 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
|
572 linear-algebra/commutation_matrix.m, |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
573 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
|
574 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
|
575 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
|
576 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
|
577 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
|
578 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
|
579 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
|
580 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
|
581 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
|
582 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
|
583 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
|
584 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
|
585 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
|
586 Use ifnottex instead of ifinfo. |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
587 |
8509
841f8e3370c6
dlmwrite.m: use '%c' format for character data
John W. Eaton <jwe@octave.org>
parents:
8508
diff
changeset
|
588 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
|
589 |
8517
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
590 * linear-algebra/expm.m: |
81d6ab3ac93c
Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents:
8513
diff
changeset
|
591 |
8513 | 592 * optimization/fsolve.m: Doc fix. |
593 | |
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
|
594 * 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
|
595 |
8509
841f8e3370c6
dlmwrite.m: use '%c' format for character data
John W. Eaton <jwe@octave.org>
parents:
8508
diff
changeset
|
596 * 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
|
597 |
8506 | 598 2009-01-13 John W. Eaton <jwe@octave.org> |
599 | |
8508
dee629f14bfa
repmat.m: handle negative dimensions properly
John W. Eaton <jwe@octave.org>
parents:
8507
diff
changeset
|
600 * 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
|
601 |
8507 | 602 * elfun/lcm.m, general/accumarray.m, general/bicubic.m, |
603 general/cellidx.m, general/cplxpair.m, general/dblquad.m, | |
604 general/gradient.m, general/interp1.m , general/pol2cart.m, | |
605 general/quadgk.m, general/quadv.m, general/repmat.m, | |
606 general/structfun.m, geometry/griddata.m, geometry/inpolygon.m, | |
607 image/brighten.m, image/hsv2rgb.m, image/imread.m, | |
608 image/imwrite.m, linear-algebra/dmult.m, | |
609 linear-algebra/onenormest.m, miscellaneous/getfield.m, | |
610 miscellaneous/setfield.m, miscellaneous/what.m, | |
611 optimization/fsolve.m, optimization/fzero.m, | |
612 optimization/lsqnonneg.m, optimization/qp.m, pkg/pkg.m, | |
613 plot/__area__.m, plot/__clabel__.m, plot/__stem__.m, plot/axis.m, | |
614 plot/colorbar.m, plot/contour3.m, plot/findall.m, plot/findobj.m, | |
615 plot/fplot.m, plot/grid.m, plot/hist.m, polynomial/convn.m, | |
616 polynomial/polyreduce.m, set/intersect.m, set/setxor.m, | |
617 set/union.m, signal/arch_fit.m, signal/durbinlevinson.m, | |
618 signal/fftshift.m, signal/freqz_plot.m, signal/ifftshift.m, | |
619 signal/spectral_adf.m, sparse/bicgstab.m, sparse/cgs.m, | |
620 sparse/gplot.m, sparse/normest.m, sparse/pcg.m, sparse/pcr.m, | |
621 sparse/spy.m, sparse/svds.m, sparse/treelayout.m, | |
622 sparse/treeplot.m, specfun/primes.m, special-matrix/hadamard.m, | |
623 statistics/base/center.m, statistics/base/quantile.m, | |
624 statistics/base/ranks.m, statistics/base/std.m, | |
625 statistics/distributions/hygepdf.m, | |
626 statistics/tests/kruskal_wallis_test.m, strings/index.m, | |
627 strings/mat2str.m, strings/str2double.m, strings/strrep.m, | |
628 testfun/assert.m, testfun/example.m, testfun/fail.m, | |
629 testfun/speed.m, testfun/test.m: Style fixes. | |
630 | |
8506 | 631 * audio/wavread.m, general/__splinen__.m, general/bicubic.m, |
632 general/rat.m, linear-algebra/expm.m, linear-algebra/krylov.m, | |
633 linear-algebra/onenormest.m, miscellaneous/edit.m, | |
634 optimization/__dogleg__.m, pkg/pkg.m, plot/__errplot__.m, | |
635 plot/__go_draw_axes__.m, plot/__stem__.m, plot/findobj.m, | |
636 set/ismember.m, signal/arma_rnd.m, signal/freqz.m, signal/stft.m, | |
637 sparse/pcg.m, sparse/sprandsym.m, sparse/treelayout.m, | |
638 specfun/factor.m, specfun/nchoosek.m, specfun/primes.m, | |
639 statistics/base/quantile.m, statistics/base/values.m, | |
640 strings/findstr.m, strings/str2double.m, strings/strrep.m, | |
641 testfun/assert.m, testfun/fail.m, testfun/speed.m, testfun/test.m, | |
642 time/datestr.m, time/datevec.m: Comment style fixes. | |
643 | |
8502
d437e8dc18fa
make unique work for row vectors
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8467
diff
changeset
|
644 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
|
645 |
d437e8dc18fa
make unique work for row vectors
Daniel J Sebald <daniel.sebald@ieee.org>
parents:
8467
diff
changeset
|
646 * 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
|
647 |
8466 | 648 2009-01-12 John W. Eaton <jwe@octave.org> |
649 | |
8467
77b8d4aa2743
fsolve.m, fzero.m: style fixes; use strcmpi to compare options
John W. Eaton <jwe@octave.org>
parents:
8466
diff
changeset
|
650 * 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
|
651 Use strcmpi to compare options. |
8466 | 652 |
8462
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
653 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
|
654 |
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
655 * strings/strvcat.m: Remove. |
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
656 * strings/Makefile.in (SOURCES): Remove strvcat.m. |
ebdf1e058d85
Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8460
diff
changeset
|
657 |
8460
e4c9ecb64411
diffuse.m, specular.m, surfl.m: style fixes
John W. Eaton <jwe@octave.org>
parents:
8455
diff
changeset
|
658 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
|
659 |
e4c9ecb64411
diffuse.m, specular.m, surfl.m: style fixes
John W. Eaton <jwe@octave.org>
parents:
8455
diff
changeset
|
660 * 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
|
661 |
8455
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
662 2009-01-11 Jaroslav Hajek <highegg@gmail.com> |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
663 |
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
664 * general/sortrows.m: Fix invalid `{x:y} = z' assignment. |
8628 | 665 * miscellaneous/orderfields.m: Ditto. |
666 * miscellaneous/what.m: Ditto. | |
667 * pkg/pkg.m: Ditto. | |
668 * plot/ndgrid.m: Ditto. | |
669 * strings/strcat.m: Ditto. | |
8455
fd11a08a9b31
disallow invalid {}-indexed assigments
Jaroslav Hajek <highegg@gmail.com>
parents:
8451
diff
changeset
|
670 |
8451 | 671 2009-01-09 Kai Habel <kai.habel@gmx.de> |
672 | |
673 * plot/surfl.m: New function | |
8628 | 674 * plot/diffuse.m: Ditto. |
675 * plot/specular.m: Ditto. | |
8451 | 676 |
8445
dd52e541418b
scripts/mkdoc: set defaults for FIND and PERL; check usage
John W. Eaton <jwe@octave.org>
parents:
8444
diff
changeset
|
677 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
|
678 |
dd52e541418b
scripts/mkdoc: set defaults for FIND and PERL; check usage
John W. Eaton <jwe@octave.org>
parents:
8444
diff
changeset
|
679 * 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
|
680 |
8443
34c0acf11539
Fix error messages in __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8442
diff
changeset
|
681 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
|
682 |
34c0acf11539
Fix error messages in __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8442
diff
changeset
|
683 * miscellaneous/__xzip__.m: Fix error messages, add tests. |
34c0acf11539
Fix error messages in __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8442
diff
changeset
|
684 |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
685 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
|
686 |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8441
diff
changeset
|
687 * 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
|
688 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
|
689 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
|
690 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
|
691 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
|
692 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
|
693 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
|
694 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
|
695 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
|
696 * 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
|
697 * 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
|
698 * 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
|
699 |
8440
e792c736b1ac
Fix for dense grids and speed up for voronoi function
David Bateman <dbateman@free.fr>
parents:
8438
diff
changeset
|
700 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
|
701 |
e792c736b1ac
Fix for dense grids and speed up for voronoi function
David Bateman <dbateman@free.fr>
parents:
8438
diff
changeset
|
702 * 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
|
703 |
8438 | 704 2008-12-28 Jaroslav Hajek <highegg@gmail.com> |
705 | |
706 * miscellaneous/delete.m: Allow filename globs. Display warnings if | |
707 operation fails. | |
708 | |
8427
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
709 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
|
710 |
8436
342f72c1df1a
In prepad, add reference to postpad.
Francesco Potortì <pot@gnu.org>
parents:
8435
diff
changeset
|
711 * general/prepad.m: Add reference to postpad. |
342f72c1df1a
In prepad, add reference to postpad.
Francesco Potortì <pot@gnu.org>
parents:
8435
diff
changeset
|
712 |
8435
69e27978114a
bincoeff.m: make reference to nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8433
diff
changeset
|
713 * miscellaneous/bincoeff.m: Make reference to nchoosek. |
69e27978114a
bincoeff.m: make reference to nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8433
diff
changeset
|
714 |
8433
3292bd1bbaa4
Cross reference between postpad and resize
Francesco Potortì <pot@gnu.org>
parents:
8430
diff
changeset
|
715 * 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
|
716 |
8430
24e4dc8b0e3a
Correct help string for statistics.m
Francesco Potortì <pot@gnu.org>
parents:
8427
diff
changeset
|
717 * statistics/base/statistics.m: Correct help string. |
24e4dc8b0e3a
Correct help string for statistics.m
Francesco Potortì <pot@gnu.org>
parents:
8427
diff
changeset
|
718 |
8427
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
719 * 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
|
720 Correct error message. |
26b899d309f6
help and error string corrected in hist.m.
Francesco Potortì <pot@gnu.org>
parents:
8424
diff
changeset
|
721 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
722 2008-12-30 Ben Abbott <bpabbott@mac.com> |
8441
cc3ac5eb6be3
__contour__.m: __contour__.m: correct order of patches
Ben Abbott <bpabbott@mac.com>
parents:
8440
diff
changeset
|
723 |
cc3ac5eb6be3
__contour__.m: __contour__.m: correct order of patches
Ben Abbott <bpabbott@mac.com>
parents:
8440
diff
changeset
|
724 * 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
|
725 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
726 2008-12-30 Ben Abbott <bpabbott@mac.com> |
8450
6c4e2fc14beb
Add new 3D plotting function surfl. Add light functions diffuse and specular
Kai Habel
parents:
8445
diff
changeset
|
727 |
6c4e2fc14beb
Add new 3D plotting function surfl. Add light functions diffuse and specular
Kai Habel
parents:
8445
diff
changeset
|
728 * 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
|
729 |
8424
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
730 2008-12-24 Doug Stewart <dastew@sympatico.ca> |
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
731 |
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
732 * plot/grid.m: Handle "minor" option. |
a84d71abdc5b
grid.m: handle minor grid option
Doug Stewart <dastew@sympatico.ca>
parents:
8422
diff
changeset
|
733 |
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
|
734 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
|
735 |
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
|
736 * 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
|
737 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
|
738 |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
739 2008-12-23 David Bateman <dbateman@free.fr> |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
740 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
741 * sparse/svds.m: New function. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
742 * sparse/Makefile.in (SOURCES): Add it here. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8416
diff
changeset
|
743 |
8416 | 744 2008-11-21 Radek Salac <salac.r@gmail.com> |
745 | |
746 * sparse/bicgstab.m: New function. | |
747 * sparse/Makefile.in (SOURCES): Add it here. | |
748 | |
8413
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
749 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
|
750 |
b8de157b4948
ChangeLog entry and style fixes for last two patches
Jaroslav Hajek <highegg@gmail.com>
parents:
8406
diff
changeset
|
751 * 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
|
752 (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
|
753 * 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
|
754 |
8406
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
755 2008-12-15 Jaroslav Hajek <highegg@gmail.com> |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
756 |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
757 * optimization/lsqnonneg.m: Preprocess using QR for over-determined |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
758 systems. Simplify & fix indexing. Use left division for step problem. |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
759 Fix output args. |
0b7566aea627
fix & optimize lsqnonneg
Jaroslav Hajek <highegg@gmail.com>
parents:
8404
diff
changeset
|
760 |
8404
868149aac690
nchoosek checks, warning, corner cases and tests
Francesco Potortì <pot@gnu.org>
parents:
8395
diff
changeset
|
761 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
|
762 |
868149aac690
nchoosek checks, warning, corner cases and tests
Francesco Potortì <pot@gnu.org>
parents:
8395
diff
changeset
|
763 * 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
|
764 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
|
765 |
8395
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
766 2008-12-11 Jaroslav Hajek <highegg@gmail.com> |
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
767 |
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
768 * optimization/fsolve.m: Optionally allow pivoted qr factorization. |
88fd356b0d95
optionally allow pivoting in fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8394
diff
changeset
|
769 |
8393 | 770 2008-12-10 Jaroslav Hajek <highegg@gmail.com> |
771 | |
8394 | 772 * linear-algebra/expm.m: New source. |
8393 | 773 |
8391
343f0fbca6eb
implement nchoosek without recursion
Jaroslav Hajek <highegg@gmail.com>
parents:
8390
diff
changeset
|
774 2008-12-09 Jaroslav Hajek <highegg@gmail.com> |
343f0fbca6eb
implement nchoosek without recursion
Jaroslav Hajek <highegg@gmail.com>
parents:
8390
diff
changeset
|
775 |
8394 | 776 * specfun/nchoosek.m: Use a recursionless approach. |
8391
343f0fbca6eb
implement nchoosek without recursion
Jaroslav Hajek <highegg@gmail.com>
parents:
8390
diff
changeset
|
777 |
8390
49901b624316
optimize repmat for scalar & matrix case
Jaroslav Hajek <highegg@gmail.com>
parents:
8387
diff
changeset
|
778 2008-12-09 Jaroslav Hajek <highegg@gmail.com> |
49901b624316
optimize repmat for scalar & matrix case
Jaroslav Hajek <highegg@gmail.com>
parents:
8387
diff
changeset
|
779 |
49901b624316
optimize repmat for scalar & matrix case
Jaroslav Hajek <highegg@gmail.com>
parents:
8387
diff
changeset
|
780 * 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
|
781 |
8387
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
782 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
|
783 |
1567db1e166c
make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
784 * 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
|
785 * 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
|
786 * 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
|
787 |
8372
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
788 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
|
789 |
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8362
diff
changeset
|
790 * 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
|
791 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
|
792 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
|
793 * 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
|
794 * 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
|
795 * 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
|
796 |
8360
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8357
diff
changeset
|
797 2008-11-28 David Bateman <dbateman@free.fr> |
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8357
diff
changeset
|
798 |
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8357
diff
changeset
|
799 * 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
|
800 |
8361
cf620941af1a
Set max_recursion_depth and use a subfunction in nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8360
diff
changeset
|
801 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
|
802 |
cf620941af1a
Set max_recursion_depth and use a subfunction in nchoosek
Francesco Potortì <pot@gnu.org>
parents:
8360
diff
changeset
|
803 * 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
|
804 |
8362
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
805 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
|
806 |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
807 * 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
|
808 improve tests |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
809 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
|
810 fix handling of output argument, add test |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
811 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
|
812 of temporary directories, remove tab characters |
03b414516dd8
clean up bzip2, gzip and __xzip__
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8361
diff
changeset
|
813 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
814 2008-11-24 Ben Abbott <bpabbott@mac.com> |
8343
9f34f7636fe0
legend.m: Correct ording of legend labels.
Ben Abbott <bpabbott@mac.com>
parents:
8338
diff
changeset
|
815 |
9f34f7636fe0
legend.m: Correct ording of legend labels.
Ben Abbott <bpabbott@mac.com>
parents:
8338
diff
changeset
|
816 * 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
|
817 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
818 2008-11-24 Ben Abbott <bpabbott@mac.com> |
8344
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8343
diff
changeset
|
819 |
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8343
diff
changeset
|
820 * 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
|
821 |
8338
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
822 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
|
823 |
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
824 * 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
|
825 * sparse/Makefile.in (SOURCES): Add them here. |
a35bf360b919
Add the cgs and treelayout functions
Radek Salac <salac.r@gmail.com>
parents:
8324
diff
changeset
|
826 |
8324 | 827 2008-11-14 David Bateman <dbateman@free.fr> |
828 | |
829 * plot/__go_draw_axes__.m (do_tics_1): Support the minorick properties | |
830 of the axis object. | |
831 | |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
832 2008-11-14 Ben Abbott <bpabbott@mac.com> |
8356
d750feaefa8e
gnuplot_drawnow.m: Add support of properites to gp backend.
Ben Abbott <bpabbott@mac.com>
parents:
8354
diff
changeset
|
833 |
d750feaefa8e
gnuplot_drawnow.m: Add support of properites to gp backend.
Ben Abbott <bpabbott@mac.com>
parents:
8354
diff
changeset
|
834 * 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
|
835 |
8320
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
836 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
|
837 |
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
838 * statistics/distributions/chi2rnd.m: Fix another missing semicolon. |
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
839 From sven.mattisson@insatnet.nu. |
9a05d76e5291
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8316
diff
changeset
|
840 |
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
|
841 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
|
842 |
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
|
843 * 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
|
844 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
|
845 * 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
|
846 |
8316 | 847 2008-11-10 John W. Eaton <jwe@octave.org> |
848 | |
849 * polynomial/spline.m: Delete debugging statements. From | |
850 Sebastian Sch�ps <sebastian@schoeps.org>. | |
851 | |
8444
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
852 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
|
853 |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
854 * 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
|
855 environment |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8443
diff
changeset
|
856 |
8350
0e3a92a8683c
fix texi bug in subplot.m
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8349
diff
changeset
|
857 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
|
858 |
0e3a92a8683c
fix texi bug in subplot.m
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8349
diff
changeset
|
859 * plot/subplot.m: fix texi bug |
0e3a92a8683c
fix texi bug in subplot.m
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8349
diff
changeset
|
860 |
8352
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
861 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
|
862 |
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
863 * 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
|
864 of cell-strings |
33337f1aca75
fix bug in cell string handling of unpack function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8350
diff
changeset
|
865 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
866 2008-11-03 Ben Abbott <bpabbott@mac.com> |
8354
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8352
diff
changeset
|
867 |
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8352
diff
changeset
|
868 * 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
|
869 |
8306
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
870 2008-09-28 Jaroslav Hajek <highegg@gmail.com> |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
871 |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
872 * optimization/__fdjac__.m: New function file. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
873 * optimization/__dogleg__.m: New function file. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
874 * optimization/fsolve.m: New function file. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
875 * optimization/Makefile.in: Include the new sources. |
43795cf108d0
initial implementation of fsolve
Jaroslav Hajek <highegg@gmail.com>
parents:
8305
diff
changeset
|
876 |
8305 | 877 2008-09-28 Jaroslav Hajek <highegg@gmail.com> |
878 | |
879 * optimization/fzero.m: Replace tabs by spaces. | |
880 | |
881 2008-09-28 Jaroslav Hajek <highegg@gmail.com> | |
882 | |
883 * optimization/fzero.m: Simplify exception handling. | |
884 | |
885 2008-10-31 Jaroslav Hajek <highegg@gmail.com> | |
886 | |
887 * optimization/fzero.m: New function file. | |
888 * optimization/Makefile.in: Add it. | |
889 | |
8304
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
890 2008-10-31 Jaroslav Hajek <highegg@gmail.com> |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
891 |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
892 * optimization/optimset.m: Don't include empty options in option |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
893 structure. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
894 * optimization/optimget.m: New function file. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
895 * optimization/Makefile.in: Add it. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
896 * optimization/lsqnonneg.m: Query options using optimget. |
eeaee297c0da
modify optimset & implement optimget
Jaroslav Hajek <highegg@gmail.com>
parents:
8303
diff
changeset
|
897 |
8303
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
898 2008-10-31 Jaroslav Hajek <highegg@gmail.com> |
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
899 |
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
900 * linear-algebra/__norm__.m: Remove. |
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
8299
diff
changeset
|
901 |
8349
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
902 2008-10-25 Thorsten Meyer <thorsten.meyier@gmx.de> |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
903 |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
904 * miscellaneous/bzip2.m, miscellaneous/__xzip__.m: new commands. |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
905 * miscellaneous/gzip.m: change to use __xzip__ for actual compression, |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
906 add tests. |
02beb5be5683
add bzip2 function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8344
diff
changeset
|
907 |
8299
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
908 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
|
909 |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
910 * 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
|
911 levels. |
be9b14945774
Add code to remove listeners from properties and use it with newplot
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
912 * 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
|
913 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
|
914 * 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
|
915 |
8289
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
916 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
|
917 |
8291
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8289
diff
changeset
|
918 * 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
|
919 * 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
|
920 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
|
921 |
8289
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
922 * 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
|
923 * 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
|
924 * 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
|
925 * 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
|
926 * 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
|
927 new interface to __contour__. |
ac7f334d9652
Add contour group objects and the clabel function
David Bateman <dbateman@free.fr>
parents:
8286
diff
changeset
|
928 |
8286
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
929 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
|
930 |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
931 * 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
|
932 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
|
933 * 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
|
934 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
|
935 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
|
936 * 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
|
937 betai to betainc. |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
938 * 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
|
939 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
|
940 * 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
|
941 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
|
942 non-existent functions. |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8285
diff
changeset
|
943 |
8285
26f0e69e9f3a
cla.m: in test, set visible off when creating figure
John W. Eaton <jwe@octave.org>
parents:
8280
diff
changeset
|
944 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
|
945 |
26f0e69e9f3a
cla.m: in test, set visible off when creating figure
John W. Eaton <jwe@octave.org>
parents:
8280
diff
changeset
|
946 * 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
|
947 |
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
|
948 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
|
949 |
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
|
950 * 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
|
951 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
|
952 |
8274
967c15c5e265
ellipsoid.m: fix default argument check
Soren Hauberg <hauberg@gmail.com>
parents:
8265
diff
changeset
|
953 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
|
954 |
967c15c5e265
ellipsoid.m: fix default argument check
Soren Hauberg <hauberg@gmail.com>
parents:
8265
diff
changeset
|
955 * 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
|
956 |
8790
a013ff655ca4
Trivial changes to demos to produce a more pleasant output for octave+gnuplot+aquaterm.
Ben Abbott <bpabbott@mac.com>
parents:
8789
diff
changeset
|
957 2008-10-22 Ben Abbott <bpabbott@mac.com> |
8264
bca580bbda02
cla.m: Fix error when no children to clear.
Ben Abbott <bpabbott@mac.com>
parents:
8262
diff
changeset
|
958 |
bca580bbda02
cla.m: Fix error when no children to clear.
Ben Abbott <bpabbott@mac.com>
parents:
8262
diff
changeset
|
959 * 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
|
960 |
8265
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8264
diff
changeset
|
961 * 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
|
962 |
8262
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
963 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
|
964 |
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
965 * 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
|
966 unwind_protect block. |
c44db9bad841
allchild.m: move get showhiddenhandles outside of unwind_protect block
John W. Eaton <jwe@octave.org>
parents:
8260
diff
changeset
|
967 |
8257 | 968 2008-10-22 David Bateman <dbateman@free.fr> |
969 | |
8260 | 970 * plot/refreshdata.m: Modify demo so that "y" is evaluated in the |
971 "caller" workspace. | |
972 | |
8258 | 973 * plot/__errplot__.m: Add errorbar series objects. |
974 * plot/errbar.m: Add some demos. | |
975 | |
8257 | 976 * plot/__add_line_series__.m: Remove |
977 * plot/Makefile.in (SOURCES): Remove it here too. | |
978 * plot/__add_datasource__.m: Allow for more than one character in | |
979 source name. | |
980 * plot/refreshdata.m: Ditto. | |
981 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, | |
982 plot/__plt2sv__.m, plot/__plt2vm__.m, plot/__plt2vv__.m, | |
983 plot/__plt2vs__.m, plot3.m: Remove previous line series changes. | |
984 * plot/__scatter__.m: Add scatter series objects and data sources. | |
985 * plot/legend.m: Update type in loop and remove debugging messages. | |
986 | |
8251 | 987 2008-10-21 Ben Abbott <bpabbott@mac.com> |
8250
8a2559a1aefa
clf.m: Improve Matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
8249
diff
changeset
|
988 |
8255
3f1199ad212f
legendre.m: Warn once on under/overflow.
Ben Abbott <bpabbott@mac.com>
parents:
8253
diff
changeset
|
989 * 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
|
990 |
8250
8a2559a1aefa
clf.m: Improve Matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
8249
diff
changeset
|
991 * plot/clf.m: Improve Matlab compatibility. |
8a2559a1aefa
clf.m: Improve Matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
8249
diff
changeset
|
992 |
8249 | 993 2008-10-21 John W. Eaton <jwe@octave.org> |
994 | |
8253
873ea2c72f16
quiver3.m: turn hold off after demo
John W. Eaton <jwe@octave.org>
parents:
8252
diff
changeset
|
995 * 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
|
996 |
8252
b12a2975bf7e
newplot.m: delete stray debugging code
John W. Eaton <jwe@octave.org>
parents:
8251
diff
changeset
|
997 * plot/newplot.m: Delete stray debugging code. |
b12a2975bf7e
newplot.m: delete stray debugging code
John W. Eaton <jwe@octave.org>
parents:
8251
diff
changeset
|
998 |
8249 | 999 * plot/gnuplot_drawnow.m: Pass handle to __go_draw_figure__, not |
1000 struct. Use get instead of examining struct fields directly. | |
1001 * plot/__go_draw_figure__.m: First arg is now handle, not figure | |
1002 object struct. Use get instead of examining struct elements | |
1003 directly. Use allhild instead of looking at children field of | |
1004 figure object struct. | |
1005 | |
8251 | 1006 2008-10-20 Ben Abbott <bpabbott@mac.com> |
8248 | 1007 |
1008 * plot/orient.m: Fix syntax error. | |
1009 | |
8243
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
1010 2008-10-20 David Bateman <dbateman@free.fr> |
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
1011 |
8245
166a689b77a9
Pause between tests for rundemos
David Bateman <dbateman@free.fr>
parents:
8243
diff
changeset
|
1012 * 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
|
1013 |
8243
ec4d9d657b17
Treat line style argument in stairs
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
1014 * 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
|
1015 * 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
|
1016 |
8241
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
1017 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
|
1018 |
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
1019 * 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
|
1020 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
|
1021 Ben Abbott <bpabbott@mac.com>. |
1e1e88bcc733
surfnorm.m: save and restore hold state
John W. Eaton <jwe@octave.org>
parents:
8240
diff
changeset
|
1022 |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
1023 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
|
1024 |
8246
db19494c7c2a
closereq.m: Respect property tag.
Ben Abbott <bpabbott@mac.com>
parents:
8245
diff
changeset
|
1025 * plot/closereq.m: Respect property tag. |
db19494c7c2a
closereq.m: Respect property tag.
Ben Abbott <bpabbott@mac.com>
parents:
8245
diff
changeset
|
1026 |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
1027 * 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
|
1028 baseline. |
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
1029 |
8239
041bb0c64f07
orient.m,print.f: validate figure handle
Ben Abbott <bpabbott@mac.com>
parents:
8238
diff
changeset
|
1030 * 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
|
1031 |
8240
5cfeb7bc497a
comet.m,hold.m: validate axes handle
Ben Abbott <bpabbott@mac.com>
parents:
8239
diff
changeset
|
1032 * 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
|
1033 |
8242
a9d3b88ea6fb
__go_draw_axes__.m: Fix for binary xfer of suface plots.
Ben Abbott <bpabbott@mac.com>
parents:
8241
diff
changeset
|
1034 * 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
|
1035 |
8237
52f2fba4f3f8
Test that an axis handle actually is one before setting it in plotyy
David Bateman <dbateman@free.fr>
parents:
8236
diff
changeset
|
1036 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
|
1037 |
52f2fba4f3f8
Test that an axis handle actually is one before setting it in plotyy
David Bateman <dbateman@free.fr>
parents:
8236
diff
changeset
|
1038 * 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
|
1039 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
|
1040 |
8236 | 1041 2008-10-17 David Bateman <dbateman@free.fr> |
1042 | |
1043 * plot/__plt_get_axis_arg__.m: Exclude non-numeric and root figure | |
1044 from potential axis handles. | |
1045 * plot/colorbar.m: Remove debug output. | |
1046 * plot/comet.m: Close plot before demo | |
1047 * plot/contourc.m: No output if nargout == 0. | |
1048 | |
8232
c6e9ff62c64a
Fix subplot for column vector of children in figure
David Bateman <dbateman@free.fr>
parents:
8229
diff
changeset
|
1049 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
|
1050 |
c6e9ff62c64a
Fix subplot for column vector of children in figure
David Bateman <dbateman@free.fr>
parents:
8229
diff
changeset
|
1051 * 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
|
1052 |
8229 | 1053 2008-10-16 John W. Eaton <jwe@octave.org> |
1054 | |
1055 * testfun/rundemos.m: New function. | |
1056 | |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
1057 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
|
1058 |
586b02ac671e
contourf.m: Correct order of patch object handles.
Ben Abbott <bpabbott@mac.com>
parents:
8226
diff
changeset
|
1059 * 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
|
1060 |
8224
62d90e049d4f
Always use multiplot with gnuplot to ensure correct postscript bounding box
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
1061 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
|
1062 |
8228
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
1063 * 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
|
1064 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
|
1065 |
53dbbd331498
Preserve font and position properties when axes are replace in the handle code
David Bateman <dbateman@free.fr>
parents:
8227
diff
changeset
|
1066 * 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
|
1067 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
|
1068 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
|
1069 |
8226
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8224
diff
changeset
|
1070 * 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
|
1071 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
|
1072 "usingclause". |
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8224
diff
changeset
|
1073 |
8224
62d90e049d4f
Always use multiplot with gnuplot to ensure correct postscript bounding box
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
1074 * 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
|
1075 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
|
1076 |
8222
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8221
diff
changeset
|
1077 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
|
1078 |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8221
diff
changeset
|
1079 * 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
|
1080 (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
|
1081 |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
1082 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
|
1083 |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
1084 * general/colon.m: Small typo. |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
1085 * general/loadobj.m: Ditto. |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8220
diff
changeset
|
1086 |
8220
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1087 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
|
1088 |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1089 * 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
|
1090 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
|
1091 (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
|
1092 |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1093 * 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
|
1094 fontunits, fontweight, position, outerposition, and |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1095 activepositionproperty axes properties when replacing plot. |
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1096 |
8218
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
1097 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
|
1098 |
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
1099 * 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
|
1100 plots. |
8a5fbd656f55
make previous change work for surface plots
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8217
diff
changeset
|
1101 |
8217
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
1102 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
|
1103 |
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
1104 * 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
|
1105 |
8220
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1106 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
|
1107 |
5d6b9311be38
__go_draw_axes__.m: Fix concatenation of handles.
Ben Abbott <bpabbott@mac.com>
parents:
8213
diff
changeset
|
1108 * 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
|
1109 |
8213
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
1110 2008-10-12 David Bateman <dbateman@free.fr> |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
1111 |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
1112 * general/colon..m: New function. |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
1113 * general/Makefile.in (SOURCES): Add it here. |
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
1114 |
8208 | 1115 2008-10-10 David Bateman <dbateman@free.fr> |
1116 | |
1117 * image/__img__.m: Manually set the limits of th eimage | |
1118 * plot/__go_draw_axes__.m: Base window position in the axis | |
1119 position property and not the outerposition property. Remove | |
1120 colorbar code based on the gnuplot colorbox. Allow images to be a | |
1121 vector to support image based colorbars. Also check labelmode for | |
1122 manual tics. | |
1123 * plot/__go_draw_figure__.m: Remove gnuplot colorbox based | |
1124 colorbar code. | |
1125 * plot/colorbar.m: Rewrite to use an image and callbacks to link | |
1126 it to the principal axis. | |
1127 * plot/legend.m: Support an axis handle as the first | |
1128 argument. Support hggroups. | |
1129 * plot/pareto.m: Don't support an axis handle as the first | |
1130 argument as the plotyy command in fact needs two axis handles. | |
1131 * plot/plotyy.m: Rewrite to use listeners and callbacks to | |
1132 synchronize the two axes. | |
1133 * plot/subplot.m: Also skip axes that are tagged as being a | |
1134 colorbar. Don't break in search of overlapping axes to delete. Set | |
1135 both the position and the outerposition. | |
1136 | |
8238
6ef647359f07
__stem__.m: Respect new ordering of children when setting baseline.
Ben Abbott <bpabbott@mac.com>
parents:
8237
diff
changeset
|
1137 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
|
1138 |
5bf8a57f85d5
__axis_label__.m: Inherit font properties from axes.
Ben Abbott <bpabbott@mac.com>
parents:
8201
diff
changeset
|
1139 * 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
|
1140 |
8212
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8208
diff
changeset
|
1141 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
|
1142 |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8208
diff
changeset
|
1143 * 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
|
1144 * 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
|
1145 |
8201
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
1146 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
|
1147 |
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
1148 * miscellaneous/fileparts.m: Handle "/file" properly. |
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
1149 Improve compatibility. |
0ab4eed59455
fileparts.m: handle "/file" correctly; improve compatibilty
John W. Eaton <jwe@octave.org>
parents:
8199
diff
changeset
|
1150 |
8199
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
1151 2008-10-07 Ben Abbott <bpabbott@mac.com> |
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
1152 |
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
1153 * plot/cla.m: New function. |
ec1b4cd5fbbb
cla.m: Add matlab function cla().
Ben Abbott <bpabbott@mac.com>
parents:
8197
diff
changeset
|
1154 * 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
|
1155 |
8197
4c85b8056d0b
delete.m: pass array of handles to __go_delete__
John W. Eaton <jwe@octave.org>
parents:
8190
diff
changeset
|
1156 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
|
1157 |
4c85b8056d0b
delete.m: pass array of handles to __go_delete__
John W. Eaton <jwe@octave.org>
parents:
8190
diff
changeset
|
1158 * 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
|
1159 |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
1160 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
|
1161 |
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8189
diff
changeset
|
1162 * 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
|
1163 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
|
1164 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
|
1165 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
|
1166 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
|
1167 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
|
1168 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
|
1169 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
|
1170 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
|
1171 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
|
1172 |
8188
946035db5605
delete.m: Permit a vector of handles to be deleted.
Ben Abbott <bpabbott@mac.com>
parents:
8182
diff
changeset
|
1173 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
|
1174 |
8189
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
1175 * plot/orient.m: Figure handle must be scalar. |
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
1176 * plot/hold.m: Axis handle must be scalar. |
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
1177 * plot/axes.m: Axis handle must be scalar. |
8e8afefe9466
Remove reliance on ishandle(vec) == false.
Ben Abbott <bpabbott@mac.com>
parents:
8188
diff
changeset
|
1178 * 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
|
1179 |
8188
946035db5605
delete.m: Permit a vector of handles to be deleted.
Ben Abbott <bpabbott@mac.com>
parents:
8182
diff
changeset
|
1180 * 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
|
1181 |
8174
ea9b5f31bfac
pkg.m: better handling of filenames with spaces
John W. Eaton <jwe@octave.org>
parents:
8172
diff
changeset
|
1182 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
|
1183 |
8182 | 1184 * pkg/pkg.m (configure_make): Handle filenames with spaces. |
1185 | |
1186 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
|
1187 |
9ba45b125ee8
enclose building direcries in quotes in pkg.m
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8171
diff
changeset
|
1188 * 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
|
1189 |
8182 | 1190 2008-10-02 Ben Abbott <bpabbott@mac.com> |
1191 | |
1192 * 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
|
1193 |
8168
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
1194 2008-09-30 Jaroslav Hajek <highegg@gmail.com> |
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
1195 |
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
1196 * string/split.m: New tests. |
dadf478ddc42
fix empty string assignment
Jaroslav Hajek <highegg@gmail.com>
parents:
8167
diff
changeset
|
1197 |
8182 | 1198 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
|
1199 |
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
1200 * 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
|
1201 |
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
1202 * plot/shading.m: New demo. |
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
1203 |
8163
7d6e659acc1a
__gnuplot_version__.m: include patchlevel in output
John W. Eaton <jwe@octave.org>
parents:
8159
diff
changeset
|
1204 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
|
1205 |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8163
diff
changeset
|
1206 * 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
|
1207 |
8163
7d6e659acc1a
__gnuplot_version__.m: include patchlevel in output
John W. Eaton <jwe@octave.org>
parents:
8159
diff
changeset
|
1208 * 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
|
1209 |
8182 | 1210 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
|
1211 |
8159
ccf38fc1057f
deconv.m: Fix row/col orientation & length of output
Ben Abbott <bpabbott@mac.com>
parents:
8158
diff
changeset
|
1212 * 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
|
1213 |
8158
15e4a450bf84
conv.m: Correct row/col orientation of output
Ben Abbott <bpabbott@mac.com>
parents:
8154
diff
changeset
|
1214 * 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
|
1215 |
8167
17352ccd860e
describe additional arguments in sqp() documentation string
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8166
diff
changeset
|
1216 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
|
1217 |
17352ccd860e
describe additional arguments in sqp() documentation string
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8166
diff
changeset
|
1218 * optimization/sqp.m: Document additional parameters. |
17352ccd860e
describe additional arguments in sqp() documentation string
Ivan Sutoris <ivan.sutoris@gmail.com>
parents:
8166
diff
changeset
|
1219 |
8154
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
1220 2008-09-26 David Bateman <dbateman@free.fr> |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
1221 |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
1222 * general/subsindex.m: Dummy subsindex function for help string |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
1223 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
|
1224 * general/Makefile.in (SOURCES): Include it here. |
265a821f6555
Add subsindex and ismethod functions
David Bateman <dbateman@free.fr>
parents:
8152
diff
changeset
|
1225 |
8152
2b48deec1aa2
imfinfo.m: delete temporary files
John W. Eaton <jwe@octave.org>
parents:
8149
diff
changeset
|
1226 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
|
1227 |
2b48deec1aa2
imfinfo.m: delete temporary files
John W. Eaton <jwe@octave.org>
parents:
8149
diff
changeset
|
1228 * image/imfinfo.m: Delete temporary file. |
2b48deec1aa2
imfinfo.m: delete temporary files
John W. Eaton <jwe@octave.org>
parents:
8149
diff
changeset
|
1229 |
8148 | 1230 2008-09-25 S�ren Hauberg <hauberg@gmail.com> |
1231 | |
1232 * image/imread.m, image/imwrite.m: Doc fix. | |
1233 | |
8145
7ef5b1b4e029
fplot.m: call axis after plot
John W. Eaton <jwe@octave.org>
parents:
8144
diff
changeset
|
1234 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
|
1235 |
7ef5b1b4e029
fplot.m: call axis after plot
John W. Eaton <jwe@octave.org>
parents:
8144
diff
changeset
|
1236 * 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
|
1237 |
8149 | 1238 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
|
1239 |
01fac748b680
Add the 'imfinfo' function for reading image file information.
sh@sh-laptop
parents:
8143
diff
changeset
|
1240 * image/imfinfo.m: New function. |
01fac748b680
Add the 'imfinfo' function for reading image file information.
sh@sh-laptop
parents:
8143
diff
changeset
|
1241 * 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
|
1242 |
8143
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
1243 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
|
1244 |
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
1245 * 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
|
1246 data. |
3a4694d67dbb
strcat.m: Compatibility of non-char data
Ben Abbott <bpabbott@mac.com>
parents:
8138
diff
changeset
|
1247 |
8138
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
1248 2008-09-24 John W. Eaton <jwe@octave.org> |
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
1249 |
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
1250 * general/interpft.m: Increase tolerance in tests. |
877faa7aa9b2
interpft.m: increase tolerance
John W. Eaton <jwe@octave.org>
parents:
8132
diff
changeset
|
1251 |
8132
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
1252 2008-09-23 Francesco Potorti` <Potorti@isti.cnr.it> |
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
1253 |
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
1254 * plot/pcolor.m: Improve doc string. |
8139ddb83bc3
pcolor.m: Improve doc strings.
Ben Abbott <bpabbott@mac.com>
parents:
8127
diff
changeset
|
1255 |
8182 | 1256 2008-09-22 Ben Abbott <bpabbott@mac.com> |
8126 | 1257 |
1258 * plot/comet.m: New file. | |
1259 * plot/Makefile.in (SOURCES): Add it here. | |
1260 | |
8122
99602635172a
Trivial patch to quadgk for absence of trace function count
David Bateman <dbateman@free.fr>
parents:
8120
diff
changeset
|
1261 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
|
1262 |
8127
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
1263 * plot/plotmatrix.m: New function. |
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
1264 * plot/Makefile.in (SOURCES): Add it here. |
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
1265 |
86568be36992
Add the plotmatrix function
David Bateman <dbateman@free.fr>
parents:
8126
diff
changeset
|
1266 * 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
|
1267 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
|
1268 |
8182 | 1269 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
|
1270 |
8f0150a0d19e
fix blkdiag to not rely on Matlab-incompatible behaviour
Jaroslav Hajek <highegg@gmail.com>
parents:
8117
diff
changeset
|
1271 * 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
|
1272 |
8116 | 1273 2008-09-18 Kris Thielemans <kris.thielemans@csc.mrc.ac.uk> |
1274 | |
8117 | 1275 * image/imshow.m: Fix for display_range. |
1276 | |
8116 | 1277 * general/interpn.m: Fixe for extrapval and documentation of |
1278 extrapval. | |
1279 | |
8107
8655dc0906e6
Special case single type conacation in Fcat. Rework cell2mat to take advantage
David Bateman <dbateman@free.fr>
parents:
8103
diff
changeset
|
1280 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
|
1281 |
8112
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
1282 * time/datetick.m: New function. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
1283 * time/Makefile.in (SOURCES): Add it here. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
1284 * 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
|
1285 column arguments. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
1286 * 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
|
1287 %g format. Also use manual mode if xlabelmode is manual. |
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8107
diff
changeset
|
1288 |
8107
8655dc0906e6
Special case single type conacation in Fcat. Rework cell2mat to take advantage
David Bateman <dbateman@free.fr>
parents:
8103
diff
changeset
|
1289 * 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
|
1290 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
|
1291 |
8103
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
1292 2008-09-11 David Bateman <dbateman@free.fr> |
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
1293 |
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
1294 * general/cell2mat.m: Improve the speed. |
3b2346046d32
improve speed of cell2mat
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
1295 |
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
|
1296 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
|
1297 |
229bd50e6e8f
datestr.m: convert format and use strtftime for most of the actual conversion
John W. Eaton <jwe@octave.org>
parents:
8088
diff
changeset
|
1298 * 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
|
1299 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
|
1300 |
8088 | 1301 2008-09-08 Tatsuro MATSUOKA <tmacchant@yahoo.co.jp> |
1302 | |
1303 * plot/plot.m: Doc fix. | |
1304 | |
8086
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
1305 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
|
1306 |
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
1307 * 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
|
1308 correctly. |
83646120b54c
Handle zero values of n in binornd correctly
Mark van Rossum <mvanross@inf.ed.ac.uk>
parents:
8085
diff
changeset
|
1309 |
8085
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
1310 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
|
1311 |
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
1312 * 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
|
1313 of X and Y. |
0a48abc35932
Make contourf work for equal-size matrices (again).
kai@LxLap.site
parents:
8080
diff
changeset
|
1314 |
8078
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
1315 2008-09-02 David Bateman <dbateman@free.fr> |
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
1316 |
8080
9f10a7b28ae3
__add_datasource__.m: fix indexing of varargin
David Bateman
parents:
8078
diff
changeset
|
1317 * plot/__add_datasource__.m: Fix indexing of varargin. |
9f10a7b28ae3
__add_datasource__.m: fix indexing of varargin
David Bateman
parents:
8078
diff
changeset
|
1318 |
8078
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
1319 * 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
|
1320 * plot/plot3.m: Correctly plot matrices. |
4665276ff7f6
correctly plot matrices in plot3
David Bateman <dbateman@free.fr>
parents:
8076
diff
changeset
|
1321 |
8076 | 1322 2008-08-31 Michael Goffioul <michael.goffioul@gmail.com> |
1323 | |
1324 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, | |
1325 plot/__plt2sv__.m, plot/__plt2vm__.m, plot/__plt2vs__.m, | |
1326 plot/__plt2vv__.m: Do not call "set" with empty arguments. | |
1327 | |
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
|
1328 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
|
1329 |
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
|
1330 * 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
|
1331 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
|
1332 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
|
1333 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
|
1334 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
|
1335 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
|
1336 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
|
1337 '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
|
1338 * 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
|
1339 |
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
|
1340 * 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
|
1341 * 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
|
1342 |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
1343 2008-08-28 David Bateman <dbateman@free.fr> |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
1344 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
1345 * 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
|
1346 plot/refresh.m, plot/refreshdata.m: New functions |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
1347 * Makefile.in (SOURCES): Add them here. |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
1348 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
1349 * 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
|
1350 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
|
1351 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8069
diff
changeset
|
1352 * 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
|
1353 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
|
1354 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
|
1355 |
8069
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
1356 2008-08-28 Martin Weiser <weiser2@natur.cuni.cz> |
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
1357 |
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
1358 * plot/scatter3.m: Doc fix. |
c64c9581e9bf
fix documentation of scatter3
Martin Weiser <weiser2@natur.cuni.cz>
parents:
8065
diff
changeset
|
1359 |
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
|
1360 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
|
1361 |
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
|
1362 * 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
|
1363 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
|
1364 |
8060
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
1365 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
|
1366 |
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
1367 * 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
|
1368 * plot/Makefile.in: Add it. |
09f32aac8fbc
Interface for backend switch/initialization
John W. Eaton <jwe@octave.org>
parents:
8056
diff
changeset
|
1369 |
8056
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
1370 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
|
1371 |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
1372 * 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
|
1373 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
|
1374 * 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
|
1375 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
|
1376 * 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
|
1377 __bars__. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
1378 * 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
|
1379 * 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
|
1380 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
|
1381 * 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
|
1382 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
|
1383 * 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
|
1384 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
|
1385 * 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
|
1386 * 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
|
1387 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
|
1388 callback. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
1389 |
8054 | 1390 2008-08-25 Thomas L. Scofield <scofield@calvin.edu> |
1391 | |
1392 * image/imwrite.m: Add ras and tiff to the list of accepted formats. | |
1393 Handle parameter-value options. Untabify. | |
1394 | |
8052
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
1395 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
|
1396 |
8056
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
1397 * 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
|
1398 call drawnow. |
9a6f4713f765
Add area, bar, quiver and stair series graphics objects. Document them
David Bateman <dbateman@free.fr>
parents:
8054
diff
changeset
|
1399 |
8052
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
1400 * 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
|
1401 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
|
1402 |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
1403 * 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
|
1404 * 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
|
1405 the stem series usage. |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8050
diff
changeset
|
1406 |
8050
dac919d9c418
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8048
diff
changeset
|
1407 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
|
1408 |
dac919d9c418
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8048
diff
changeset
|
1409 * statistics/distributions/chi2rnd.m: Fix missing semicolon. |
dac919d9c418
chi2rnd.m: fix missing semicolon
John W. Eaton <jwe@octave.org>
parents:
8048
diff
changeset
|
1410 |
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
|
1411 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
|
1412 |
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
|
1413 * 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
|
1414 (__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
|
1415 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
|
1416 |
8047
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1417 2008-08-21 Thomas Treichl <Thomas.Treichl@gmx.net> |
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1418 |
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1419 * optimization/sqp.m: Increase test script tolerance. |
d54f113aa983
Increase test script tolerances.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8046
diff
changeset
|
1420 |
8046 | 1421 2008-08-21 David Bateman <dbateman@free.fr> |
1422 | |
1423 * plot/ezplot.m : New function. | |
1424 * plot/Makefile.in (SOURCES): Add ezplot.m to the list. | |
1425 * plot/__ezplot__.m: Adapt to allow for use with the ezplot function. | |
1426 | |
8182 | 1427 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
|
1428 |
30d15ab0ce01
avoid problematic subfunction call in an anonymous function
Jaroslav Hajek <highegg@gmail.com>
parents:
8042
diff
changeset
|
1429 * 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
|
1430 directly. |
30d15ab0ce01
avoid problematic subfunction call in an anonymous function
Jaroslav Hajek <highegg@gmail.com>
parents:
8042
diff
changeset
|
1431 |
8042
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
8040
diff
changeset
|
1432 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
|
1433 |
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
8040
diff
changeset
|
1434 * 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
|
1435 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
|
1436 |
8040 | 1437 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
|
1438 |
854683691d7a
fix invalid memory read in glpk
Jaroslav Hajek <highegg@gmail.com>
parents:
8035
diff
changeset
|
1439 * optimization/glpk.m: Fix invalid call to zeros. |
854683691d7a
fix invalid memory read in glpk
Jaroslav Hajek <highegg@gmail.com>
parents:
8035
diff
changeset
|
1440 |
8035 | 1441 2008-08-19 David Bateman <dbateman@free.fr> |
1442 | |
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
|
1443 * 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
|
1444 * 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
|
1445 |
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
|
1446 * statistics/base/ranks.m: Doc fix. |
8035 | 1447 |
8026
79890b8187bd
scripts/general/Makefile.in (SOURCES): add cellidx.m to the list
John W. Eaton <jwe@octave.org>
parents:
8019
diff
changeset
|
1448 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
|
1449 |
79890b8187bd
scripts/general/Makefile.in (SOURCES): add cellidx.m to the list
John W. Eaton <jwe@octave.org>
parents:
8019
diff
changeset
|
1450 * 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
|
1451 |
8019
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8002
diff
changeset
|
1452 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
|
1453 |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8002
diff
changeset
|
1454 * gethelp.cc: Delete definition of NPOS. |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8002
diff
changeset
|
1455 |
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
|
1456 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
|
1457 |
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
|
1458 * 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
|
1459 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
|
1460 |
8357
bdb0a5aea9f2
Minor bug fixes, update help text and tests
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8356
diff
changeset
|
1461 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
|
1462 |
bdb0a5aea9f2
Minor bug fixes, update help text and tests
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8356
diff
changeset
|
1463 * 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
|
1464 |
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
|
1465 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
|
1466 |
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
|
1467 * 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
|
1468 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
|
1469 |
7988
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1470 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
|
1471 |
7989
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1472 * 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
|
1473 print command. Replace is_signal_list with iscellstr. |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1474 * general/quadqk.m, linear-algebra/planeror.m, |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1475 miscellaneous/namelengthmax.m, specfun/realpow.m: Miscellaneous |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1476 documentation fixes. |
23c248d415b5
Various doc fixes. Readd cellidx
David Bateman <dbateman@free.fr>
parents:
7988
diff
changeset
|
1477 |
7988
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1478 * 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
|
1479 files they contain. |
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1480 * 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
|
1481 * configure.in: ditto. |
21904fe299c8
Remove the control, finance and quaternion toolboxes
David Bateman <dbateman@free.fr>
parents:
7986
diff
changeset
|
1482 |
8182 | 1483 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
|
1484 |
85c5c1d55820
hold.m: Trival mod to help text.
Ben Abbott <bpabbott@mac.com>
parents:
7983
diff
changeset
|
1485 * plot/hold.m: Clarify help text. |
7986 | 1486 |
1487 * specfun/reallog.m: Fix help string. | |
1488 | |
7975
ed4ec7875f98
trival doc fix for genvarname
David Bateman <dbateman@free.fr>
parents:
7974
diff
changeset
|
1489 2008-07-28 David Bateman <dbateman@free.fr> |
7983 | 1490 |
1491 * strings/regexptranslate.m: Add real documentation. | |
1492 | |
7982
4e0fa430f840
Allow X/Y to be unequal vectors in contourf
David Bateman <dbateman@free.fr>
parents:
7978
diff
changeset
|
1493 * 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
|
1494 |
7978
f8514786c490
Clarify help of the shading function
David Bateman <dbateman@free.fr>
parents:
7975
diff
changeset
|
1495 * plot/shading.m: Clarify help string. |
f8514786c490
Clarify help of the shading function
David Bateman <dbateman@free.fr>
parents:
7975
diff
changeset
|
1496 |
7975
ed4ec7875f98
trival doc fix for genvarname
David Bateman <dbateman@free.fr>
parents:
7974
diff
changeset
|
1497 * general/genvarname.m: Trivial documentation fix. |
ed4ec7875f98
trival doc fix for genvarname
David Bateman <dbateman@free.fr>
parents:
7974
diff
changeset
|
1498 |
7974 | 1499 2008-07-28 John W. Eaton <jwe@octave.org> |
1500 | |
1501 * image/imwrite.m: New function. | |
1502 * image/Makefile.in (SOURCES): Add it to the list. | |
1503 | |
7969 | 1504 2008-07-24 Ben Abbott <bpabbott@mac.com> |
1505 | |
1506 * time/datestr.m: New xtest. | |
1507 | |
7966
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1508 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
|
1509 |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1510 * 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
|
1511 be closed. |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1512 * plot/close.m: Call __go_execute_callback__. |
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7940
diff
changeset
|
1513 |
7940 | 1514 2008-07-17 John W. Eaton <jwe@octave.org> |
1515 | |
1516 * general/fliplr.m: Fix usage test. | |
1517 * testfun/test.m: Fix usage tests. | |
1518 | |
8040 | 1519 2008-07-17 Jaroslav Hajek <highegg@gmail.com> |
7939 | 1520 |
1521 * statistics/base/cov.m: Fix test that should no longer work. | |
1522 | |
7935 | 1523 2008-07-16 Michael Goffioul <michael.goffioul@gmail.com> |
1524 | |
1525 * plot/gcbo.m, plot/gcbf.m: New functions. | |
1526 * plot/Makefile.in (SOURCES): Add them to the list. | |
1527 | |
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
|
1528 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
|
1529 |
7931
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1530 * deprecated/loadimage.m: New file. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1531 * 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
|
1532 * image/loadimage.m: Delete. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1533 * 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
|
1534 * image/imread.m: Incorporate loadimage functionality here. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1535 Simplify. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1536 * image/imshow.m: Call imread, not loadimage. |
de26beacb20f
imread.m: simplify; loadimage.m: deprecate
John W. Eaton <jwe@octave.org>
parents:
7930
diff
changeset
|
1537 |
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
|
1538 * 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
|
1539 |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1540 * 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
|
1541 |
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7926
diff
changeset
|
1542 * 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
|
1543 |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7925
diff
changeset
|
1544 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
|
1545 |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7925
diff
changeset
|
1546 * 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
|
1547 |
7925
9316b59903c9
Add original imread() files (from octave-forge) to core octave.
Thomas L. Scofield <scofield AT calvin DOT edu>
parents:
7920
diff
changeset
|
1548 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
|
1549 |
9316b59903c9
Add original imread() files (from octave-forge) to core octave.
Thomas L. Scofield <scofield AT calvin DOT edu>
parents:
7920
diff
changeset
|
1550 * 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
|
1551 |
8040 | 1552 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
|
1553 |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1554 * 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
|
1555 * set/union.m: Implement output indices. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1556 * set/intersect.m: Implement 'rows'. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1557 * set/setdiff.m: Implement output indices. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1558 * set/setxor.m: Implement 'rows' and output indices. |
e56bb65186f6
improve set functions for Matlab compatibility
Jaroslav Hajek <highegg@gmail.com>
parents:
7883
diff
changeset
|
1559 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
|
1560 |
7881
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1561 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
|
1562 |
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
|
1563 * 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
|
1564 |
7881
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1565 * 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
|
1566 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
|
1567 building character array. |
f74669a09deb
rat.m: handle arrays and all-integer inputs
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1568 |
8040 | 1569 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
|
1570 |
02b590f46a29
correct fputs to fprintf in __go_draw_axes__.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7865
diff
changeset
|
1571 * 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
|
1572 |
7865
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1573 2008-06-04 Michael Goffioul <michael.goffioul@gmail.com> |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1574 |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1575 * plot/__go_draw_axes__.m: Support hggroup objects. |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1576 * plot/hggroup.m: New file. |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1577 * plot/Makefile.in: Handle it. |
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7817
diff
changeset
|
1578 |
7815
a41df65f3f00
Add some single precision test code and fix resulting bugs
David Bateman <dbateman@free.fr>
parents:
7813
diff
changeset
|
1579 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
|
1580 |
7817 | 1581 * miscellaneous/debug.m: New file.. |
1582 * Makefile.in (SOURCES): Add it to the list. | |
1583 | |
7815
a41df65f3f00
Add some single precision test code and fix resulting bugs
David Bateman <dbateman@free.fr>
parents:
7813
diff
changeset
|
1584 * 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
|
1585 []. 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
|
1586 |
8040 | 1587 2008-06-02 Jaroslav Hajek <highegg@gmail.com> |
7813 | 1588 |
1589 * strings/strcat.m: Add tests. | |
1590 | |
7812
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1591 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
|
1592 |
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1593 * 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
|
1594 missing ; |
c25094267486
strings/mat2str.m: Change is_complex to iscomplex, add tests, add missing ;
kimhanse@gmail.com
parents:
7795
diff
changeset
|
1595 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1596 2008-05-20 David Bateman <dbateman@free.fr> |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1597 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1598 * miscellaneous/single.m: Remove. |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1599 * Makefile.in (SOURCES): Remove it here as well. |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7785
diff
changeset
|
1600 |
7785
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1601 2008-05-20 David Bateman <dbateman@free.fr> |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1602 |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1603 * general/interp1q.m: New function. |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1604 * general/Makefile.in (SOURCES): Add it here. |
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7783
diff
changeset
|
1605 |
7783 | 1606 2008-05-20 Bill Denney <bill@denney.ws> |
1607 | |
1608 * time/datenum.m: Allow mixed scalar and vector/matrix input. | |
1609 New tests. | |
1610 | |
7777 | 1611 2008-05-19 John W. Eaton <jwe@octave.org> |
1612 | |
1613 * general/isa.m: Fix tests. | |
1614 | |
7773 | 1615 2008-05-13 Bill Denney <bill@denney.ws> |
1616 | |
1617 * general/isa.m: Use persistent cell arrays to hold class names | |
1618 instead of multiple strcmp calls. | |
1619 | |
7770
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1620 2008-05-12 David Bateman <dbateman@free.fr> |
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1621 |
7795
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1622 * control/base/__stepimp__.m, control/base/bode_bounds.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1623 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
|
1624 control/base/tzero.m, control/hinf/hinfsyn.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1625 control/hinf/is_dgkf.m, control/system/d2c.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1626 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
|
1627 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
|
1628 control/system/sysconnect.m, general/bicubic.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1629 general/cplxpair.m, general/isdefinite.m, general/issymmetric.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1630 general/quadgk.m, general/quadl.m, general/quadv.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1631 geometry/delaunayn.m, linear-algebra/krylov.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1632 linear-algebra/null.m, linear-algebra/onenormest.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1633 linear-algebra/orth.m, linear-algebra/rank.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1634 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
|
1635 polynomial/polygcd.m, polynomial/residue.m, sparse/normest.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1636 specfun/erfinv.m, statistics/distributions/betainv.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1637 statistics/distributions/gaminv.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1638 statistics/distributions/kolmogorov_smirnov_cdf.m, |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1639 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
|
1640 precision types. |
df9519e9990c
Handle single precision eps values
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
1641 |
7772
ff717f2f9feb
Treat numeric and float argument in the isa function.
David Bateman <dbateman@free.fr>
parents:
7771
diff
changeset
|
1642 * 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
|
1643 argument. |
ff717f2f9feb
Treat numeric and float argument in the isa function.
David Bateman <dbateman@free.fr>
parents:
7771
diff
changeset
|
1644 |
7771
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7770
diff
changeset
|
1645 * 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
|
1646 general/triplequad.m: New functions. |
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7770
diff
changeset
|
1647 |
7770
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1648 * testfun/assert.m: Allow assert(cond, errmsg, ...) and |
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1649 assert(cond, msgid, errmsg, ...) syntax for compatibility. |
c6a1a217ac3c
Compatibility fix for assert
David Bateman <dbateman@free.fr>
parents:
7769
diff
changeset
|
1650 |
7769
247828ad21e2
Replace deprecated isstr() call
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7768
diff
changeset
|
1651 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
|
1652 |
247828ad21e2
Replace deprecated isstr() call
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7768
diff
changeset
|
1653 * miscellaneous/news.m: Replace deprecated isstr call. |
247828ad21e2
Replace deprecated isstr() call
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7768
diff
changeset
|
1654 |
7765 | 1655 2008-05-06 David Bateman <dbateman@free.fr> |
1656 | |
1657 * miscellaneous/symvar.m: New function. | |
1658 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
1659 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1660 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
|
1661 |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1662 * miscellaneous/dbstack.m: Delete. |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1663 * 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
|
1664 |
7768
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1665 2008-05-03 Rafael Laboissiere <rafael@debian.org> |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1666 |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1667 * linear-algebra/cond.m, miscellaneous/version.m, |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1668 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
|
1669 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
|
1670 instead of deprecated isstr. |
a2d9f325b65a
Use isschar instead of deprecated isstr
Rafael Laboissiere <rafael@debian.org>
parents:
7765
diff
changeset
|
1671 |
7746
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1672 2008-05-01 David Bateman <dbateman@free.fr> |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1673 |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1674 * plot/plot.m: Remove documentation of 'L' option. |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1675 * 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
|
1676 be passed. |
95dce69538ec
Allow additional options to stairs plots
David Bateman <dbateman@free.fr>
parents:
7742
diff
changeset
|
1677 |
7747 | 1678 2008-04-30 John W. Eaton <jwe@octave.org> |
1679 | |
1680 * elfun/acot.m, elfun/acsc.m, elfun/acsch.m, elfun/asec.m, | |
1681 elfun/asech.m, specfun/pow2.m: Fix tests. | |
1682 | |
8040 | 1683 2008-04-30 Jaroslav Hajek <highegg@gmail.com> |
7740 | 1684 |
1685 * specfun/log2.m: Delete. | |
1686 * specfun/Makefile.in (SOURCES): Delete it from the list. | |
1687 | |
7739
ca9bfe159144
Set archprefix for -local and -global options to pkg
David Bateman <dbateman@free.fr>
parents:
7737
diff
changeset
|
1688 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
|
1689 |
ca9bfe159144
Set archprefix for -local and -global options to pkg
David Bateman <dbateman@free.fr>
parents:
7737
diff
changeset
|
1690 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
|
1691 |
7737
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1692 2008-04-29 Jonathan Stickel <jjstickel@vcn.com> |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1693 |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1694 * statistics/distributions/tcdf.m, statistics/distributions/tinv.m: |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1695 Doc fix. |
15d3a35b8ff1
updated help for tcdf and tinv
jstickel@jstickel-10631s.nrel.gov
parents:
7736
diff
changeset
|
1696 |
7736 | 1697 2008-04-25 John W. Eaton <jwe@octave.org> |
1698 | |
1699 * miscellaneous/dbstack.m: New function. | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7747
diff
changeset
|
1700 * miscellaneous/Makefile.in (SOURCES): Add it to the list. |
7736 | 1701 |
7726
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1702 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
|
1703 |
1b954fdaf4ff
Try to get the colorbar position right for manual aspect ratios as well
David Bateman <dbateman@free.fr>
parents:
7714
diff
changeset
|
1704 * 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
|
1705 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
|
1706 * 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
|
1707 |
8149 | 1708 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
|
1709 |
83ea845cda36
Display a (hopefully) informative error message if gnuplot isn't found
sh@sh-laptop
parents:
7713
diff
changeset
|
1710 * 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
|
1711 |
7712
a626db2e8a1c
view: get values from current axes if nargin == 0
John W. Eaton <jwe@octave.org>
parents:
7711
diff
changeset
|
1712 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
|
1713 |
a626db2e8a1c
view: get values from current axes if nargin == 0
John W. Eaton <jwe@octave.org>
parents:
7711
diff
changeset
|
1714 * 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
|
1715 |
7713 | 1716 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
|
1717 |
263bcc319233
Minor fix for multiple patches with NaN values
David Bateman <dbateman@free.fr>
parents:
7710
diff
changeset
|
1718 * 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
|
1719 |
7710 | 1720 2008-04-14 David Bateman <dbateman@free.fr> |
1721 | |
1722 * plot/rose.m: Add missing comment mark that causes issues with | |
1723 octave-forge function referencing. | |
1724 * deprecated/lchol.m, deprecated/splchol.m: Fix texinfo errors. | |
1725 | |
7704
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1726 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
|
1727 |
1cdb42b372e8
don't embed newline in warning messages in deprecated functions
John W. Eaton <jwe@octave.org>
parents:
7703
diff
changeset
|
1728 * 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
|
1729 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
|
1730 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
|
1731 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
|
1732 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
|
1733 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
|
1734 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
|
1735 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
|
1736 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
|
1737 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
|
1738 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
|
1739 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
|
1740 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
|
1741 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
|
1742 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
|
1743 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
|
1744 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
|
1745 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
|
1746 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
|
1747 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
|
1748 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
|
1749 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
|
1750 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
|
1751 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
|
1752 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
|
1753 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
|
1754 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
|
1755 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
|
1756 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
|
1757 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
|
1758 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
|
1759 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
|
1760 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
|
1761 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
|
1762 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
|
1763 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
|
1764 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
|
1765 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
|
1766 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
|
1767 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
|
1768 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
|
1769 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
|
1770 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
|
1771 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
|
1772 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
|
1773 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
|
1774 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
|
1775 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
|
1776 |
7703
e44e4cd2129d
Don't allow the use of lists in assert.m
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
1777 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
|
1778 |
e44e4cd2129d
Don't allow the use of lists in assert.m
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
1779 * 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
|
1780 |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1781 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
|
1782 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1783 * 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
|
1784 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1785 * 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
|
1786 * 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
|
1787 * Makefile.incontrol/obsolete/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1788 * 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
|
1789 * 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
|
1790 * 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
|
1791 * 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
|
1792 * 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
|
1793 * 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
|
1794 * 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
|
1795 * 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
|
1796 * 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
|
1797 * 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
|
1798 * 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
|
1799 * 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
|
1800 * Makefile.instatistics/distributions/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1801 * Makefile.instatistics/models/Makefile.in, |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7697
diff
changeset
|
1802 * 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
|
1803 * 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
|
1804 * 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
|
1805 |
7697
0bdfff62cc49
lsqnonneg: use optimset, correctly index Z and P in main loop
bill@denney.ws
parents:
7696
diff
changeset
|
1806 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
|
1807 |
0bdfff62cc49
lsqnonneg: use optimset, correctly index Z and P in main loop
bill@denney.ws
parents:
7696
diff
changeset
|
1808 * 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
|
1809 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
|
1810 |
7696
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1811 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
|
1812 |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1813 * 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
|
1814 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
|
1815 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
|
1816 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
|
1817 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
|
1818 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
|
1819 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
|
1820 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
|
1821 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
|
1822 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
|
1823 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
|
1824 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
|
1825 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
|
1826 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
|
1827 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
|
1828 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
|
1829 deprecated/intersection.m deprecated/is_bool.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1830 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
|
1831 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
|
1832 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
|
1833 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
|
1834 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
|
1835 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
|
1836 deprecated/lognormal_rnd.m deprecated/meshdom.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1837 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
|
1838 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
|
1839 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
|
1840 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
|
1841 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
|
1842 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
|
1843 deprecated/polyinteg.m deprecated/setstr.m |
0a362fa8f3c8
Add warning to rest of deprecated functions
David Bateman <dbateman@free.fr>
parents:
7693
diff
changeset
|
1844 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
|
1845 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
|
1846 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
|
1847 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
|
1848 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
|
1849 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
|
1850 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
|
1851 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
|
1852 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
|
1853 |
7693
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1854 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
|
1855 |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1856 * 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
|
1857 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
|
1858 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
|
1859 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
|
1860 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
|
1861 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
|
1862 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
|
1863 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
|
1864 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
|
1865 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
|
1866 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
|
1867 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
|
1868 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
|
1869 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
|
1870 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
|
1871 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
|
1872 deprecated/hypergeometric_rnd.m, deprecated/intersection.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1873 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
|
1874 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
|
1875 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
|
1876 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
|
1877 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
|
1878 deprecated/isstr.m, deprecated/lchol.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1879 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
|
1880 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
|
1881 deprecated/meshdom.m, deprecated/normal_cdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1882 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
|
1883 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
|
1884 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
|
1885 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
|
1886 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
|
1887 deprecated/poisson_rnd.m, deprecated/polyinteg.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1888 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
|
1889 deprecated/spchol2inv.m, deprecated/spcholinv.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1890 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
|
1891 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
|
1892 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
|
1893 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
|
1894 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
|
1895 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
|
1896 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
|
1897 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
|
1898 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
|
1899 deprecated/uniform_rnd.m, deprecated/weibcdf.m, |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1900 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
|
1901 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
|
1902 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
|
1903 deprecated/wiener_rnd.m: |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1904 Note version when function was deprecated. |
8e5371d47da6
note version when functions were deprecated
John W. Eaton <jwe@octave.org>
parents:
7692
diff
changeset
|
1905 |
7692
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1906 2008-04-03 David Bateman <dbateman@free.fr> |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1907 |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1908 * 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
|
1909 plot or 3D plots with more than one line. |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1910 |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1911 * deprecated/splchol.m deprecated/lchol.m deprecated/spfind.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1912 deprecated/spchol.m deprecated/spmin.m deprecated/spmax.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1913 deprecated/spdet.m deprecated/splu.m deprecated/spqr.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1914 deprecated/spatan2.m deprecated/spchol2inv.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1915 deprecated/spcholinv.m deprecated/spcumprod.m deprecated/spdiag.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1916 deprecated/spinv.m deprecated/spcumsum.m deprecated/spprod.m |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1917 deprecated/spsum.m deprecated/spsumsq.m: New files |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1918 * deprecated/Makefile.in (SOURCES): Add them here. |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7691
diff
changeset
|
1919 |
7687
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1920 2008-04-03 Ben Abbott <bpabbott@mac.com> |
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1921 |
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1922 * sparse/spaugment.m: Increase test script tolerance. |
795be0215bf7
spaugment: reduce test script tolerance
Ben Abbott <bpabbott@mac.com>
parents:
7685
diff
changeset
|
1923 |
7684
5b70d49eff6f
scripts/general/Makefile.in (SOURCES): Add runlength.m
John W. Eaton <jwe@octave.org>
parents:
7682
diff
changeset
|
1924 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
|
1925 |
7685
f90494008de8
scripts/deprecated/Makefile.in (SOURCES): Add spkron.m
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
1926 * 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
|
1927 |
7684
5b70d49eff6f
scripts/general/Makefile.in (SOURCES): Add runlength.m
John W. Eaton <jwe@octave.org>
parents:
7682
diff
changeset
|
1928 * 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
|
1929 |
7682 | 1930 2008-04-02 Bill Denney <bill@denney.ws> |
1931 | |
1932 * optimization/lsqnonneg.m: New function. | |
1933 * optimization/Makefile.in (SOURCES): Add it to the list. | |
1934 | |
7680
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1935 2008-04-02 David Bateman <dbateman@free.fr> |
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1936 |
7681
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7680
diff
changeset
|
1937 * sparse/spaugment.m: New function |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7680
diff
changeset
|
1938 * sparse/Makefile.in (SOURCES): Add it here. |
b1c1133641ee
Add the spaugment function
David Bateman <dbateman@free.fr>
parents:
7680
diff
changeset
|
1939 |
7680
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1940 * 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
|
1941 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
|
1942 * 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
|
1943 communication with the gnuplot process. |
a0ec02774303
Use popen2 for communication with gnuplot
David Bateman <dbateman@free.fr>
parents:
7678
diff
changeset
|
1944 |
7678 | 1945 2008-04-01 Richard Bovey <Richard.Bovey@baesystems.com> |
1946 | |
1947 * general/sortrows.m: Handle negative column arguments. | |
1948 | |
7675
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1949 2008-04-01 Julian Schnidder <j.schnidder@gmx.de> |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1950 |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1951 * miscellaneous/perl.m: New function. |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1952 * miscellaneous/Makefile.in (SOURCES): Add it to the list. |
8abada567409
perl.m: new function
Julian Schnidder <j.schnidder@gmx.de>
parents:
7674
diff
changeset
|
1953 |
7673 | 1954 2008-03-31 David Bateman <dbateman@free.fr> |
1955 | |
7676
6c0f7bcf5b55
Fix spurious tics for plotyy with gnuplot backend
David Bateman <dbateman@free.fr>
parents:
7675
diff
changeset
|
1956 * 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
|
1957 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
|
1958 ticks in plotyy. |
6c0f7bcf5b55
Fix spurious tics for plotyy with gnuplot backend
David Bateman <dbateman@free.fr>
parents:
7675
diff
changeset
|
1959 |
7674
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1960 * 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
|
1961 * 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
|
1962 * 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
|
1963 * 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
|
1964 missing mkfifo under Windows. |
52d8d50e74c1
Add gtext, waitforbuttonpress. Attempt to get ginput working under windows
David Bateman <dbateman@free.fr>
parents:
7673
diff
changeset
|
1965 * 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
|
1966 |
7673 | 1967 * plot/ginput.m: New function. |
1968 * plot/__gnuplot_ginput__.m: New function based on a version of | |
1969 ginput.m from Petr Mikulik <mikulik@physics.muni.cz>. | |
1970 * plot/Makefile.in (SOURCES): Add them to the list. | |
1971 | |
7672
2f0920d1edd4
run.m: fix check for file existence
Ben Abbott <bpabbott@mac.com>
parents:
7671
diff
changeset
|
1972 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
|
1973 |
2f0920d1edd4
run.m: fix check for file existence
Ben Abbott <bpabbott@mac.com>
parents:
7671
diff
changeset
|
1974 * 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
|
1975 |
7671
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1976 2008-03-27 Jaroslav Hajek <highegg@gmail.com> |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1977 |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1978 * general/lookup.m: Remove (lookup moved to DLD-FUNCTIONS). |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1979 * general/Makefile.in (SOURCES): Delete lookup.m from the list. |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1980 * general/interp1.m, general/interp2.m, general/interpn.m, |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1981 polynomial/ppval.m: Fix buggy lookup calls. |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1982 * general/interp1.m: New test. |
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7670
diff
changeset
|
1983 |
7670
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1984 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
|
1985 |
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1986 * 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
|
1987 documentation. |
7a5dbd31eb76
Fix tempdir's documention string to point at tempdir
weber@num.uni-sb.de
parents:
7669
diff
changeset
|
1988 |
7669 | 1989 2008-03-28 Jaroslav Hajek <highegg@gmail.com> |
1990 | |
1991 * general/del2.m: Missing semicolon. | |
1992 | |
7668 | 1993 2008-03-28 Julian Schnidder <j.schnidder@gmx.de> |
1994 | |
1995 * miscellaneous/info.m: New function. | |
1996 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
1997 | |
8149 | 1998 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
|
1999 |
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7665
diff
changeset
|
2000 * 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
|
2001 Doc fixes. |
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7665
diff
changeset
|
2002 |
7664
0dff8d9bf229
Fix for plot(zeros(1,0),zeros(1,0))
David Bateman <dbateman@free.fr>
parents:
7659
diff
changeset
|
2003 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
|
2004 |
0dff8d9bf229
Fix for plot(zeros(1,0),zeros(1,0))
David Bateman <dbateman@free.fr>
parents:
7659
diff
changeset
|
2005 * 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
|
2006 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
|
2007 |
7665
aead4b9d026b
Fix axis handle treatment in plotyy
David Bateman <dbateman@free.fr>
parents:
7664
diff
changeset
|
2008 * 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
|
2009 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
|
2010 |
7655 | 2011 2008-03-27 Bill Denney <bill@denney.ws> |
2012 | |
7659
4ab2488ab2b4
datenum: allow vector inputs in any orientation
Bill Denny
parents:
7658
diff
changeset
|
2013 * time/datenum.m: Allow vector inputs in any orientation. |
4ab2488ab2b4
datenum: allow vector inputs in any orientation
Bill Denny
parents:
7658
diff
changeset
|
2014 |
7658
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
2015 * strings/validatestring.m: New function. |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
2016 * 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
|
2017 |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
2018 * general/nargoutchk.m: New function. |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
2019 * 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
|
2020 |
7657 | 2021 * general/genvarname.m: New function. |
2022 * general/Makefile.in (SOURCES): Add it to the list. | |
2023 | |
7656 | 2024 * time/addtodate.m: New function. |
7657 | 2025 * time/Makefile.in (SOURCES): Add it to the list. |
7656 | 2026 |
7655 | 2027 * geometry/rectint.m: Vectorize and add more tests. |
2028 | |
7654
48edf48cd4dc
__axis_label__: use name of caller in error message
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
2029 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
|
2030 |
48edf48cd4dc
__axis_label__: use name of caller in error message
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
2031 * 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
|
2032 |
7653
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
2033 2008-03-27 David Bateman <dbateman@free.fr> |
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
2034 |
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
2035 * linear-algebra/planerot.m: Givens rotation function. |
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7652
diff
changeset
|
2036 |
7650 | 2037 2008-03-26 John W. Eaton <jwe@octave.org> |
2038 | |
7652
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
2039 * 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
|
2040 New tests. |
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
2041 |
b5731e43283a
ismember: correctly size idx output for empty args
John W. Eaton <jwe@octave.org>
parents:
7650
diff
changeset
|
2042 * 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
|
2043 |
7650 | 2044 * control/hinf/h2syn.m, general/__splinen__.m, general/gradient.m, |
2045 geometry/inpolygon.m, geometry/trimesh.m, geometry/triplot.m, | |
2046 image/imagesc.m, io/csvread.m, io/csvwrite.m, | |
2047 miscellaneous/edit.m, miscellaneous/tempname.m, plot/fill.m, | |
2048 plot/patch.m, plot/ribbon.m, plot/surface.m, polynomial/mkpp.m, | |
2049 polynomial/pchip.m, polynomial/spline.m, set/unique.m: | |
2050 Texinfo fixes. | |
2051 | |
8040 | 2052 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
|
2053 |
1eac99a280a2
extend dmult to allow scaling arbitrary dimension
Jaroslav Hajek <highegg@gmail.com>
parents:
7648
diff
changeset
|
2054 * 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
|
2055 |
8149 | 2056 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
|
2057 |
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
|
2058 * 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
|
2059 |
8182 | 2060 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
|
2061 |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
2062 * 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
|
2063 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
|
2064 * statistics/base/__quantile__.m, statistics/base/quantile.m, |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
2065 statistics/base/prctile.m: New functions. |
0220da981c2a
Modified statistics to calculate consistent median.
Ben Abbott <bpabbott@mac.com>
parents:
7641
diff
changeset
|
2066 * 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
|
2067 |
8149 | 2068 2008-03-25 S�ren Hauberg <hauberg@gmail.com> |
7640 | 2069 |
2070 * polynomial/convn.m: New function. | |
2071 * polynomial/Makefile.in (SOURCES): Add it to the list. | |
2072 | |
7633
ba15376ddfe1
Add the contrast function
David Bateman <dbateman@free.fr>
parents:
7632
diff
changeset
|
2073 2008-03-25 David Bateman <dbateman@free.fr> |
ba15376ddfe1
Add the contrast function
David Bateman <dbateman@free.fr>
parents:
7632
diff
changeset
|
2074 |
ba15376ddfe1
Add the contrast function
David Bateman <dbateman@free.fr>
parents:
7632
diff
changeset
|
2075 * image/contrast.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2076 * image/Makefile.in (SOURCES): Add it to the list. |
7640 | 2077 |
7632
d6e63a15cc75
Allow installation of already extracted packages
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7629
diff
changeset
|
2078 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
|
2079 |
d6e63a15cc75
Allow installation of already extracted packages
Thomas Weber <thomas.weber.mail@gmail.com>
parents:
7629
diff
changeset
|
2080 * 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
|
2081 |
7627 | 2082 2008-03-24 David Bateman <dbateman@free.fr> |
2083 | |
2084 * general/idivide.m: New function. | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2085 * general/Makefile.in (SOURCES): Add it to the list. |
7627 | 2086 |
7628
acca752a3b96
Add the namelengthmax function
David Bateman <dbateman@free.fr>
parents:
7627
diff
changeset
|
2087 * miscellaneous/namelengthmax.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2088 * miscellaneous/Makefile.in (SOURCES): Add it to the list. |
7628
acca752a3b96
Add the namelengthmax function
David Bateman <dbateman@free.fr>
parents:
7627
diff
changeset
|
2089 |
7629
cc31c5002c96
Add the regexptranslate function
David Bateman <dbateman@free.fr>
parents:
7628
diff
changeset
|
2090 * strings/regexptranslate.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2091 * strings/Makefile.in (SOURCES): Add it to the list. |
7629
cc31c5002c96
Add the regexptranslate function
David Bateman <dbateman@free.fr>
parents:
7628
diff
changeset
|
2092 |
7621
4682dda22527
Add the reallog, realsqrt and realpow functions
David Bateman <dbateman@free.fr>
parents:
7618
diff
changeset
|
2093 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
|
2094 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2095 * specfun/reallog.m, specfun/realpow.m, specfun/realsqrt.m: |
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2096 New functions. |
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2097 * 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
|
2098 |
7614
52f90c7adac6
Avoid infinite loop in circshift for infinite matrices
David Bateman <dbateman@free.fr>
parents:
7612
diff
changeset
|
2099 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
|
2100 |
7618
3209a584e1ac
Further type preservation tests and fix of diag for cell arrays
David Bateman <dbateman@free.fr>
parents:
7617
diff
changeset
|
2101 * 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
|
2102 |
7617 | 2103 * miscellaneous/cast.m: Also allow cast to "char". |
2104 | |
7615
25eacc0c2706
Ensure k is an integer scalar in rotdim
David Bateman <dbateman@free.fr>
parents:
7614
diff
changeset
|
2105 * 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
|
2106 |
7614
52f90c7adac6
Avoid infinite loop in circshift for infinite matrices
David Bateman <dbateman@free.fr>
parents:
7612
diff
changeset
|
2107 * 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
|
2108 |
7612
c1702f963a5e
error check for subspace.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7611
diff
changeset
|
2109 2008-03-20 Jaroslav Hajek <highegg@localhost.localdomain> |
c1702f963a5e
error check for subspace.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7611
diff
changeset
|
2110 |
7616
fb4fa07bc364
more checks for subspace
Jaroslav Hajek <highegg@gmail.com>
parents:
7615
diff
changeset
|
2111 * linear-algebra/subspace.m: Check number of arguments, number |
fb4fa07bc364
more checks for subspace
Jaroslav Hajek <highegg@gmail.com>
parents:
7615
diff
changeset
|
2112 of dimensions of arguments and matching dimensions. |
7612
c1702f963a5e
error check for subspace.m
Jaroslav Hajek <highegg@gmail.com>
parents:
7611
diff
changeset
|
2113 |
7611
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
2114 2008-03-19 Jaroslav Hajek <highegg@gmail.com> |
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
2115 |
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
2116 * linear-algebra/subspace.m: New function. |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2117 * linear-algebra/subspace.m: New function. |
7611
4f903c303c3c
implement subspace function
Jaroslav Hajek <highegg@gmail.com>
parents:
7610
diff
changeset
|
2118 |
7610 | 2119 2008-03-19 Emil Lucretiu <emil@la.mine.nu> |
2120 | |
2121 * signal/sinetone.m: Ensure integral number of samples. | |
2122 | |
7608
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7606
diff
changeset
|
2123 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
|
2124 |
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7606
diff
changeset
|
2125 * 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
|
2126 |
7606
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
2127 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
|
2128 |
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
2129 * 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
|
2130 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2131 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
|
2132 |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
2133 * statistics/distributions/exppdf.m, |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
2134 statistics/distributions/expcdf.m, |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
2135 statistics/distributions/expinv.m, |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
2136 statistics/distributions/exprnd.m: Doc fix. |
90c9038170bf
doc fix for exp distribution functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7603
diff
changeset
|
2137 |
7603
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
2138 2008-03-19 David Bateman <dbateman@free.fr> |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
2139 |
7606
704b7a1098d0
Fix for mode.m NDArrays and row vectors
David Bateman <dbateman@free.fr>
parents:
7604
diff
changeset
|
2140 * 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
|
2141 |
7603
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
2142 * plot/__scatter__.m: Modify for change of markersize in |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
2143 __go_draw_axes__.m and for compatibility. |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
2144 * 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
|
2145 twice. |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
2146 * plot/scatter3.m: Doc fix. |
689652eb95d1
fix for scatter markersize
David Bateman <dbateman@free.fr>
parents:
7601
diff
changeset
|
2147 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2148 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
|
2149 |
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7593
diff
changeset
|
2150 * 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
|
2151 |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2152 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
|
2153 |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2154 * plot/__go_draw_axes__.m: Use correct symbol codes. |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2155 |
7592 | 2156 2008-03-14 Kai Habel <kai.habel@gmx.de> |
2157 | |
2158 * plot/__go_draw_axes__.m: Expicitly set gnuplot user | |
2159 style to default to avoid wrong mesh color in some cases. | |
2160 | |
7585
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
2161 2008-03-12 David Bateman <dbateman@free.fr> |
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
2162 |
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
2163 * geometry/griddata3.m: Use griddatan and not griddata |
522433b05f45
Fix griddata3 and add test code
David Bateman <dbateman@free.fr>
parents:
7583
diff
changeset
|
2164 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
|
2165 |
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
|
2166 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
|
2167 |
1d7c23e288d7
__go_draw_axes__: use strcmpi for text properties; use get for hidden properties
John W. Eaton <jwe@octave.org>
parents:
7582
diff
changeset
|
2168 * 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
|
2169 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
|
2170 |
7592 | 2171 * io/csread.m, io/csvwrite.m, io/dlmwrite.m: Style fixes. |
2172 | |
7582 | 2173 2008-03-11 Kai Habel <kai.habel@gmx.de> |
2174 | |
2175 * plot/__go_draw_axes__.m: Plot surfaces in front of axes. | |
2176 Allow plotting of uniform colored mesh plots with and | |
2177 w/o hidden line removal. | |
2178 | |
2179 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
|
2180 |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7570
diff
changeset
|
2181 * 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
|
2182 octave-forge. |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7570
diff
changeset
|
2183 * 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
|
2184 |
7569 | 2185 2008-03-07 John W. Eaton <jwe@octave.org> |
2186 | |
7570
8bf1bcb0ad8f
set axes layer property to "top"
John W. Eaton <jwe@octave.org>
parents:
7569
diff
changeset
|
2187 * 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
|
2188 |
7569 | 2189 * plot/__go_draw_axes__.m: Handle tickdir property. |
2190 | |
7561
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
2191 2008-03-06 John W. Eaton <jwe@octave.org> |
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
2192 |
7566
b3acdf1c41a5
hist: avoid temps; allow matrix args when number of bins > 30
John W. Eaton <jwe@octave.org>
parents:
7565
diff
changeset
|
2193 * 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
|
2194 Allow matrix arguments when number of bins > 30. |
7568 | 2195 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
|
2196 |
7565
1e6443ff960f
handle axes linewidth property
John W. Eaton <jwe@octave.org>
parents:
7564
diff
changeset
|
2197 * plot/ChangeLog: Handle axes linewidth property. |
1e6443ff960f
handle axes linewidth property
John W. Eaton <jwe@octave.org>
parents:
7564
diff
changeset
|
2198 |
7564
90536e155fde
adjust markersize by a factor of 1/6
John W. Eaton <jwe@octave.org>
parents:
7561
diff
changeset
|
2199 * 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
|
2200 |
7561
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
2201 * general/interpn.m: New test. |
a938cd7869b2
__lin_interpn__.cc: handle decreasing coordinate values
Alexander Barth
parents:
7558
diff
changeset
|
2202 |
7558
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
2203 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
|
2204 |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
2205 * 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
|
2206 |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
2207 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
|
2208 |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
2209 * 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
|
2210 leading zeros. |
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
2211 |
7555
df583cd2f21e
print.m: fix oops in applying last change
John W. Eaton <jwe@octave.org>
parents:
7551
diff
changeset
|
2212 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
|
2213 |
df583cd2f21e
print.m: fix oops in applying last change
John W. Eaton <jwe@octave.org>
parents:
7551
diff
changeset
|
2214 * 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
|
2215 |
7551 | 2216 2008-03-04 Bill Denney <bill@denney.ws> |
2217 | |
7557 | 2218 * plot/allchild.m, plot/findall.m: New functions. |
2219 * plot/Makefile.in (SOURCES): Add them to the list. | |
2220 | |
7551 | 2221 * geometry/rectint.m: New function. |
7557 | 2222 * geometry/Makefile.in (SOURCES): Add it to the list. |
7551 | 2223 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2224 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
|
2225 |
9cbf1e2011a3
pkg.m: adapt to changes in isspace for cell arrays of strings.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7547
diff
changeset
|
2226 * 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
|
2227 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
|
2228 |
7558
690c91f741b8
Apply a scaling factor to leading zero removal in roots.m
Sebastien Loisel
parents:
7557
diff
changeset
|
2229 2008-03-04 Ben Abbott <bpabbott@mac.com> |
7547 | 2230 |
2231 * polynomial/polyfit.m: Modified tests to respect a relative tolerance. | |
2232 | |
7550
bffb1e2ab732
print.m: Figure handle as argument.
Ben Abbott <bpabbott@mac.com>
parents:
7548
diff
changeset
|
2233 * 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
|
2234 |
7543
b84c5cbc0812
print.m: handle gif and jpg devices
John W. Eaton <jwe@octave.org>
parents:
7542
diff
changeset
|
2235 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
|
2236 |
b84c5cbc0812
print.m: handle gif and jpg devices
John W. Eaton <jwe@octave.org>
parents:
7542
diff
changeset
|
2237 * 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
|
2238 |
7542
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
2239 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
|
2240 |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
2241 * 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
|
2242 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
|
2243 |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
2244 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
|
2245 |
b1ff001022af
__go_draw_axes__: eliminate repeated code with get_old_gnuplot_color subfunction
John W. Eaton <jwe@octave.org>
parents:
7540
diff
changeset
|
2246 * 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
|
2247 "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
|
2248 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2249 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
|
2250 |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
2251 * 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
|
2252 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
|
2253 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
|
2254 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
|
2255 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
|
2256 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
|
2257 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
|
2258 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
|
2259 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
|
2260 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
|
2261 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
|
2262 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
|
2263 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
|
2264 |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
2265 * 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
|
2266 |
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
2267 * 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
|
2268 |
7530
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7525
diff
changeset
|
2269 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
|
2270 |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7525
diff
changeset
|
2271 * strings/isstrprop.m: New file. |
bb0f2353cff5
new cell array ctype mappers
John W. Eaton <jwe@octave.org>
parents:
7525
diff
changeset
|
2272 |
7525 | 2273 2008-02-25 Ryan Hinton <rwh4s@virginia.edu> |
2274 | |
2275 * miscellaneous/unpack.m: Use "-f -" args for tar. | |
2276 | |
7522
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
2277 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
|
2278 |
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
2279 * 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
|
2280 From Dave Hawthorne <davehawthorne@ieee.org>. |
8a6965a01176
log2: ensure F strictly less than 1
John W. Eaton <jwe@octave.org>
parents:
7518
diff
changeset
|
2281 |
7518 | 2282 2008-02-22 Ben Abbott <bpabbott@mac.com> |
2283 | |
2284 * specfun/legendre.m: Doc fix. | |
2285 | |
7515
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
2286 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
|
2287 |
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
2288 * 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
|
2289 spdiag. |
f3c00dc0912b
Eliminate the rest of the dispatched sparse functions
David Bateman <dbateman@free.fr>
parents:
7514
diff
changeset
|
2290 |
7513
05eb3486f650
__stepimp__: don't call subplot for single plot
John W. Eaton <jwe@octave.org>
parents:
7511
diff
changeset
|
2291 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
|
2292 |
7514
4f6a73fd8df9
fullfile: improve handling of args ending with filesep
John W. Eaton <jwe@octave.org>
parents:
7513
diff
changeset
|
2293 * 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
|
2294 args ending with filesep. |
4f6a73fd8df9
fullfile: improve handling of args ending with filesep
John W. Eaton <jwe@octave.org>
parents:
7513
diff
changeset
|
2295 |
7513
05eb3486f650
__stepimp__: don't call subplot for single plot
John W. Eaton <jwe@octave.org>
parents:
7511
diff
changeset
|
2296 * 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
|
2297 |
7510
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
2298 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
|
2299 |
7511
f028e7aa77a7
imshow.m: use axis ("image")
John W. Eaton <jwe@octave.org>
parents:
7510
diff
changeset
|
2300 * image/imshow.m: Call axis ("image"). |
f028e7aa77a7
imshow.m: use axis ("image")
John W. Eaton <jwe@octave.org>
parents:
7510
diff
changeset
|
2301 From Michael G. Ross <mgross@MIT.EDU>. |
f028e7aa77a7
imshow.m: use axis ("image")
John W. Eaton <jwe@octave.org>
parents:
7510
diff
changeset
|
2302 |
7510
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
2303 * 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
|
2304 line objects. |
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
2305 * 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
|
2306 errorbar plots. |
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7507
diff
changeset
|
2307 |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2308 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
|
2309 |
bc6573d2fa40
legendre.m: Added normalization and improved stability.
Ben Abbott <bpabbott@mac.com>
parents:
7505
diff
changeset
|
2310 * 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
|
2311 and improve stability for higher orders. |
bc6573d2fa40
legendre.m: Added normalization and improved stability.
Ben Abbott <bpabbott@mac.com>
parents:
7505
diff
changeset
|
2312 |
7504
ddcf233d765b
detect cellstr args in strcat
John W. Eaton <jwe@octave.org>
parents:
7502
diff
changeset
|
2313 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
|
2314 |
ddcf233d765b
detect cellstr args in strcat
John W. Eaton <jwe@octave.org>
parents:
7502
diff
changeset
|
2315 * strings/strcat.m: Detect cellstr args. |
ddcf233d765b
detect cellstr args in strcat
John W. Eaton <jwe@octave.org>
parents:
7502
diff
changeset
|
2316 |
7505
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
2317 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
|
2318 |
f5005d9510f4
Remove dispatched sparse functions and treat in the generic versions of the functions
David Bateman <dbateman@free.fr>
parents:
7504
diff
changeset
|
2319 * 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
|
2320 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
|
2321 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
|
2322 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
|
2323 |
7499
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
2324 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
|
2325 |
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
|
2326 * 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
|
2327 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
|
2328 |
7501 | 2329 * polynomial/polyfit.m: Use QR decomposition. Handle |
2330 normalization option. | |
2331 * polynomial/polyval.m: Normalize dependent variable. Optionally | |
2332 generate 50% prediction intervals. | |
2333 | |
7499
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
2334 * 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
|
2335 output. Improve consistency with Matlab. |
94d0cdd60dda
Added pkg version info and matlab compatibility.
Ben Abbott <bpabbott@mac.com>
parents:
7498
diff
changeset
|
2336 |
7498 | 2337 2008-02-19 John W. Eaton <jwe@octave.org> |
2338 | |
2339 * pkg/pkg.m: Style fixes. | |
2340 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2341 2008-02-19 Carlo de Falco <carlo.defalco@gmail.com> |
7497 | 2342 |
2343 * pkg/pkg.m: Handle 'describe' command. | |
2344 (parse_pkg_idx, print_package_description): New subfunctions. | |
2345 | |
7493 | 2346 2008-02-19 Bill Denney <bill@denney.ws> |
2347 | |
2348 * time/datestr.m: Avoid confusion for datenum vectors that are 6 | |
2349 elements wide. | |
2350 | |
7494
bd2bd04e68ca
Treat integer types for mod/rem correctly
David Bateman <dbateman@free.fr>
parents:
7493
diff
changeset
|
2351 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
|
2352 |
bd2bd04e68ca
Treat integer types for mod/rem correctly
David Bateman <dbateman@free.fr>
parents:
7493
diff
changeset
|
2353 * 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
|
2354 |
7485 | 2355 2008-02-15 Timo Lindfors <timo.lindfors@iki.fi> |
2356 | |
2357 * statistics/tests/kruskal_wallis_test.m: Handle ties. | |
2358 * general/runlength.m: New function from Paul Kienzle. | |
2359 | |
7484 | 2360 2008-02-15 Rolf Fabian <r.fabian@jacobs-university.de> |
2361 | |
2362 * linear-algebra/cond.m: New optional second argument to | |
2363 specify 1-norm, inf-norm, or frobenius-norm. | |
2364 | |
7475 | 2365 2008-02-12 Kostas Poulios <poulios.konstantinos@googlemail.com> |
2366 | |
2367 * plot/__quiver__.m: make arrow head be in z-plane of the arrow | |
2368 body. Allow the linespec to specify the arrow color. | |
2369 | |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
2370 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
|
2371 |
7474 | 2372 * miscellaneous/cast.m: Also treat the logical type. |
2373 | |
7472
2d8315dcd8d2
Fix colorbar with contours
David Bateman <dbateman@free.fr>
parents:
7471
diff
changeset
|
2374 * 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
|
2375 contour plots. |
2d8315dcd8d2
Fix colorbar with contours
David Bateman <dbateman@free.fr>
parents:
7471
diff
changeset
|
2376 |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
2377 * 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
|
2378 the cbrange. |
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
2379 * 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
|
2380 * 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
|
2381 |
7461
da8e4aa06134
limit data read to data chunk in wavread.m
John W. Eaton <jwe@octave.org>
parents:
7436
diff
changeset
|
2382 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
|
2383 |
da8e4aa06134
limit data read to data chunk in wavread.m
John W. Eaton <jwe@octave.org>
parents:
7436
diff
changeset
|
2384 * 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
|
2385 |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
2386 2008-02-08 David Bateman <dbateman@free.fr> |
7462
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
2387 |
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
2388 * plot/__contour__.m: Respect the graphic handle options that are |
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
2389 passed. |
dfcaf7ed48e3
Allow linewidth to be specified for contours
David Bateman
parents:
7461
diff
changeset
|
2390 * 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
|
2391 |
7436 | 2392 2008-02-01 Dave Goel <deego3@gmail.com> |
2393 | |
2394 * signal/arch_rnd.m: Correctly index E and Y vectors. | |
2395 | |
7434 | 2396 2008-02-01 Bill Denney <bill@denney.ws> |
2397 | |
2398 * time/weekday.m: Allow vector inputs and speed up. | |
2399 * time/eomday.m: Return column vector for column vector inputs. | |
2400 | |
7429 | 2401 2008-01-30 John W. Eaton <jwe@octave.org> |
2402 | |
7434 | 2403 * miscellaneous/edit.m: Use "## Created: DATE" instead of "initial |
2404 revision". | |
2405 | |
7431 | 2406 * plot/Makefile.in (SOURCES): Include __plt2sv__.m and |
2407 __plt2vs__.m in the list. | |
2408 | |
7430 | 2409 * miscellaneous/tempdir.m: Append filesep to name for |
2410 compatibility. Warn if not a directory or directory does not | |
2411 exist. | |
2412 | |
7429 | 2413 * strings/deblank.m: Improve compatibility. |
2414 | |
7428 | 2415 2008-01-29 John W. Eaton <jwe@octave.org> |
2416 | |
2417 * strings/str2double.m: Delete unused variable FLAG_OCTAVE. | |
2418 | |
2419 2008-01-28 Michael Goffioul <michael.goffioul@gmail.com> | |
7425 | 2420 |
2421 * plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: | |
2422 Return the label handle, not the current axis handle. | |
2423 | |
7421 | 2424 2008-01-25 Alexander Barth <barth.alexander@gmail.com> |
2425 | |
2426 * general/interpn.m: Compatibility fix. Don't ndgrid vector | |
2427 abscissa. | |
2428 | |
2429 2008-01-25 David Bateman <dbateman@free.fr> | |
2430 | |
7423 | 2431 * general/__splinen__.m: Treat mixed orientation vectors. |
7421 | 2432 * plot/__scatter__.m: Remove NaN values from data. |
2433 * plot/__patch__.m: Vectorize treatment of trailing NaN values. | |
2434 | |
7418 | 2435 2008-01-25 Thomas Weber <thomas.weber.mail@gmail.com> |
2436 | |
2437 * linear-algebra/trace.m: Test cases for non 2-d args. | |
2438 | |
2439 2008-01-25 James Packer <james.packer@wadh.ox.ac.uk> | |
2440 | |
2441 * geometry/griddata3.m: Call griddata, not gridata. | |
2442 | |
7415 | 2443 2008-01-24 Schloegl Alois <alois.schloegl@tugraz.at> |
2444 | |
2445 * linear-algebra/trace.m: Require 2-d args. Handle vectors properly. | |
2446 | |
7411 | 2447 2008-01-22 Thomas Weber <thomas.weber.mail@gmail.com> |
2448 | |
2449 * linear-algebra/cond.m, linear-algebra/trace.m: | |
2450 Move tests here from test/test_linalg.m. | |
2451 | |
2452 * general/diff.m, general/fliplr.m, general/flipud.m, | |
2453 general/logspace.m, general/rot90.m, general/shift.m, general/tril.m, | |
2454 general/triu.m, linear-algebra/vec.m, linear-algebra/vech.m, | |
2455 special-matrix/hankel.m, special-matrix/hilb.m, | |
2456 special-matrix/invhilb.m, special-matrix/sylvester_matrix.m, | |
2457 special-matrix/toeplitz.m, special-matrix/vander.m: | |
2458 Move tests here from test/test_matrix.m. | |
2459 | |
2460 * general/isscalar.m, general/issquare.m, general/isvector.m: | |
2461 Move tests here from test/test_number.m. | |
2462 | |
2463 * deprecated/polyinteg.m, polynomial/compan.m, polynomial/conv.m, | |
2464 polynomial/deconv.m, polynomial/poly.m, polynomial/polyderiv.m, | |
2465 polynomial/polyfit.m, polynomial/polyreduce.m, polynomial/polyval.m, | |
2466 polynomial/polyvalm.m, polynomial/roots.m: | |
2467 Move tests here from test/test_poly.m. | |
2468 | |
2469 * signal/unwrap.m: | |
2470 Move tests here from test/test_signal.m. | |
2471 | |
2472 * statistics/base/corrcoef.m, statistics/base/cov.m, | |
2473 statistics/base/kurtosis.m, statistics/base/mahalanobis.m, | |
2474 statistics/base/mean.m, statistics/base/median.m, | |
2475 statistics/base/skewness.m, statistics/base/std.m: | |
2476 Move tests here from test/test_stats.m. | |
2477 | |
2478 * general/int2str.m, general/num2str.m, strings/bin2dec.m, | |
2479 strings/blanks.m, strings/deblank.m, strings/dec2bin.m, | |
2480 strings/dec2hex.m, strings/findstr.m, strings/hex2dec.m, | |
2481 strings/index.m, strings/rindex.m, strings/split.m, strings/str2mat.m, | |
2482 strings/str2num.m, strings/strcat.m, strings/strrep.m, | |
2483 strings/substr.m: | |
2484 Move tests here from test/test_string.m. | |
2485 | |
2486 * miscellaneous/computer.m, miscellaneous/ls.m, | |
2487 miscellaneous/version.m, time/asctime.m, time/clock.m, time/ctime.m, | |
2488 time/date.m, time/etime.m, time/is_leap_year.m: | |
2489 Move tests here from test/test_system.m. | |
2490 | |
7410 | 2491 2008-01-22 Schloegl Alois <alois.schloegl@tugraz.at> |
2492 | |
2493 * specfun/erfinv.m: Replace z_old and z_new by a single variable z. | |
2494 Simplify initial checks on argument values. | |
2495 | |
7408 | 2496 2008-01-22 Michael Goffioul <michael.goffioul@gmail.com> |
2497 | |
2498 * plot/gnuplot_drawnow.m: New function corresponding to the | |
2499 implementation of the gnuplot-based graphics backend (derived from | |
2500 drawnow.m). | |
2501 * plot/drawnow.m: Deleted (converted to C++). | |
2502 | |
7401 | 2503 2008-01-15 Rolf Fabian <Rolf.Fabian@gmx.de> |
2504 | |
2505 * linear-algebra/__norm__.m: Only scale if inf norm is finite. | |
2506 New tests. | |
2507 | |
7399 | 2508 2008-01-18 John W. Eaton <jwe@octave.org> |
2509 | |
2510 * optimization/sqp.m: End each function with endfunction. | |
2511 | |
7398 | 2512 2008-01-18 Ben Abbott <bpabbott@mac.com> |
2513 | |
2514 * polynomial/residue.m: For each group of pole multiplicity, set | |
2515 the poles of the group to the value of the group's average. | |
2516 | |
7396 | 2517 2008-01-17 Tetsuro KURITA <tkurita@mac.com> |
2518 | |
2519 * plot/print.m: Handle PDF output. | |
2520 * plot/drawnow.m: Add "PDF" in a list of enhanced_terminals. | |
2521 | |
7392 | 2522 2008-01-17 John W. Eaton <jwe@octave.org> |
2523 | |
7393 | 2524 * path/savepath.m: Print newline before initial comment line. |
2525 Double up single quote characters. | |
2526 * path/__extractpath__.m: Return just the path as a string. | |
2527 Undo single quote character doubling. | |
2528 | |
2529 * path/pathdef.m: Avoid eval. Simplify. | |
2530 | |
7392 | 2531 * path/pathdef.m: Use fullfile instead of concatenating with filesep. |
2532 * path/__extractpath__.m, path/savepath.m: Use unwind_protect to | |
2533 avoid possible file descriptor leak. | |
2534 | |
2535 2008-01-17 Ben Abbott <bpabbott@mac.com> | |
2536 | |
2537 * path/savepath.m: Warn if modified file is not explicitly specified. | |
2538 * startup/main-rcfile: Call atexit ("__finish__"). | |
2539 | |
7388 | 2540 2008-01-16 John W. Eaton <jwe@octave.org> |
2541 | |
7390 | 2542 * plot/__go_draw_axes__.m (__do_enhanced_option__): New subfunction. |
2543 Use it to disable enhanced mode for individual labels and titles. | |
2544 | |
7392 | 2545 * startup/Makefile.in (SOURCES): Add __finish__.m to the list. |
7388 | 2546 (install install-strip, uninstall): Handle function files. |
2547 | |
2548 2008-01-16 Ben Abbott <bpabbott@mac.com> | |
2549 | |
7392 | 2550 * startup/__finish__.m: New file. |
2551 * path/__extractpath__.m, path/matlabroot.m, | |
2552 path/pathdef.m: New files. | |
7388 | 2553 * path/Makefile.in (SOURCES): Add them to the list. |
2554 | |
7385 | 2555 2008-01-15 Thomas Weber <thomas.weber.mail@gmail.com> |
2556 | |
7387 | 2557 * special-matrix/vander.m: Vectorize. New test. |
2558 | |
7385 | 2559 * elfun/acot.m, elfun/acoth.m, elfun/acsc.m, elfun/acsch.m, |
2560 elfun/asec.m, elfun/asech.m, elfun/cot.m, elfun/coth.m, | |
2561 elfun/csc.m,elfun/csch.m, elfun/lcm.m, elfun/sec.m, elfun/sech.m, | |
2562 general/rem.m, miscellaneous/bincoeff.m, miscellaneous/xor.m, | |
2563 specfun/beta.m, specfun/log2.m, specfun/pow2.m: | |
2564 Move tests here from test/test_arith.m. | |
2565 | |
7382 | 2566 2008-01-15 John W. Eaton <jwe@octave.org> |
2567 | |
2568 * linear-algebra/__norm__.m: Use sum(abs(x),2), not sum(abs(x.')). | |
2569 | |
7379 | 2570 2008-01-15 Michael Goffioul <michael.goffioul@gmail.com> |
2571 | |
2572 * plot/drawnow.m, plot/__go_draw_figure__.m, plot/__go_draw_axes__.m: | |
2573 Call __get__ instead of get. | |
2574 | |
2575 2008-01-15 Ben Abbott <bpabbott@mac.com> | |
2576 | |
2577 * linear-algebra/__norm__.m: Avoid divide by zero error for | |
2578 Frobenius norm if matrix is all zeros. Use transpose instead of | |
2579 hermitian operator. | |
2580 | |
7376 | 2581 2008-01-14 Bill Denney <bill@denney.ws> |
2582 | |
2583 * plot/axis.m: Correctly handle "tight" and "image" options. | |
2584 | |
8149 | 2585 2008-01-14 S�ren Hauberg <hauberg@gmail.com> |
7375 | 2586 |
2587 * image/hsv2rgb.m, image/ntsc2rgb.m, image/rgb2hsv.m, | |
2588 image/rgb2ntsc.m: Also accept images as input. | |
2589 | |
2590 * image/gray2ind.m: Handle image type other than double. | |
2591 Improve error checking and documentation. | |
2592 | |
7371 | 2593 2008-01-14 John W. Eaton <jwe@octave.org> |
2594 | |
7372 | 2595 * plot/__go_draw_axes__.m (get_fontname_and_size): Use strcmpi |
2596 instead of calling tolower on first arg. Default font name is | |
2597 Helvetica, not helvetica. Don't downcase user-specified font name. | |
2598 (__maybe_munge_text__): Fix typo. | |
2599 | |
7371 | 2600 * optimization/sqp.m: Fix function definitions in test code. |
2601 | |
7361 | 2602 2008-01-12 John W. Eaton <jwe@octave.org> |
2603 | |
2604 * plot/gnuplot_binary.in: New file. | |
2605 * plot/gnuplot_binary.m: Delete. | |
2606 * plot/Makefile.in (SOURCES): Remove gnuplot_binary.m from the list. | |
2607 (SOURCES_IN, GEN_M): New macros. | |
2608 (DISTFILES): Include $(SOURCES_IN) in the list. | |
2609 (FCN_FILES): Include $(GEN_M) in the list. | |
2610 (all): Depend on $(GEN_M). | |
2611 ($(GEN_M): %.m : $(TOPDIR)/Makeconf): New pattern rule. | |
7362 | 2612 (distclean): Also remove $(GEN_M). |
7361 | 2613 |
2614 2008-01-11 John W. Eaton <jwe@octave.org> | |
2615 | |
2616 * optimization/sqp.m: New test from example in doc string. | |
2617 | |
7360 | 2618 2008-01-10 Ben Abbott <bpabbott@mac.com> |
2619 | |
2620 * polynomial/mpoles.m: Avoid cases where poles could be assigned | |
2621 to more than one multiplicity group. | |
2622 | |
7358 | 2623 2008-01-10 John W. Eaton <jwe@octave.org> |
2624 | |
2625 * plot/gnuplot_binary.m: New file. | |
2626 * plot/Makefile.in (SOURCES): Add it to the list. | |
2627 | |
7355 | 2628 2008-01-09 John W. Eaton <jwe@octave.org> |
2629 | |
2630 * plot/drawnow.m: Fail if filename includes a directory part that | |
2631 does not exist. | |
2632 | |
7352 | 2633 2008-01-07 John W. Eaton <jwe@octave.org> |
2634 | |
2635 * miscellaneous/copyfile.m, miscellaneous/movefile.m: | |
2636 Error if glob call fails to match any files. | |
2637 | |
7346 | 2638 2008-01-04 Thomas Treichl <Thomas.Treichl@gmx.net> |
2639 | |
2640 * strings/strtrim.m: Doc fix. | |
2641 | |
7345 | 2642 2008-01-04 Muthiah Annamalai <muthuspost@gmail.com> |
2643 | |
2644 * general/sub2ind.m, general/ind2sub.m: Doc fix. | |
2645 | |
8149 | 2646 2008-01-04 S�ren Hauberg <hauberg@gmail.com> |
7344 | 2647 |
2648 * set/create_set.m, set/union.m: Accept "rows" argument. | |
2649 | |
7341 | 2650 2008-01-02 John W. Eaton <jwe@octave.org> |
2651 | |
2652 * plot/print.m: Correctly handle pbm terminal. | |
2653 | |
7340 | 2654 2007-12-28 John W. Eaton <jwe@octave.org> |
2655 | |
2656 * miscellaneous/edit.m: Use strcat instead of fullfile to add file | |
2657 extensions. | |
2658 | |
7337 | 2659 2007-12-28 David Bateman <dbateman@free.fr> |
2660 | |
2661 * ezcontourf.m, ezcontour.m, ezmeshc.m, ezmesh.m, ezplot3.m, | |
2662 __ezplot__.m, ezpolar.m, ezsurfc.m, ezsurf.m: New functions. | |
2663 * Makefile.in (SOURCES): Add to the sources. | |
2664 | |
2665 2007-12-28 Kai Habel <kai.habel@gmx.de> | |
2666 | |
2667 * plot/pcolor.m: Swap 1st and 2nd argument in call to meshgrid. | |
2668 Remove unnecessary call of size function. | |
2669 | |
7334 | 2670 2007-12-21 John W. Eaton <jwe@octave.org> |
2671 | |
2672 Version 3.0.0 released. | |
2673 | |
8149 | 2674 2007-12-21 S�ren Hauberg <hauberg@gmail.com> |
7331 | 2675 |
2676 * image/imshow.m: Accept empty value for display_range. | |
2677 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2678 2007-12-20 Michael Goffioul <michael.goffioul@gmail.com> |
7329 | 2679 |
2680 * pkg/pkg.m: Add .lib as architecture-dependent suffix. | |
2681 | |
8149 | 2682 2007-12-19 S�ren Hauberg <hauberg@gmail.com> |
7328 | 2683 |
2684 * image/imshow.m: Store uint8 images as doubles. Handle default | |
2685 display ranges correctly. | |
2686 | |
7327 | 2687 2007-12-19 Alexander Barth <barth.alexander@gmail.com> |
2688 Peter A. Gustafson <petegus@umich.edu> | |
2689 | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7530
diff
changeset
|
2690 * plot/contourc.m: Allow usage of irregular spaced x, y data. |
7327 | 2691 |
7325 | 2692 2007-12-19 John W. Eaton <jwe@octave.org> |
2693 | |
2694 * miscellaneous/edit.m: New function. | |
2695 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
2696 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2697 2007-12-19 Michael Goffioul <michael.goffioul@gmail.com> |
7325 | 2698 |
2699 * plot/__bar__.m: Handle "basevalue" option. | |
2700 * plot/__bars__.m: New arg, base_value. | |
2701 | |
7321 | 2702 2007-12-17 David Bateman <dbateman@free.fr> |
2703 | |
2704 * plot/rose.m, plot/feather.m, plot/compass.m: New functions | |
2705 * plot/Makefiles (SOURCES): Add them to the sources | |
2706 * plot/polar.m: Set the x and y limits to the maximum polar | |
2707 radius. Set the axes to be square. | |
2708 * plot/__go_draw_axes__.m: Allow {x|y}axislocation to be "zero" | |
2709 and print axis at zero if this is used. | |
2710 | |
2711 * plot/__go_draw_axes__.m: Use "set pm3d explicit" so that | |
2712 contours can overlay pcolor plots. Priveldge no hidden line | |
2713 removal when there are multiple objects in the plot. | |
2714 | |
7320 | 2715 2007-12-17 Peter A. Gustafson <petegus@umich.edu> |
2716 | |
2717 * plot/__go_draw_axes__.m: Fix mirrored tics and borders for | |
2718 set (gca (), "[xy]axislocation", "{right|top}", "box", "off"). | |
2719 | |
7319 | 2720 2007-12-17 Ben Abbott <bpabbott@mac.com> |
2721 | |
2722 * miscellaneous/run.m: Replace script with f when looking for | |
2723 file to run. | |
2724 | |
7316 | 2725 2007-12-14 David Bateman <dbateman@free.fr> |
2726 | |
7317 | 2727 * plot/contour3.m, plot/__contour__.m: Handle linespec. |
2728 * plot/contour.m: Doc fix. | |
2729 * plot/__go_draw_axes__.m (case "patch"): Include "lt" in lt string. | |
2730 Include linetype in withclause. | |
2731 | |
7316 | 2732 * plot/__go_draw_axes__.m (__calc_dimensions__): New function. |
2733 Use it to determine dimensions. Consolidate all 3-d settings. | |
2734 | |
7315 | 2735 2007-12-13 John W. Eaton <jwe@octave.org> |
2736 | |
2737 * image/imshow.m: Turn axis visibility off. | |
2738 Don't scale true color images. | |
2739 * image/image.m: Set axis layer property to "top". | |
2740 | |
7307 | 2741 2007-12-12 John W. Eaton <jwe@octave.org> |
2742 | |
7313 | 2743 * image/loadimage.m: Avoid calling eval. Avoid calling exist. |
2744 | |
2745 * plot/pie.m: Avoid calling "exist". | |
2746 | |
7309 | 2747 * linear-algebra/condest.m: Use nargin instead of size(varargin,2). |
7312 | 2748 Condense argument processing logic. Allow 6 arguments. |
2749 Use issquare. Avoid calling "exist". | |
7309 | 2750 |
7307 | 2751 * plot/__go_draw_axes__.m: Handle the axes layer property. |
2752 | |
7305 | 2753 2007-12-12 David Bateman <dbateman@free.fr> |
2754 | |
2755 * plot/ellipsoid.m: Port from octave-forge, editing for style. | |
2756 * plot/Makefile.in (SOURCES): Add to the sources. | |
2757 | |
7290 | 2758 2007-12-11 John W. Eaton <jwe@octave.org> |
2759 | |
7298 | 2760 * plot/surf.m: Set xgrid, ygrid, and zgrid on here. |
2761 * plot/surface.m: Not here. | |
2762 | |
7297 | 2763 * plot/__go_draw_axes__.m: Always use "set grid front". Send a |
2764 subsequent "unset grid" if there is no grid. | |
2765 | |
7296 | 2766 * plot/__go_draw_axes__.m: Include "front" in "set label" options. |
2767 | |
7293 | 2768 * plot/surface.m: Don't set facecolor property in call to |
2769 __go_surface__. | |
2770 | |
7290 | 2771 * plot/__plt2vs__.m, plot/__plt2sv__.m: New functions. |
2772 * plot/__plt2__.m: Handle scalar-vector and vector-scalar cases. | |
2773 | |
7292 | 2774 2007-12-11 Kai Habel <kai.habel@gmx.de> |
2775 | |
7295 | 2776 * plot/__patch__.m: Fix typo. Improve argument checking, so that a |
2777 color string is not taken as z value. | |
2778 | |
7292 | 2779 * plot/slice.m: Remove unused variable, set xgrid, ygrid, and |
2780 zgrid to "on" and box to "off" for used axes. | |
2781 | |
2782 * plot/__go_draw_axes__.m, plot/plot3.m, plot/ribbon.m, | |
2783 plot/slice.m: Use size_equal(var1,var2,...) when possible. | |
2784 | |
7286 | 2785 2007-12-11 David Bateman <dbateman@free.fr> |
2786 | |
7288 | 2787 * miscelleaneous/fullfile.m: Ignore empty arguments. |
2788 | |
7287 | 2789 * sparse/spstats.m: Drop argument to Fsparse to force mutation. |
2790 * statistics/base/mode.m: Ditto. | |
2791 | |
7286 | 2792 * plot/__plt_get_axis_arg__.m: Ignore integer valued handles as |
2793 object handles are all now non integer. | |
2794 | |
7278 | 2795 2007-12-10 John W. Eaton <jwe@octave.org> |
2796 | |
7282 | 2797 * plot/sombrero.m, plot/peaks.m: Use surf instead of mesh. |
2798 | |
7281 | 2799 * general/issymmetric.m: Use ' instead of .' for compatibility |
2800 with previous versions of Octave. | |
2801 * general/ishermitian.m: Delete. | |
7285 | 2802 * general/Makefile.in (SOURCES): Remove ishermitian.m from the list. |
7281 | 2803 |
7280 | 2804 * plot/fplot.m: In N is not specified, increase initial number of |
2805 points from 3 and 5 to 5 and 8. | |
2806 | |
7279 | 2807 * signal/detrend.m: Move tests here from test/test_signal.m. |
2808 Loosen tolerance on first test from 10*eps to 20*eps. | |
2809 | |
7278 | 2810 * finance/rate.m: Don't request info from fsolve. |
2811 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2812 2007-12-10 Michael Goffioul <michael.goffioul@gmail.com> |
7277 | 2813 |
2814 * plot/__line__.m: Pass initial property/value pairs to __go_line__. | |
2815 * plot/surface.m: Pass initial property/value pairs to __go_surface__. | |
2816 | |
7276 | 2817 2007-12-10 David Bateman <dbateman@free.fr> |
2818 | |
2819 * image/image.m: Rewritten to allow trailing properties to be | |
2820 passed to underlying image object. | |
2821 * image/__img__.m: Pass additional arguments to __go_image__. | |
2822 * plot/__patch__.m: Don't set clim, rely on autoscaling. | |
2823 | |
7274 | 2824 2007-12-10 John W. Eaton <jwe@octave.org> |
2825 | |
2826 * plot/__go_draw_axes__.m: If we have a grid, send "set grid | |
2827 front" to gnuplot. | |
2828 | |
7271 | 2829 2007-12-10 David Bateman <dbateman@free.fr> |
2830 | |
7274 | 2831 * plot/__go_draw_axes__.m: Issue "set view map" for pcolor, and "set |
7271 | 2832 border front" from images. |
7274 | 2833 * plot/__go_draw_figure__.m: Issue "set autoscale fix" for gnuplot. |
2834 * plot/pcolor.m: Set axis "box" property. | |
2835 * plot/title.m, plot/xlabel.m, plot/ylabel.m, plot/xlabel.m: | |
2836 Mark as commands. | |
7271 | 2837 |
7269 | 2838 2007-12-07 David Bateman <dbateman@free.fr> |
2839 | |
2840 * plot/surf.m: Don't set facecolor property. | |
2841 | |
7265 | 2842 2007-12-06 John W. Eaton <jwe@octave.org> |
2843 | |
7269 | 2844 * plot/print.m: Pass mono to drawnow. |
2845 * plot/drawnow.m: New arg, mono. Pass it to __go_draw_figure__. | |
2846 * plot/__go_draw_figure__.m: New arg, mono. Pass it to __go_draw_axes. | |
2847 * plot/__go_draw_axes__.m: New arg, mono. If mono is true, | |
2848 disable color specifications. | |
2849 | |
7265 | 2850 * general/issymmetric.m: Move tests here from test/test_number.m |
2851 | |
2852 2007-12-06 Jason Riedy <ejr@cs.berkeley.edu> | |
2853 | |
2854 * general/issymmetric.m: To keep its argument sparse and the | |
2855 function quick, use the infinity norm rather than the 2-norm. | |
2856 Also measure the symmetric part rather than the Hermitian part. | |
2857 * general/ishermitian.m: New file. Measure the Hermitian part. | |
2858 * general/Makefile.in: Add ishermitian.m to SOURCES. | |
2859 | |
7248 | 2860 2007-12-04 John W. Eaton <jwe@octave.org> |
2861 | |
7257 | 2862 * plot/__go_draw_axes__.m: Omit "font \"NAME,SIZE\"" in gnuplot |
2863 text and label commands if font is "*". | |
2864 | |
7248 | 2865 * linear-algebra/krylov.m: Doc fixes. |
2866 From Marco Caliari <caliari@sci.univr.it>. | |
2867 | |
7250 | 2868 2007-12-04 Kai Habel <kai.habel@gmx.de> |
2869 | |
2870 * plot/shading.m: Use __plt_get_axis_arg__ for optional axes argument. | |
2871 Add "## PKG_ADD: mark_as_command axis" line. | |
2872 | |
7245 | 2873 2007-12-03 John W. Eaton <jwe@octave.org> |
2874 | |
2875 * contour.m, contour3.m, contourc.m, contourf.m, cylinder.m, | |
2876 fplot.m, plot3.m, plotyy.m, quiver3.m, scatter.m, scatter3.m, | |
2877 slice.m, sombrero.m, stairs.m, stem.m, stem3.m: | |
2878 Generate demos from examples. | |
2879 | |
7240 | 2880 2007-12-03 David Bateman <dbateman@free.fr> |
2881 | |
7243 | 2882 * testfun/test.m: Disable "testif" test block to avoid spurious |
2883 skipped test for "make check". Avoid printing variables for | |
2884 skipped tests. | |
2885 | |
7242 | 2886 * testfun/test.m: Add "testif" type to allow for conditional tests. |
2887 | |
7240 | 2888 * plot/plotyy.m: Use activepositionproperty property of axes |
2889 object. Set second axis color to "none". | |
2890 * plot/__go_draw_axes__.m: Respect the activepositionproperty | |
2891 property of the axis objects. | |
2892 | |
7239 | 2893 2007-12-03 Thomas Treichl <Thomas.Treichl@gmx.net> |
2894 | |
2895 * linear-algebra/condest.m: Loosen tolerance in test. | |
2896 | |
7236 | 2897 2007-12-02 John W. Eaton <jwe@octave.org> |
2898 | |
2899 * plot/__go_draw_axes__.m: Remove unnecessary call to | |
2900 get_data_limits. | |
2901 | |
7222 | 2902 2007-11-30 John W. Eaton <jwe@octave.org> |
2903 | |
2904 * plot/__go_draw_axes__.m: Don't compute data or axis limits. | |
2905 (get_data_limits, get_axis_limits): Delete. | |
2906 | |
7228 | 2907 2007-11-30 David Bateman <dbateman@free.fr> |
2908 | |
7235 | 2909 * plot/__scatter__.m: Avoid out of bounds varargin element access. |
2910 | |
7228 | 2911 * plot/__go_draw_axes__.m (do_tics_1): regexprep the cell array of |
2912 tick labels rather than one by one on the labels themselves. | |
2913 * plot/pareto.m: Bug in numerical labels fixed. Bug in search for | |
2914 95% crossing fixed. | |
2915 | |
7217 | 2916 2007-11-29 David Bateman <dbateman@free.fr> |
2917 | |
7220 | 2918 * plot/pareto.m: New file. |
2919 * plot/Makefile.in (SOURCES): Add it to the sources. | |
2920 * plot/__go_draw_axes__.m (do_tics1): Replace "%" with "%%" in tic | |
2921 marks to avoid gnuplot error about formating. More colorspec to | |
2922 after the tics. | |
2923 * plot/plotyy.m: More generic check for appropriate axis color. | |
2924 | |
7217 | 2925 * plot/__stem__.m: New file based on old stem.m expanded to treat |
2926 2- and 3-D. | |
2927 * plot/stem3.m: New function. | |
2928 * plot/Makefile.in (SOURCES): Add them to the sources. | |
2929 * plot/stem.m: Adapt to use __stem__. | |
2930 | |
7216 | 2931 2007-11-29 John W. Eaton <jwe@octave.org> |
2932 | |
2933 * plot/contour.m, plot/contour3.m, plot/fill.m, plot/patch.m, | |
2934 plot/surf.m, plot/surface.m: Don't return handle value unless | |
2935 requested. | |
2936 | |
2937 * plot/patch.m: Omit isnan check on handle returned from | |
2938 __plt_get_axis_arg__. | |
2939 | |
2940 * plot/__plt_get_axis_arg__.m: Don't fail if current figure exists | |
2941 but has no axes. | |
2942 | |
7215 | 2943 2007-11-28 David Bateman <dbateman@free.fr> |
2944 | |
2945 * __plt_get_axis_handle__.m: Also allow hggroup and return axes | |
2946 ancestor. If leading argument is logical set variable nogca to see | |
2947 if gca() should be called if there is no active handle found. | |
2948 * __bar__.m, caxis.m, scatter.m, contourf.m, __axes_limits__.m, | |
2949 fill.m, surf.m, meshz.m, axis.m, pie.m, contour.m, | |
2950 quiver.m, area.m, grid.m, cylinder.m, contour3.m, surface.m, | |
2951 patch.m, scatter3.m, plot.m, sphere.m, quiver3.m, plotyy.m, | |
2952 xlabel.m, ylabel.m, surfnorm.m, zlabel.m: Adapt to use | |
2953 __plt__get_axis_arg__ to find axis handle. | |
2954 * polar.m: Typo. | |
2955 | |
7213 | 2956 2007-11-28 John W. Eaton <jwe@octave.org> |
2957 | |
2958 * plot/__go_draw_axes__.m (get_data_limits): Delete unused arg TX. | |
2959 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
2960 2007-11-28 Michael Goffioul <michael.goffioul@gmail.com> |
7211 | 2961 |
2962 * plot/drawnow.m: Fix typo. | |
2963 | |
7206 | 2964 2007-11-27 David Bateman <dbateman@free.fr> |
2965 | |
7207 | 2966 * plot/errorbar.m, plot/loglog.m, plot/loglogerr.m, plot/polar.m, |
2967 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, | |
2968 plot/semilogyerr.m: Treat an axis handle as the first argument. | |
2969 | |
2970 * plot/meshz.m: New function. | |
2971 * plot/Makefile.in (SOURCES): Add it to the list. | |
2972 * plot/surface.m: Allow surface to accept an axis handle as the | |
2973 first argument. | |
2974 * plot/meshc.m: Extract z from the the surface object rather than | |
2975 varargin so that we can rely on code in surface to treat leading | |
2976 axis handles. | |
2977 | |
7206 | 2978 * plot/__go_draw_axes__.m: Add nomirror to "set ytics" and "set |
2979 y2tics" in the case of a plotyy plot. | |
2980 * plot/plotyy.m: ensure the position property is set correct for | |
2981 the second axis, by setting it after the plot itself. In the case | |
2982 of a plot that returns multiple handles, base the color selection | |
2983 on the first. | |
2984 | |
7204 | 2985 2007-11-27 Kai Habel <kai.habel@gmx.de> |
2986 | |
2987 * plot/__go_draw_axes__.m: Set quadrilateral color according to | |
2988 z-value of vertex 'c3'. | |
2989 | |
7203 | 2990 2007-11-27 John W. Eaton <jwe@octave.org> |
2991 | |
2992 * image/image.m: Allow nargin == 0 case to work again. | |
2993 | |
7202 | 2994 2007-11-27 David Bateman <dbateman@free.fr> |
2995 | |
2996 * plot/__go_draw_figure__.m: Force a multiplot mode with a | |
2997 colorbar, to ensure that the colorbar is on the canvas for png and | |
2998 postscipt outputs. | |
2999 | |
7189 | 3000 2007-11-26 David Bateman <dbateman@free.fr> |
3001 | |
7197 | 3002 * sparse/spstats.m, statistics/base/mode.m: More care with sparse |
3003 return values. | |
3004 | |
7194 | 3005 * plot/plotyy.m: New function |
3006 * plot/Makefile.in (SOURCES): Add it here. | |
3007 * plot/__go_draw_axes__.m: Force axis margins for plotyy. Set text | |
3008 color for {x|y|z}label and {x|y|z}tics. Also force the label of | |
3009 {x|y}label to respect the axis position. | |
3010 * plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: Accept an axis | |
3011 handle as the first argument. | |
3012 | |
7192 | 3013 * pkg/pkg.m (pkg:install): When loading the installed packages |
3014 index into installed_pkgs_lst and not descriptions.. | |
3015 | |
7189 | 3016 * plot/quiver3.m, plot/surfnorm.m, plot/__quiver__.m: New functions. |
3017 * plot/Makefile.in (SOURCES): Add them to the sources. | |
3018 * plot/quiver.m: Modify to use __quiver__.m. | |
3019 | |
3020 * plot/hist.m: Avoid saturation when the x values are in an | |
3021 inetger type. | |
3022 | |
3023 2007-11-26 Jason Riedy <ejr@cs.berkeley.edu> | |
3024 | |
3025 * linear-algebra/condest.m, linear-algebra/onenormest.m: New | |
3026 functions. | |
3027 * linear-algebra/Makefile.in (SOURCES): Add them to the sources. | |
3028 | |
3029 2007-11-26 David Bateman <dbateman@free.fr> | |
3030 | |
3031 * plot/__go_draw_axes__.m: Prevent the cbrange from being of zero | |
3032 extent. | |
3033 | |
3034 * plot/colorbar.m: New function. | |
3035 * plot/Makefile.in (SOURCES): Add it to the sources. | |
3036 * plot/__go_draw_axes__.m: Calculate the colorbar position, | |
3037 precalculate the clim, set pm3d except for mesh. | |
3038 * plot/__contour__.m: Don't scale the contours to clim, but rather | |
3039 save the real values so that colorbar corresponds to the contour | |
3040 levels. | |
3041 | |
3042 * plot/stem.m: Set marker color the same as the line color. Draw | |
3043 a single discontinous line object for the stems. | |
3044 | |
3045 * plot/sphere.m: New function ported from JHandles. | |
3046 * plot/Makefile.in (SOURCES): Add it to the sources. | |
3047 | |
3048 * plot/__go_draw_axes__.m: Pass the have_newer_gnuplot arg to | |
3049 __maybe_munge_text__. Use it to reforce fontname for gnuplot 4.0 | |
3050 to get enhanced mode to work correctly for the X11 terminal. | |
3051 | |
3052 * plot/imagesc.m, plot/image.m: Scale colormap to image and not | |
3053 the reverse. Allow an axes handle to be passed and/or returned. | |
3054 * plot/__go_draw_axes__.m: Autoscale colormap for images. | |
3055 | |
3056 * plot/__go_draw_axes__.m: Add depthorder flag to "set pm3d" to | |
3057 sort surface patches by their depth and not the order they are | |
3058 rendered in. | |
3059 | |
3060 * plot/__patch__.m: Set clim correctly. | |
3061 * plot__go_draw_axes__.m: Allow patch objects to have markers, and | |
3062 the marker color is determined by the cmap. | |
3063 * plot/scatter.m: New function to 2D scatter plots. | |
3064 * plot/scatter3.m: New function to 3D scatter plots. | |
3065 * plot/__scatter__.m: Support function for scatter plots | |
3066 * Makefile.in (SOURCES): Ad dnew functions here. | |
3067 | |
3068 * plot/drawnow.m (open_gnuplot_stream, init_gnuplot_stream): | |
3069 Return whether the terminal supports enhanced text or not. | |
3070 (drawnow:enhanced_term): New sub-function to determine if terminal | |
3071 supports enhanced mode. | |
3072 * plot/__go_draw_figure__.m: Accept enhanced flag and pass to | |
3073 __go_draw_axes__. | |
3074 * plot/__go_draw_axes__.m: Accept enhanced flag and munge text if | |
3075 needed to support the enhanced mode. | |
3076 * plot/print.m: Remove "enhanced" option as this is now treated in | |
3077 drawnow.m. | |
3078 | |
3079 | |
3080 * plot/caxis.m: New function to control the color axis limits. | |
3081 * plot/Makefile.in (SOURCES): Include it. | |
3082 * plot/axis.m: Allow the first argument to be an axes handle. | |
3083 * plot/__go_draw_axes__.m: Move the setting of the caxis, also | |
3084 autoscale caxis for patches. If any(isinf(clim)) don't set the | |
3085 caxis limits. | |
3086 | |
3087 * image/gmap40.m: New gnuplot 4.0 specific colormap fucntion. | |
3088 * image/Makefile.in (SOURCES): Include it. | |
3089 * plot/__bar__.h: Allow axis handles to be passed. Set the color | |
3090 of the bars for the colormap. | |
3091 * plot/bar.m, plot/barh.m: Document that axis handles can be | |
3092 passed. | |
3093 * plot/__contour.m: Avoid possible divide by zero error. | |
3094 * plot/contour.m: Missing semicolon. | |
3095 * plot/surface.m: Don't attempt to set additional arguments if | |
3096 there are none. | |
3097 * plot/Makefile.in (SOURCES): Include __bars__.m | |
3098 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
3099 2007-11-19 Michael Goffioul <michael.goffioul@gmail.com> |
7189 | 3100 |
3101 * plot/__bar__.m: put bar creation code into separate function | |
3102 to allow easy hook up from other graphic backends | |
3103 | |
3104 * plot/__bars__.m: new function containing bar creation code | |
3105 | |
7186 | 3106 2007-11-26 Alexander Barth <barth.alexander@gmail.com> |
3107 | |
3108 * general/accumarray.m: Correct dimension check. | |
3109 | |
7183 | 3110 2007-11-26 John W. Eaton <jwe@octave.org> |
3111 | |
3112 * polynomial/residue.m: Prepad along second dimension. | |
3113 From Doug Stewart <dastew@sympatico.ca>. | |
3114 | |
7181 | 3115 2007-11-26 Kai Habel <kai.habel@gmx.de> |
3116 | |
7183 | 3117 * plot/cylinder.m, plot/slice.m: New functions. |
3118 * plot/Makefile.in (SOURCES): Add them to the list. | |
7181 | 3119 |
7177 | 3120 2007-11-14 Michael Goffioul <michael.goffioul@gmail.com> |
3121 | |
3122 * plot/patch.m: Handle arg may also be hggroup object. | |
3123 Use ancestor to find parent axes object. | |
3124 | |
7175 | 3125 2007-11-14 David Bateman <dbateman@free.fr> |
3126 | |
3127 * plot/__contour__.m: Treat unclosed contours by adding NaN to | |
3128 flag to patch that it is not closed. Allow z to take string | |
3129 arguments and use it to flag that the contours are placed at the | |
3130 z level of the contour itself. | |
3131 * plot/__go_draw_axes__.m: Treat hidden line removal in patch | |
3132 objects as well. Let hidden removal take precedence in case of a | |
3133 conflict. | |
3134 * plot/surface.m: Allow surface to treat handles being passed or | |
3135 returned. Any additional arguments arr used to set the surface | |
3136 handle. | |
3137 * plot/contour3.m: New function | |
3138 * plot/Makefile.in (SOURCES): Add it to the sources. | |
3139 | |
7173 | 3140 2007-11-14 John W. Eaton <jwe@octave.org> |
3141 | |
3142 * specfun/bessel.m: Update doc string from | |
3143 src/DLD-FUNCTIONS/besselj.cc. | |
3144 | |
7170 | 3145 2007-11-12 David Bateman <dbateman@free.fr> |
3146 | |
3147 * plot/contour.m: Allow handles to be passed and returned. Split | |
3148 the countour function itself into __contour__.m to be shared with | |
3149 surfc and meshc. | |
3150 * plot/__contour__.m: New file | |
3151 * plot/Makefile.in (SOURCES): Add it to the sources. | |
3152 * plot/__go_draw_axes.m: For patch objects don't attempt to patch | |
3153 the face or edge if the facecolor or edge color are marked as | |
3154 "none". Allow the edgecolor to be determined by the cdata in the | |
3155 same manner as the facecolor. Fail if facecolor is not "none" and | |
3156 a 3-D plot is desired, rather than ignoring zdata. Make the | |
3157 storage of 3D/4D data consistent between line, surface and patch | |
3158 objects. | |
3159 * plot/meshc.m: Use new __contour__.m to plot the contours. | |
3160 * plot/surfc.m: Use new __contour__.m to plot the contours. | |
7168 | 3161 |
3162 * plot/__go_draw_axes__.m (get_fontname_and_size): | |
3163 Handle fontweight and fontangle properties. | |
3164 | |
7163 | 3165 2007-11-12 Kai Habel <kai.habel@gmx.de> |
3166 | |
3167 * plot/spinmap.m, plot/ribbon.m: New functions. | |
3168 * plot/Makefile.in (SOURCES): Add them to the list. | |
3169 | |
3170 2007-11-12 John W. Eaton <jwe@octave.org> | |
3171 | |
3172 * plot/__go_draw_axes__.m (get_fontname_and_size): New subfunction. | |
3173 Use it to avoid duplicated code. | |
3174 | |
7161 | 3175 2007-11-12 David Bateman <dbateman@free.fr> |
3176 | |
7162 | 3177 * plot/title.m: Fix return value for nargout > 0. |
3178 | |
3179 * plot/__go_draw_axes.m: Allow the font and fontsize to be | |
3180 specified for the title, xlabel, ylabel and text objects. | |
3181 | |
7161 | 3182 * plot/__go_draw_axes.m: Allow arbitrary colormaps with gnuplot |
3183 4.0 and surface plots. | |
3184 | |
7160 | 3185 2007-11-12 Michael Goffioul <michael.goffioul@gmail.com> |
3186 | |
3187 * plot/__patch__.m: Fix computation of faces when patch is defined | |
3188 with X/Y/Z data. | |
3189 | |
7146 | 3190 2007-11-09 John W. Eaton <jwe@octave.org> |
3191 | |
7152 | 3192 * plot/__go_draw_axes__.m: Correct test for have_data. |
7154 | 3193 Correct logic in setting palette data. |
7152 | 3194 |
7151 | 3195 * audio/wavread.m, control/base/__bodquist__.m, |
3196 control/base/dare.m, control/base/dlqr.m, control/hinf/h2norm.m, | |
3197 control/system/c2d.m, control/system/is_detectable.m, | |
3198 control/system/is_signal_list.m, control/system/is_stabilizable.m, | |
3199 control/system/tfout.m, general/isdefinite.m, | |
3200 linear-algebra/krylov.m, miscellaneous/compare_versions.m, | |
3201 optimization/glpk.m, path/savepath.m, plot/findobj.m, | |
3202 plot/shading.m, polynomial/mpoles.m, polynomial/polyint.m, | |
3203 signal/freqz.m, signal/hurst.m, sparse/spfun.m, sparse/spones.m, | |
3204 sparse/spstats.m, testfun/assert.m, testfun/fail.m, | |
3205 testfun/test.m: Use specific end keywords. | |
3206 | |
7146 | 3207 * plot/surfc.m, plot/meshc.m: Don't change view if hold is on. |
3208 | |
3209 2007-11-09 Kai Habel <kai.habel@gmx.de> | |
3210 | |
3211 * plot/mesh.m, plot/pcolor.m, plot/surf.m, plot/surface.m: | |
3212 Don't change view if hold is on. | |
3213 | |
7142 | 3214 2007-11-09 David Bateman <dbateman@free.fr> |
3215 | |
7149 | 3216 * plot/hidden.m: New function. |
3217 * plot/Makefile.in (SOURCES): Add it here. | |
3218 * plot/meshc.m, plot/mesh.m: Set facecolor to White for hidden | |
3219 line removal. | |
3220 * plot/__go_draw_axes__.m: If facecolor is white flag hidden line | |
3221 removal and if it is "none" don't do hidden line removal. | |
3222 | |
7148 | 3223 * plot/legend.m: Also allow labels for surface and patch types. |
3224 * plot/__bar__.m: Split into separate patch pbjects to allow | |
3225 setting of the legend. | |
3226 * plot/__go_draw_axes__.m: Set titlespec from keylabel for patch | |
3227 objects as well. | |
3228 | |
7146 | 3229 * plot/area.m, plot/__area__.m: New functions |
3230 * plot/Makefile.in (SOURCES): Add them to the list of files. | |
3231 | |
7142 | 3232 * plot/patch.m: Correctly handle case of axis handle as first arg. |
3233 | |
7144 | 3234 2007-11-09 Joseph P. Skudlarek <Jskud@Jskud.com> |
3235 | |
3236 * sparse/spdiags.m: Tweak documentation entries to match other uses. | |
3237 | |
7131 | 3238 2007-11-08 John W. Eaton <jwe@octave.org> |
3239 | |
7133 | 3240 * control/base/dcgain.m, control/base/dre.m, |
3241 control/base/impulse.m, control/base/step.m, | |
3242 control/system/dmr2d.m, control/system/ord2.m, | |
3243 control/system/sys2ss.m, control/system/sysdimensions.m, | |
3244 control/system/sysgetsignals.m, control/system/sysout.m, | |
3245 control/system/tfout.m, control/system/ugain.m, | |
3246 control/system/zpout.m, control/util/strappend.m: | |
3247 Don't fail with usage message if nargout is too large. | |
3248 | |
7131 | 3249 * control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
3250 control/hinf/hinfnorm.m, control/hinf/hinfsyn.m, | |
3251 control/hinf/hinfsyn_chk.m, control/hinf/is_dgkf.m, | |
7134 | 3252 control/hinf/wgt1o.m, control/obsolete/dezero.m, |
3253 control/obsolete/dlqg.m, control/obsolete/minfo.m, | |
3254 control/obsolete/packsys.m, control/obsolete/qzval.m, | |
3255 control/obsolete/rotg.m, control/obsolete/series.m, | |
3256 control/obsolete/swapcols.m, control/obsolete/swaprows.m, | |
3257 control/obsolete/syschnames.m, control/obsolete/unpacksys.m, | |
7136 | 3258 control/system/__syschnamesl__.m, |
3259 control/system/__syscont_disc__.m, | |
3260 control/system/__sysdefioname__.m, control/system/__sysgroupn__.m, | |
3261 control/system/__tf2sysl__.m, control/system/__zp2ssg2__.m, | |
3262 control/system/abcddim.m, control/system/buildssic.m, | |
3263 control/system/c2d.m, control/system/cellidx.m, | |
3264 control/system/d2c.m, control/system/dmr2d.m, | |
3265 control/system/fir2sys.m, control/system/is_abcd.m, | |
3266 control/system/is_controllable.m, control/system/is_detectable.m, | |
3267 control/system/is_digital.m, control/system/is_observable.m, | |
3268 control/system/is_stabilizable.m, control/system/is_stable.m, | |
3269 control/system/jet707.m, control/system/listidx.m, | |
3270 control/system/parallel.m, control/system/ss.m, | |
3271 control/system/ss2sys.m, control/system/ss2zp.m, | |
3272 control/system/starp.m, control/system/sys2ss.m, | |
3273 control/system/sys2tf.m, control/system/sys2zp.m, | |
3274 control/system/sysadd.m, control/system/sysappend.m, | |
3275 control/system/sysconnect.m, control/system/syscont.m, | |
3276 control/system/sysdimensions.m, control/system/sysdisc.m, | |
7135 | 3277 control/system/sysdup.m, control/system/sysgetsignals.m, |
3278 control/system/sysgroup.m, control/system/sysmin.m, | |
7136 | 3279 control/system/sysmult.m, control/system/sysout.m, |
3280 control/system/sysprune.m, control/system/sysreorder.m, | |
7135 | 3281 control/system/sysscale.m, control/system/syssetsignals.m, |
7136 | 3282 control/system/syssub.m, control/system/sysupdate.m, |
3283 control/system/tf.m, control/system/tf2ss.m, | |
3284 control/system/tf2sys.m, control/system/tfout.m, | |
3285 control/system/zp.m, control/system/zp2ss.m, | |
3286 control/system/zp2sys.m, control/system/zp2tf.m, | |
3287 control/system/zpout.m, control/util/__outlist__.m, | |
3288 control/util/__zgpbal__.m, control/util/axis2dlim.m, | |
3289 control/util/prompt.m, control/util/sortcom.m, | |
3290 control/util/zgfmul.m, control/util/zgfslv.m, | |
3291 control/util/zginit.m, control/util/zgreduce.m, | |
3292 control/util/zgrownorm.m, control/util/zgscal.m: Style fixes. | |
7131 | 3293 |
7130 | 3294 2007-11-08 David Bateman <dbateman@free.fr> |
3295 | |
3296 * plot/quiver.m: Fix arrowheads. | |
3297 | |
7128 | 3298 2007-11-07 Ben Abbott <bpabbott@mac.com> |
3299 | |
3300 * set/ismember.m: Call cell_ismember to handle cellstr args. | |
7129 | 3301 Handle "rows" argument. New tests. |
7128 | 3302 (cell_ismember): New function. |
3303 | |
7127 | 3304 2007-11-07 John W. Eaton <jwe@octave.org> |
3305 | |
3306 * control/base/__bodquist__.m, control/base/__freqresp__.m, | |
3307 control/base/__stepimp__.m, control/base/are.m, | |
3308 control/base/ctrb.m, control/base/damp.m, control/base/dare.m, | |
3309 control/base/dcgain.m, control/base/dgram.m, control/base/dlqr.m, | |
3310 control/base/dre.m, control/base/impulse.m, control/base/lqe.m, | |
3311 control/base/lqg.m, control/base/lqr.m, control/base/lsim.m, | |
3312 control/base/ltifr.m, control/base/nichols.m, | |
3313 control/base/nyquist.m, control/base/obsv.m, control/base/place.m, | |
3314 control/base/rlocus.m, control/base/step.m, control/base/tzero.m: | |
3315 Style fixes. | |
3316 | |
7125 | 3317 2007-11-07 Muthiah Annamalai <muthuspost@gmail.com> |
3318 | |
3319 * control/base/bode_bounds.m, control/base/dgram.m, | |
3320 control/base/dlyap.m, control/base/freqchkw.m, | |
3321 control/base/gram.m, control/base/place.m, | |
3322 control/hinf/hinf_ctr.m, control/hinf/hinfsyn_chk.m, | |
3323 control/hinf/hinfsyn_ric.m, control/system/is_sample.m, | |
3324 control/system/is_signal_list.m, control/system/ss2tf.m, | |
3325 control/system/sys2fir.m, control/system/sysgettsam.m, | |
3326 control/system/sysgettype.m, control/system/sysreorder.m, | |
3327 control/system/tf2sys.m, control/system/zp2tf.m, | |
3328 control/util/axis2dlim.m, control/util/swap.m, | |
3329 control/util/zgfmul.m, control/util/zgfslv.m, | |
3330 control/util/zginit.m, control/util/zgreduce.m, | |
3331 control/util/zgrownorm.m, control/util/zgscal.m, | |
3332 control/util/zgsgiv.m, control/util/zgshsr.m, general/isa.m, | |
3333 geometry/inpolygon.m, linear-algebra/housh.m, | |
3334 miscellaneous/compare_versions.m, miscellaneous/inputname.m, | |
3335 miscellaneous/run.m, quaternion/qconj.m, | |
3336 quaternion/qcoordinate_plot.m, quaternion/qderiv.m, | |
3337 quaternion/qderivmat.m, quaternion/qinv.m, quaternion/qmult.m, | |
3338 quaternion/qtrans.m, quaternion/qtransvmat.m, signal/fractdiff.m, | |
3339 signal/freqz_plot.m, signal/periodogram.m, signal/rectangle_lw.m, | |
3340 signal/rectangle_sw.m, signal/sinc.m, signal/triangle_lw.m, | |
3341 signal/triangle_sw.m, signal/yulewalker.m, sparse/colperm.m, | |
3342 sparse/etreeplot.m, sparse/nonzeros.m, sparse/spalloc.m, | |
3343 sparse/spones.m, sparse/spy.m, specfun/isprime.m, | |
3344 statistics/distributions/empirical_cdf.m, | |
3345 statistics/distributions/empirical_inv.m, | |
3346 statistics/distributions/empirical_pdf.m, | |
3347 statistics/models/logistic_regression_derivatives.m, | |
3348 statistics/models/logistic_regression_likelihood.m: Check nargin. | |
3349 | |
7118 | 3350 2007-11-07 David Bateman <dbateman@free.fr> |
3351 | |
7120 | 3352 * general/gradient.m: Correctly convert deltax and deltay scalar |
3353 values are scalars to vectors. | |
3354 | |
7119 | 3355 * plot/__go_draw_axes__.m: Fix surfaces for gnuplot 4.0 and for |
3356 the meshc.m function. | |
3357 * plot/meshc.m: Also use the surface function. | |
3358 | |
7120 | 3359 * plot/meshc.m, plot/quiver.m, plot/surfc.m, : New files. |
7118 | 3360 * plot/Makefile.in (SOURCES): Add them to the list. |
3361 Also add pcolor.m, shading.m, surf.m, and surface.m to the list. | |
3362 | |
7117 | 3363 2007-11-07 Michael Zeising <michael@michaels-website.de> |
3364 | |
3365 * audio/wavwrite.m, audio/wavwrite.m: Correct sample scaling. | |
3366 | |
7115 | 3367 2007-11-07 John W. Eaton <jwe@octave.org> |
3368 | |
3369 * plot/__go_draw_axes__.m: Also set have_data to false if any of | |
3370 the data limits are infinite. | |
3371 (get_data_limits): Don't do anything if xdat or tx are empty. | |
3372 (get_axis_limits): Don't do anything if min_val or max_val are | |
3373 infinite. | |
3374 | |
7112 | 3375 2007-11-06 David Bateman <dbateman@free.fr> |
3376 | |
3377 * plot/hist.m: Pass any additional arguments to bar for | |
3378 treatment. Create a default x value that is always a vector. | |
3379 | |
7111 | 3380 2007-11-06 Thomas Treichl <Thomas.Treichl@gmx.net> |
3381 | |
3382 * pkg/pkg.m.m: Check for environment variables CC, CXX, AR, RANLIB | |
3383 when calling ./configure and add quotes to preserve spaces. | |
7109 | 3384 |
3385 2007-11-06 Kai Habel <kai.habel@gmx.de> | |
3386 | |
3387 * plot/pcolor.m, plot/shading.m, plot/surf.m, plot/surface.m: | |
3388 New files. | |
3389 * plot/mesh.m: Call surface to do the real work. | |
3390 * plot/__go_draw_axes__.m: Use pm3d mode to handle new surface | |
3391 properties. | |
3392 | |
3393 * image/colormap.m: Also return current colormap if nargout and | |
3394 nargin are both 0. | |
3395 | |
7106 | 3396 2007-11-05 Michael Goffioul <michael.goffioul@gmail.com> |
3397 | |
3398 * startup/inputrc: Delete key bindings starting with \340 code. | |
3399 | |
7112 | 3400 2007-11-05 David Bateman <dbateman@free.fr> |
7101 | 3401 |
3402 * linear-algebra/__norm__.m: Scale frobenius norm by infinity norm | |
3403 to avoid issues of over- and underflow. From Rolf Fabian | |
3404 <Rolf.Fabian@gmx.de>. | |
3405 | |
7097 | 3406 2007-11-02 Olli Saarela <Olli.Saarela@kcl.fi> |
3407 | |
3408 * time/asctime.m, general/structfun.m: Fix broken @examples in | |
3409 help texts. | |
3410 | |
7096 | 3411 2007-11-02 Kai Habel <kai.habel@gmx.de> |
3412 | |
3413 * plot/bar.m, plot/barh.m: Doc fix. | |
3414 | |
7094 | 3415 2007-10-31 John W. Eaton <jwe@octave.org> |
3416 | |
3417 * plot/__go_draw_axes__.m: Call undo_string_escapes on obj.keylabel. | |
3418 | |
7086 | 3419 2007-10-31 Michael goffioul <michael.goffioul@gmail.com> |
3420 | |
3421 * plot/subplot.m: Ignore legend objects when parsing existing axes | |
3422 objects and legend objects are implemented with a separate axes | |
3423 object. | |
3424 | |
7078 | 3425 2007-10-30 David Bateman <dbateman@free.fr> |
3426 | |
7081 | 3427 * control/base/DEMOcontrol.m: Doc fixes for small book format. |
3428 | |
7078 | 3429 * plot/__go_draw_axes__.m (do_linestyle_command): |
3430 Use point type 0 for ".". | |
3431 | |
7073 | 3432 2007-10-26 John W. Eaton <jwe@octave.org> |
3433 | |
7074 | 3434 * image/imshow.m: Improve compatibility. |
3435 * image/image.m: Return handle if nargou > 0. | |
3436 | |
7073 | 3437 * pkg/pkg.m: Delete PKG_ADD directive for autoloading packes. |
3438 | |
7069 | 3439 2007-10-25 John W. Eaton <jwe@octave.org> |
3440 | |
3441 * miscellaneous/compare_versions.m: Style fixes. | |
3442 | |
7060 | 3443 2007-10-24 John W. Eaton <jwe@octave.org> |
3444 | |
7061 | 3445 * image/saveimage.m: Use functional form of save instead of eval. |
3446 Use -text instead of -ascii. | |
3447 | |
7060 | 3448 * plot/__go_draw_axes__.m: Handle visible = "off" for axes objects. |
3449 | |
7054 | 3450 2007-10-23 Peter A. Gustafson <petegus@umich.edu> |
3451 | |
3452 * plot/legend.m: Also extract location string from varargin (lost | |
3453 when 2007-10-08 patch was applied). | |
3454 | |
7049 | 3455 2007-10-23 David Bateman <dbateman@free.fr> |
3456 | |
3457 * plot/xlim.m, plot/ylim.m, plot/zlim.m, plot/__axes_limits__.m, | |
3458 miscellaneous/what.m: New functions | |
3459 * plot/Makefile.in, miscellaneous/Makefile.in (SOURCES): Add new | |
3460 functions. | |
3461 | |
7045 | 3462 2007-10-22 David Bateman <dbateman@free.fr> |
3463 | |
3464 * miscellaneous/cputime.m, time/tic.m, time/toc.m: Delete. | |
3465 * miscellaneous/Makefile.in (SOURCES): remove cputim.m | |
3466 * time/Makefile.in (SOURCES): Remov tic.m and toc.m | |
3467 | |
7042 | 3468 2007-10-19 Kai Habel <kai.habel@gmx.de> |
3469 | |
3470 * plot/contourf.m: New function. | |
3471 * plot/Makefile.in (SOURCES): Add it to the list. | |
3472 | |
7040 | 3473 2007-10-19 John W. Eaton <jwe@octave.org> |
3474 | |
3475 * plot/subplot.m: Doc fix. | |
3476 | |
7039 | 3477 2007-10-19 David Bateman <dbateman@free.fr> |
3478 | |
7041 | 3479 * plot/__bar__.m, plot/fill.m: Call newplot as needed. |
7039 | 3480 |
7037 | 3481 2007-10-17 Carlo de Falco <kingcrimson@tiscali.it> |
3482 | |
3483 * plot/print.m: Handle -textspecial and -textnormal flags for fig | |
3484 output. | |
3485 | |
7031 | 3486 2007-10-15 S�ren Hauberg <hauberg@gmail.com> |
3487 | |
3488 * general/rat.m, sparse/pcg.m, sparse/pcr.m, optimization/sqp.m, | |
3489 statistics/models/logistic_regression.m, polynomial/polygcd.m, | |
3490 control/system/ss.m, signal/arch_rnd.m, control/system/ss2sys.m, | |
3491 control/system/syssetsignals.m, control/base/lqg.m, | |
3492 strings/str2double.m, control/system/sysscale.m, | |
3493 control/hinf/hinfdemo.m, general/cplxpair.m: | |
3494 Make help text fit on pages when using smallbook. | |
3495 | |
7028 | 3496 2007-10-15 David Bateman <dbateman@free.fr> |
3497 | |
7032 | 3498 * plot/print.m: Call drawnow before printing to ensure the plot is |
3499 on the screen. | |
3500 | |
7028 | 3501 * testfun/test.m: In error/warning blocks test for an error before |
3502 a warning to avoid unexpected failures. | |
3503 | |
7027 | 3504 2007-10-15 Kim Hansen i<kimhanse@gmail.com> |
3505 | |
3506 * testfun/assert.m: Correct documentation of absolution versus | |
3507 relative error tolerance and add tests. | |
3508 | |
7024 | 3509 2007-10-14 David Bateman <dbateman@free.fr> |
3510 | |
3511 * pkg/pkg.m (pkg:configure_make): Treat case of no files to install in | |
3512 src directory. | |
3513 * plot/Makefile.in (SOURCES): Add fill.m. | |
3514 | |
7020 | 3515 2007-10-13 David Bateman <dbateman@free.fr> |
3516 | |
3517 * plot/__patch__.m: Allow multiple patches to be defined and | |
3518 return a single patch object. Allow Faces/Vertices form of | |
3519 patch. Flag failure so the patch can call print_usage. | |
3520 * plot/patch.m: Update help string for Faces/Vertices | |
3521 call. Respect the fail flag returned by __patch__. Add demo code | |
3522 that tests the functionality of patch. | |
3523 * plot/__go_draw_axes__.m: Treat an array of patches in a single | |
3524 patch object. | |
3525 * plot/fill.m: New function. | |
3526 | |
7016 | 3527 2007-10-12 John W. Eaton <jwe@octave.org> |
3528 | |
3529 * Change copyright notices in all files that are part of Octave to | |
3530 GPLv3 or any later version. | |
3531 | |
7012 | 3532 2007-10-11 John W. Eaton <jwe@octave.org> |
3533 | |
3534 * plot/__go_draw_axes__.m (get_axis_limits): | |
3535 Return lim = [] if logscale and no positive values. | |
3536 (__go_draw_axes__): Skip plotting if computed axis limits are empty. | |
3537 Set initial min and min positive values to Inf, max values to -Inf. | |
3538 (get_data_limits): Correctly handle xminp when no positive values | |
3539 are found. | |
3540 | |
7011 | 3541 2007-10-11 Ben Abbott <bpabbott@mac.com> |
3542 | |
3543 * polynomial/residue.m: New optional input for pole multiplicity. | |
3544 Doc fix. Fix tests. | |
3545 | |
7010 | 3546 2007-10-11 Thomas Treichl <Thomas.Treichl@gmx.net> |
3547 | |
3548 * toplev.cc (Foctave_config_info): Add field "mac". | |
3549 | |
3550 * miscellaneous/ismac.m: New function. | |
3551 * miscellaneous/Makefile.in (SOURCES): Add it to the list. | |
3552 * miscellaneous/ispc.m, miscellaneous/isunix.m: Doc fix. | |
3553 | |
7009 | 3554 2007-10-11 Arno Onken <asnelt@asnelt.org> |
3555 | |
3556 * statistics/distributions/hygernd.m: Allow size to be specified | |
3557 as a scalar. Handle three argument case. Allow T, M, and N to be | |
3558 scalars or matrices of a common size. | |
3559 | |
7007 | 3560 2007-10-11 Brian Gough <bjg@network-theory.co.uk> |
3561 | |
3562 * control/csrefcard.lt, control/system/is_detectable.m, | |
3563 control/system/sysgroup.m, geometry/voronoin.m, | |
3564 miscellaneous/dir.m, sparse/pcg.m, sparse/treeplot.m, | |
3565 statistics/base/mode.m, statistics/distributions/betarnd.m, | |
3566 statistics/distributions/binornd.m, | |
3567 statistics/distributions/cauchy_rnd.m, | |
3568 statistics/distributions/chi2rnd.m, | |
3569 statistics/distributions/discrete_rnd.m, | |
3570 statistics/distributions/exprnd.m, | |
3571 statistics/distributions/frnd.m, | |
3572 statistics/distributions/gamrnd.m, | |
3573 statistics/distributions/geornd.m, | |
3574 statistics/distributions/laplace_rnd.m, | |
3575 statistics/distributions/logistic_rnd.m, | |
3576 statistics/distributions/lognrnd.m, | |
3577 statistics/distributions/nbinrnd.m, | |
3578 statistics/distributions/normrnd.m, | |
3579 statistics/distributions/poissrnd.m, | |
3580 statistics/distributions/stdnormal_rnd.m, | |
3581 statistics/distributions/trnd.m, | |
3582 statistics/distributions/unifrnd.m, | |
3583 statistics/distributions/wblrnd.m: Spelling fixes. | |
3584 | |
7005 | 3585 2007-10-10 Thomas Treichl <Thomas.Treichl@gmx.net> |
3586 | |
3587 * time/tic.m: New optional output value. | |
3588 | |
3589 * general/int2str.m: Doc fix. | |
3590 | |
7002 | 3591 2007-10-10 Arno Onken <asnelt@asnelt.org> |
3592 | |
3593 * statistics/distributions/hygecdf.m, | |
3594 statistics/distributions/hygeinv.m, | |
3595 statistics/distributions/hygepdf.m, | |
3596 statistics/distributions/hygernd.m: | |
3597 Swap order of T and M args for compatibility. | |
3598 | |
7001 | 3599 2007-10-10 Olli Saarela <Olli.Saarela@kcl.fi> |
3600 | |
3601 * control/hinf/hinfsyn.m, control/hinf/wgt1o.m, | |
3602 control/system/buildssic.m, control/system/c2d.m, | |
3603 control/system/d2c.m, control/system/ord2.m, control/system/ss.m, | |
3604 control/system/ss2sys.m, control/system/ss2tf.m, | |
3605 control/system/syscont.m, control/system/sysdimensions.m, | |
3606 control/system/sysdisc.m, control/system/sysmult.m, | |
3607 control/system/sysrepdemo.m, control/system/tf2ss.m, elfun/lcm.m, | |
3608 finance/fv.m, general/cumtrapz.m, general/gradient.m, | |
3609 general/interp1.m, general/interp2.m, general/interp3.m, | |
3610 general/interpft.m, general/interpn.m, general/polyarea.m, | |
3611 general/rat.m, general/structfun.m, general/trapz.m, | |
3612 geometry/tsearchn.m, image/rgb2hsv.m, linear-algebra/krylov.m, | |
3613 miscellaneous/ans.m, miscellaneous/gzip.m, optimization/glpk.m, | |
3614 optimization/sqp.m, plot/findobj.m, plot/legend.m, plot/peaks.m, | |
3615 plot/plot3.m, plot/stem.m, polynomial/deconv.m, | |
3616 polynomial/pchip.m, polynomial/spline.m, polynomial/unmkpp.m, | |
3617 sparse/pcr.m, sparse/spalloc.m, sparse/spconvert.m, | |
3618 specfun/factor.m, specfun/legendre.m, statistics/base/mean.m, | |
3619 statistics/base/meansq.m, statistics/base/var.m, | |
3620 statistics/tests/chisquare_test_independence.m, | |
3621 statistics/tests/t_test.m, statistics/tests/u_test.m, | |
3622 strings/dec2base.m, strings/mat2str.m, testfun/speed.m, | |
3623 testfun/test.m: Spelling fixes. | |
3624 | |
6998 | 3625 2007-10-10 Ben Abbott <bpabbott@mac.com> |
3626 | |
3627 * polynomial/mpoles.m: Return indx = ordr(indx), not indx(ordr). | |
3628 | |
6997 | 3629 2007-10-10 John W. Eaton <jwe@octave.org> |
3630 | |
3631 * general/num2str.m: Always allow for sign for automatically | |
3632 computed format widths. | |
3633 | |
6988 | 3634 2007-10-09 David Bateman <dbateman@free.fr> |
3635 | |
3636 * plot/patch.m: Accept a handle as the first argument. | |
3637 | |
6987 | 3638 2007-10-09: Kim Hansen <kimhanse@gmail.com> |
3639 | |
7010 | 3640 * general/repmat.m: Handle sparse input. Add tests. |
6987 | 3641 |
6985 | 3642 2007-10-09 John W. Eaton <jwe@octave.org> |
3643 | |
3644 * audio/wavwrite.m: Accept arguments in compatible order. | |
3645 | |
6979 | 3646 2007-10-08 David Bateman <dbateman@free.fr> |
3647 | |
3648 * general/interp2.m: Relax test for values outside the grid to | |
3649 allow monotonically decreasing abscissa as well. | |
3650 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
3651 2007-10-08 Ben Abbott <bpabbott@mac.com> |
6978 | 3652 |
3653 * polynomial/residue.m: Doc fix. Add tests. Restore multiplicity | |
3654 as output parameter. | |
3655 | |
6977 | 3656 2007-10-08 Peter A. Gustafson <petegus@umich.edu> |
3657 | |
3658 * plot/__go_draw_axes__.m, plot/legend.m: | |
3659 Handle compatible position specifiers as strings. | |
3660 | |
6975 | 3661 2007-10-08 John Swensen <jpswensen@comcast.net> |
3662 | |
3663 * general/num2str.m: Eliminate extra whitespace in output. | |
3664 * strings/strtrim.m: New function. | |
3665 * strings/Makefile.in (SOURCES): Add it to the list. | |
3666 | |
6968 | 3667 2007-10-06 John W. Eaton <jwe@octave.org> |
3668 | |
3669 * polynomial/residue.m: New test from test/test_poly.m. | |
3670 | |
6967 | 3671 2007-10-06 S�ren Hauberg <hauberg@gmail.com> |
3672 | |
3673 * image/saveimage.m: Handle saving color images without a colormap. | |
3674 * image/__img_via_file__.m: Add missing semicolon. | |
3675 | |
3676 2007-10-06 Bill Denney <wsloand@gmail.com> | |
3677 | |
7010 | 3678 * general/__splinen__.m, general/isscalar.m, general/rat.m, |
6967 | 3679 strings/dec2base.m: Use numel(x) instead of prod(size(x)). |
3680 | |
6965 | 3681 2007-10-06 Francesco Potorti` <Potorti@isti.cnr.it> |
3682 | |
3683 * plot/print.m: Handle svg output type. Accept new -S option to | |
3684 specify size for PNG and SVG output types. | |
3685 | |
3686 2007-10-05 Ben Abbott <bpabbott@mac.com> | |
6964 | 3687 |
3688 * polynomial/mpoles.m: New function. | |
3689 * polynomial/residue.m: Modified to behave in reciprocal | |
3690 manner. No longer compute 4th output, "e". No longer accept | |
3691 tolerance input. Explicitly set tolerance parameter to 0.001. | |
3692 Respect maximum relative difference in poles when determining | |
3693 their multiplicity. Use mpoles to determine the multiplicity of | |
3694 poles. | |
3695 | |
6963 | 3696 2007-10-05 Peter A. Gustafson <petegus@umich.edu> |
3697 | |
3698 * plot/__go_draw_axes__.m: Add cbrange to the plot stream | |
3699 for surface plots. | |
3700 | |
6962 | 3701 2007-10-05 John W. Eaton <jwe@octave.org> |
3702 | |
3703 * plot/__next_line_color__.m: Get color_rotation from axes | |
3704 colororder property. | |
3705 | |
6953 | 3706 2007-10-03 John W. Eaton <jwe@octave.org> |
3707 | |
6955 | 3708 * miscellaneous/dir.m: Handle symbolic links in compatible way. |
3709 Use S_ISDIR (st.mode) instead of checking st.modestr(1) == "d". | |
3710 | |
6953 | 3711 * linear-algebra/Makefile.in (SOURCES): Rename norm.m to __norm__.m. |
3712 * linear-algebra/__norm__.m: Rename from norm.m. Eliminate | |
3713 special for __vnorm__. | |
3714 | |
6951 | 3715 2007-10-03 Quentin Spencer <qspencer@ieee.org> |
3716 | |
6952 | 3717 * linear-algebra/norm.m: Special case vector 1-norm and 2-norm. |
6951 | 3718 |
6950 | 3719 2007-10-03 David Bateman <dbateman@free.fr> |
3720 | |
3721 * pkg/pkg.m (is_architecture_dependent): New function to identify | |
3722 if a file is architecture dependent based on a list of file | |
3723 extensions. | |
3724 (configure_make): Simplify the search for architecture dependent | |
3725 files based on this function. | |
3726 (load_pakages_and_dependencies): Also look for bin directory in | |
3727 the architecture dependent directory. | |
3728 | |
6947 | 3729 2007-10-03 John W. Eaton <jwe@octave.org> |
3730 | |
3731 * miscellaneous/dir.m: Create empty struct with field names. | |
3732 Include datenum in struct. | |
3733 | |
6943 | 3734 2007-10-02 David Bateman <dbateman@free.fr> |
3735 | |
3736 * miscellaneous/ls.m: If nargout return string array of files | |
3737 returned by ls. | |
3738 | |
6942 | 3739 2007-10-01 John W. Eaton <jwe@octave.org> |
3740 | |
3741 * plot/__go_draw_axes__.m: Use %.15e instead of %.15g when setting | |
3742 range values. | |
3743 | |
6937 | 3744 2007-10-01 David Bateman <dbateman@free.fr> |
3745 | |
7010 | 3746 * linear-algebra/norm.m: Inline the isvector(x) calculation for |
6938 | 3747 speed with small vectors. |
6937 | 3748 * pkg/pkg.m (archprefix): Set using octave_config_info("libexecdir") |
3749 rather than OCTAVE_HOME(). | |
3750 | |
6935 | 3751 2007-09-30 Ben Abbott <bpabbott@mac.com> |
3752 | |
3753 * plot/findobj.m: New function. | |
3754 * plot/Makefile.m (SOURCES): Add it to SOURCES. | |
3755 | |
6925 | 3756 2007-09-26 David Bateman <dbateman@free.fr> |
3757 | |
3758 * pkg/pkg.m: Add second argument to setting for prefix for | |
3759 architecture dependent files. Use throughout. | |
3760 (pkg:issuperuser): New function, use through to check for | |
3761 root user. | |
3762 (pkg:getarchprefix): function to give the archiecture dependent | |
3763 prefix for a package. | |
3764 (pkg:getarchdir): New function giving location of architetcure | |
3765 dependent directory. Use through out. | |
3766 (pkg:install): Treat architecture dependent directory separately | |
3767 as in might not be a sub-directory of the package directory. | |
3768 (pkg:uninstall): ditto. | |
3769 (pkg:create_pkgadddel): Check for global or local install for | |
3770 architecture dependent directory. | |
3771 (pkg:finish_installation): ditto. | |
3772 (pkg:write_INDEX): ditto. | |
3773 (pkg:load_packages_and_dependencies): ditto. | |
3774 (pkg:copy_files): ditto. Add step to copy architecture dependent | |
3775 files to a new location if user is root. | |
3776 (pkg:rm_rf): Check if file or directory exists before removing. | |
3777 (pkg:dirempty): Check if directory exists before checking. | |
3778 | |
3779 * plot/___patch__.m: Allow face colors to be passed as strings | |
3780 | |
3781 * plot/__plt_get_axis_arg__.m: Treat case of empty "varargin" | |
3782 needed for calls to "hold" without an argument. | |
3783 | |
6920 | 3784 2007-09-21 John W. Eaton <jwe@octave.org> |
3785 | |
6921 | 3786 * optimization/sqp.m: Fix typo. |
3787 | |
6920 | 3788 * plot/__go_draw_axes__.m (do_tics_1): Use %g, not %.15g here. |
3789 | |
6919 | 3790 2007-09-21 Luther Tychonievich <lty@cs.byu.edu> |
3791 | |
3792 * control/hinf/h2norm: Compute d*d', not d'*d. | |
3793 | |
6918 | 3794 2007-09-21 Thomas Weber <thomas.weber.mail@gmail.com> |
3795 | |
3796 * statistics/distributions/Makefile.in (SOURCES): Add unidcdf.m, | |
3797 unidpdf.m and unidinv.m | |
3798 | |
6914 | 3799 2007-09-18 John W. Eaton <jwe@octave.org> |
3800 | |
3801 * plot/__go_draw_axes__.m: Use %.15g throughout. | |
3802 (do_tics_1): Set numeric axes formats to "%.15g". | |
3803 | |
6912 | 3804 2007-09-18 David Bateman <dbateman@free.fr> |
3805 | |
3806 * plot/__go_draw_axes__.m (__gnuplot_write_data__): Use %e instead | |
3807 of %g when writing data. | |
3808 | |
6908 | 3809 2007-09-17 John W. Eaton <jwe@octave.org> |
3810 | |
3811 * plot/__go_draw_axes__.m: Omit linestyle clause for errorbar plots. | |
3812 | |
6903 | 3813 2007-09-14 Ulrich Tipp <ulrich.tipp@hsnr.de> |
3814 | |
3815 * miscellaneous/bincoeff.m: Fix calculation of bincoeff (n, k) for | |
3816 noninteger N with N-K < 1. | |
3817 | |
6901 | 3818 2007-08-04 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
3819 | |
3820 * strings/index.m: Correct for strings differing after the third | |
3821 position (bug reported by Maude Martin). | |
3822 | |
6895 | 3823 2007-09-13 John W. Eaton <jwe@octave.org> |
3824 | |
3825 * plot/__default_colormap__.m: Delete. | |
3826 * plot/Makefile (SOURCES): Remove from the list. | |
3827 | |
6898 | 3828 2007-09-13 Christof Zeile <cz-oct07@cvmx.com> |
3829 | |
3830 * pol2cart.m: Make it work with mixed scalar/nonscalar arguments. | |
3831 | |
6885 | 3832 2007-09-10 David Bateman <dbateman@free.fr> |
3833 | |
3834 * plot/__go_draw_axes__.m: Allow gnuplot 4.0 with patches, but | |
3835 limit the selection of colors in the same way as for lines. | |
3836 * plot/__patch__.m: Allow matrix arguments with one patch per | |
3837 column. | |
3838 * plot/__bar__.m: Adapt to use "patch". | |
3839 | |
6870 | 3840 2007-09-06 John W. Eaton <jwe@octave.org> |
3841 | |
3842 * plot/drawnow.m (drawnow): New arg, debug_file. | |
3843 (init_plot_stream): Split from open_plot_stream. | |
3844 * plot/print.m: Accept -debug=FILE argument. | |
3845 | |
6868 | 3846 2007-09-06 David Bateman <dbateman@free.fr> |
3847 | |
7010 | 3848 * general/celldisp.m: New function. |
3849 * general/Makefile.in (SOURCES): Add celldisp.m. | |
3850 * miscellaneous/swapbytes.m: New function. | |
3851 * miscellaneous/gzip.m: New function. | |
3852 * miscellaneous/Makefile.in (SOURCES): Add swapbytes.m and gzip.m. | |
6868 | 3853 |
6863 | 3854 2007-09-05 David Bateman <dbateman@free.fr> |
3855 | |
7010 | 3856 * general/structfun.m: New function. |
3857 * general/Makefile.in (SOURCES): Add it to sources. | |
3858 * miscellaneous/run.m: New function. | |
3859 * miscellaneous/Makefile.in (SOURCES): Add it to sources. | |
3860 * statistics/base/mode.m: New function. | |
3861 * statistics/base//Makefile.in (SOURCES): Add it to sources. | |
6863 | 3862 |
6862 | 3863 2007-09-05 John W. Eaton <jwe@octave.org> |
3864 | |
3865 * miscellaneous/orderfields.m: Use numel instead of length. | |
3866 | |
3867 2007-09-05 Michael goffioul <michael.goffioul@gmail.com> | |
3868 | |
3869 * miscellaneous/orderfields.m: Handle empty structs. | |
3870 | |
6861 | 3871 2007-09-05 John W. Eaton <jwe@octave.org> |
3872 | |
3873 * plot/__go_draw_axes__.m: Consistently index PARAMETRIC with | |
3874 DATA_IDX. | |
3875 | |
3876 2007-09-04 David Bateman <dbateman@free.fr> | |
3877 | |
3878 * general/isdir.m: Return a logical value. | |
3879 | |
6859 | 3880 2007-09-04 David Bateman <dbateman@free.fr> |
3881 | |
3882 * statistics/distributions/chi2pdf.m, | |
3883 statistics/distributions/chi2cdf.m, | |
3884 statistics/distributions/chi2inv.m: Modifiy the call to the gamma | |
3885 distribution functions to account for inverse of scale factor in | |
3886 gamma functions. | |
3887 | |
6857 | 3888 2007-09-01 John W. Eaton <jwe@octave.org> |
3889 | |
3890 * plot/Makefile.in (SOURCES): Add ancestor.m to the list. | |
3891 | |
6853 | 3892 2007-09-01 David Bateman <dbateman@free.fr> |
3893 | |
3894 * polynomial/polyint.m: New function like polyinteg but with | |
3895 explicit integration constant. | |
3896 * polynomial/polyinteg.m: Remove. | |
3897 * polynomial/Makefile.in (SOURCES): Add polyint.m and remove | |
3898 polyinteg.m. | |
3899 * deprecated/polyinteg.m: Move version here. | |
3900 * deprecated/Makefile.in (SOURCES): Add polyinteg.m. | |
3901 | |
6852 | 3902 * geometry/voronoi.m: Add large box around data to get a good |
3903 approximation of the rays to infinity. | |
3904 | |
6851 | 3905 2007-08-31 Michael goffioul <michael.goffioul@gmail.com> |
3906 | |
3907 * plot/axes.m: Allow parent to be specified when creating axes | |
3908 objects. Support non-figure parents. | |
3909 | |
3910 2007-08-31 John W. Eaton <jwe@octave.org> | |
3911 | |
3912 * plot/ancestor.m: New function, adapted from Octave Forge. | |
3913 | |
6850 | 3914 2007-08-31 S�ren Hauberg <hauberg@gmail.com> |
3915 | |
7010 | 3916 * polynomial/polygcd.m: Better layout of example. |
3917 * polynomial/compan.m: Remove unnecessary check. | |
3918 * polynomial/roots.m: Added example to help text. | |
3919 * polynomial/polyderiv.m: Change 'polyder' to 'polyderiv' in help text. | |
3920 * polynomial/poly.m: Added example to help text. | |
6850 | 3921 |
6848 | 3922 2007-08-30 John W. Eaton <jwe@octave.org> |
3923 | |
3924 * optimization/qp.m: Increase maxit to 200. | |
3925 | |
6847 | 3926 2007-08-30 David Bateman <dbateman@free.fr> |
3927 | |
3928 * geometry/inpolygon.m: New file. | |
3929 * geometry/Makefile.in (SOURCES): Add inpolygon.m. | |
3930 | |
6843 | 3931 2007-08-29 Peter A. Gustafson <petegus@umich.edu> |
3932 | |
3933 * plot/__go_draw_axes__.m: Disable linetype in do_linestyle_command. | |
3934 | |
6829 | 3935 2007-08-24 David Bateman <dbateman@free.fr> |
3936 | |
3937 * plot/__go_draw_axes__.m: Treat text color property. | |
3938 | |
6828 | 3939 2007-08-24 John W. Eaton <jwe@octave.org> |
3940 | |
3941 * plot/subplot.m, plot/plot.m, plot/grid.m: | |
3942 Use p = get (h, "prop") instead of obj = get (h); p = obj.prop. | |
3943 | |
3944 * miscellaneous/movefile.m: Separate second and third args and | |
3945 use p1 and p2, not f1 and f2 when constructing arguments for | |
3946 calls to system. From Michael Goffioul <michael.goffioul@gmail.com>. | |
3947 | |
6825 | 3948 2007-08-24 Michael Goffioul <michael.goffioul@gmail.com> |
3949 | |
3950 * set/intersect.m: Make it work with cell arrays of strings. | |
3951 | |
6823 | 3952 2007-08-24 David Bateman <dbateman@free.fr> |
3953 | |
7010 | 3954 * geometry/convhull.m, geometry/delaunay.m, geometry/delaunay3.m, |
6823 | 3955 geometry/griddata.m, geometry/voronoi.m, geometry/voronoin.m: New |
3956 functions ported from octave-forge. | |
7010 | 3957 * geometry/delaunayn.m, geometry/dsearch.m, geometry/dsearchn.m, |
6823 | 3958 geometry/griddata3.m, geometry/griddatan.m, geometry/trimesh.m, |
3959 geometry/triplot.m, geometry/tsearchn.m: | |
3960 New functions. | |
7010 | 3961 * geometry/voronoi.m: Remove duplicate edges from Voronoi diagram. |
3962 * geometry/Makefile.in (SOURCES): Add functions above. | |
3963 * configure.in (AC_CONFIG_FILES): Add new file geometry/Makefile. | |
6823 | 3964 |
6820 | 3965 2007-08-23 John W. Eaton <jwe@octave.org> |
3966 | |
3967 * pkg/pkg.m: Avoid using installed_packages for both function and | |
3968 variable name. | |
3969 | |
3970 2007-08-23 David Bateman <dbateman@free.fr> | |
3971 | |
3972 * plot/plot.m: Allow first arg to be axes handle. | |
3973 | |
6818 | 3974 2007-08-22 David Bateman <dbateman@free.fr> |
3975 | |
3976 * control/base/nichols.m: Correct for misnamed variable, and ensure | |
3977 outputs are returned only if requested. | |
3978 | |
3979 2007-08-22 Donald Parsons <dparsons@brightdsl.net> | |
3980 | |
3981 * control/base/nichols.m: Fix typo. | |
3982 | |
6813 | 3983 2007-08-13 John W. Eaton <jwe@octave.org> |
3984 | |
3985 * plot/meshgrid.m: Use repmat instead of multiplication. | |
3986 | |
6809 | 3987 2007-08-10 Peter A. Gustafson <petegus@umich.edu> |
3988 | |
3989 * plot/__go_draw_axes__.m: Add axes position to the usingclause, | |
3990 use axes position in each appropriate gnuplot set statement. | |
3991 | |
6808 | 3992 2007-08-10 John W. Eaton <jwe@octave.org> |
3993 | |
3994 * image/Makefile.in (DISTFILES): Also include $(IMAGES) in the list. | |
3995 (install install-strip): Use $(IMAGES), not $(IMAGE_FILES_NO_DIR). | |
3996 (uninstall): Use $(IMAGES), not $(IMAGE_FILES_NO_DIR). | |
3997 (IMAGE_FILES, IMAGE_FILES_NO_DIR): Delete obsolete variables. | |
3998 | |
6807 | 3999 2007-08-10 Kai Habel <kai.habel@gmx.de> |
4000 | |
4001 * plot/patch.m, plot/__patch__.m: New files. | |
4002 * plot/Makefile.in (SOURCES): Add them to the list. | |
4003 | |
4004 2007-08-07 John W. Eaton <jwe@octave.org> | |
4005 | |
4006 * path/savepath.m: Use single quotes for argument to PATH command | |
4007 that is inserted in file. | |
4008 | |
6805 | 4009 2007-07-27 John W. Eaton <jwe@octave.org> |
4010 | |
4011 * plot/drawnow.m: Only set default value for term if GNUTERM is | |
4012 not set in the environment. | |
4013 | |
6796 | 4014 2007-07-25 David Bateman <dbateman@free.fr> |
4015 | |
4016 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
4017 control/base/Makefile.in, control/hinf/Makefile.in, | |
4018 control/obsolete/Makefile.in, control/system/Makefile.in, | |
4019 control/util/Makefile.in, deprecated/Makefile.in, | |
4020 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, | |
4021 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, | |
4022 miscellaneous/Makefile.in, optimizaton/Makefile.in, | |
4023 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, | |
4024 polynomial/Makefile.in, quaternion/Makefile.in, | |
4025 set/Makefile.in, signal/Makefile.in, sparse/Makefile.in, | |
4026 specfun/Makefile.in, special-matrix/Makefile.in, | |
4027 startup/Makefile.in, statistics/Makefile.in, | |
4028 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
4029 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
4030 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: | |
4031 Adjust DISTFILES to allow out of tree "make dist" to work. | |
4032 | |
6795 | 4033 2007-07-25 John W. Eaton <jwe@octave.org> |
4034 | |
4035 * plot/__plt2__.m: Return [](0x1) if both X and Y are empty. | |
4036 | |
6793 | 4037 2007-07-24 David Bateman <dbateman@free.fr> |
4038 | |
4039 * image/flag.m: New colormap function. | |
4040 * images/Makefile.in: Include it in SOURCES. | |
4041 | |
4042 * image/autumn.m image/bone.m image/cool.m image/copper.m | |
4043 image/hot.m image/hsv.m image/jet.m image/pink.m image/prism.m | |
4044 image/rainbow.m image/spring.m image/summer.m image/white.m | |
4045 image/winter.m, image/brighten.m: Use isscalar and not is_scalar. | |
4046 * image/gray.m, image/ocean.m: Use the same means of finding the | |
4047 number of colormap elements as the other colormap functions. | |
4048 | |
6790 | 4049 2007-07-24 Kai Habel <kai.habel@gmx.de> |
4050 | |
4051 * plot/__go_draw_axes__.m: Handle patch. | |
4052 | |
6788 | 4053 2007-07-23 David Bateman <dbateman@free.fr> |
4054 | |
4055 * general/rat.m: New function for ration approximation imported | |
4056 from octave-forge. | |
4057 * general/del2.m: New function for discrete laplacian operator. | |
4058 * general/Makefile.in: Include rat.m and del2.m in SOURCES. | |
4059 | |
4060 * image/autumn.m image/bone.m image/cool.m image/copper.m | |
4061 image/hot.m image/hsv.m image/jet.m image/pink.m image/prism.m | |
4062 image/rainbow.m image/spring.m image/summer.m image/white.m | |
4063 image/winter.m, image/brighten.m: Port image functions from | |
4064 octave-forge. | |
4065 * image/Makefile.in: Add ported functions to SOURCES. | |
4066 * image/gray.m, image/ocean.m: Don't set the colormap for | |
4067 compatibility with matlab. | |
4068 | |
4069 * plot/meshc.m, plot/peaks.m: Port plotting function from | |
4070 octave-forge | |
4071 * plot/Makefile.in: Add ported functions to SOURCES. | |
4072 * plot/__go_draw_axes__.m: Set the palette for the surfaces if | |
4073 using gnuplot 4.2 or greater. | |
4074 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
4075 2007-07-23 Claudio Belotti <c.belotti@imperial.ac.uk> |
6785 | 4076 |
4077 * general/cart2sph.m: Fix unbalanced paranthesis. | |
4078 | |
6781 | 4079 2007-07-19 David Bateman <dbateman@free.fr> |
4080 | |
4081 * plot/fplot.m: More compatible version. | |
4082 | |
6780 | 4083 2007-07-18 Michael Goffioul <michael.goffioul@gmail.com> |
4084 | |
4085 * plot/clf.m: Check for valid handle before deleting. | |
4086 | |
4087 * plot/figure.m: Pass "figure" property/value pairs directly to | |
4088 __go_figure__ instead of using regular "set" call. | |
4089 | |
6779 | 4090 2007-07-18 Paul Kienzle <pkienzle@users.sf.net> |
4091 | |
4092 * plot/drawnow.m: Prefer GNUTERM to DISPLAY when choosing terminal | |
4093 type for gnuplot. | |
4094 | |
6778 | 4095 2007-07-18 John W. Eaton <jwe@octave.org> |
4096 | |
4097 * plot/__go_draw_axes__.m: Unconditionally send "unset label" to | |
4098 gnuplot for each set of axes. | |
4099 | |
6777 | 4100 2007-07-18 David Bateman <dbateman@free.fr> |
4101 | |
6778 | 4102 * statistics/distributions/gamcdf.m, statistics/distributions/gaminv.m, |
4103 statistics/distributions/gampdf.m, statistics/distributions/gamrnd.m, | |
4104 statistics/distributions/expcdf.m, statistics/distributions/expinv.m, | |
4105 statistics/distributions/exppdf.m, statistics/distributions/exprnd.m: | |
4106 Use standard scale factor rather than one on the scale factor for | |
4107 compatibility. | |
4108 | |
4109 * deprecated/gamma_cdf.m, deprecated/gamma_inv.m, | |
4110 deprecated/gamma_pdf.m, deprecated/gamma_rnd.m, | |
4111 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, | |
4112 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m: | |
4113 Preserve backward compatibility. | |
6777 | 4114 |
6776 | 4115 2007-07-17 Michael Goffioul <michael.goffioul@gmail.com> |
4116 | |
4117 * pkg/pkg.m (pkg:installed_packages): Use findstr rather than regexp | |
4118 to avoid issues with regexp special characters in the path strings. | |
4119 | |
6770 | 4120 2007-07-06 David Bateman <dbateman@free.fr> |
4121 | |
6778 | 4122 * general/accumarray.m: New function to create an array by |
4123 accumulating the elements. | |
6770 | 4124 |
6768 | 4125 2007-06-29 Marcus W. Reble <reble@wisc.edu> |
4126 | |
4127 * optimization/sqp.m (sqp): New args, lb, ub, maxiter, and tolerance. | |
4128 (fdjac): Set nx outside of if block. | |
4129 (cf_ub_lb, cigrad_ub_lb): New subfunctons. | |
4130 | |
6765 | 4131 2007-06-28 Michael Goffioul <michael.goffioul@gmail.com> |
4132 | |
4133 * plot/subplot.m: Add 'ishandle' check when parsing the existing axes. | |
4134 | |
4135 * plot/axis.m: Also set "visible" property when setting axes to | |
4136 on/off. | |
4137 | |
6762 | 4138 2007-06-27 Michael Goffioul <michael.goffioul@swing.be> |
4139 | |
4140 * image/colormap.m: Only return colormap if nargout > 0. | |
4141 Mark as command. | |
4142 | |
6758 | 4143 2007-06-25 John W. Eaton <jwe@octave.org> |
4144 | |
4145 * plot/drawnow.m, plot/__go_draw_axes__.m: Use strcmpi instead of | |
4146 strcmp for selected property comparisons. | |
4147 | |
6756 | 4148 2007-06-25 S�ren Hauberg <hauberg@gmail.com> |
4149 | |
6778 | 4150 * image/imshow.m: Fix check for colormap arguments. |
6756 | 4151 |
6754 | 4152 2007-06-25 Joel Keay <keay@nhn.ou.edu> |
4153 | |
4154 * plot/drawnow.m: Handle GNUTERM=aqua if DISPLAY is not set. | |
4155 | |
6756 | 4156 2007-06-25 S�ren Hauberg <hauberg@gmail.com> |
6754 | 4157 |
6778 | 4158 * statistics/base/median.m: Update help text to mention 'dim' |
6754 | 4159 argument, and note that the data should be sorted for the |
4160 definition of the median to be correct. | |
4161 | |
6778 | 4162 * statistics/base/std.m: Add missing square to definition of |
6754 | 4163 standard deviation. |
4164 | |
6778 | 4165 * statistics/base/cov.m: Add definition of covariance to the help text. |
4166 | |
4167 * statistics/base/kurtosis.m, statistics/base/skewness.m, | |
6754 | 4168 statistics/base/std.m: |
4169 Note that \bar{x} is the mean value of x in the help text. | |
4170 | |
6778 | 4171 * specfun/nchoosek.m: Add alternative definition of the binomial |
6754 | 4172 coefficient to the help text. |
4173 | |
6778 | 4174 * specfun/perms.m, statistics/base/values.m: Add example in help text. |
4175 | |
4176 * statistics/base/var.m: Put N in @math in help text. | |
4177 | |
4178 * statistics/base/qqplot.m, statistics/base/ppplot.m, | |
6754 | 4179 statistics/tests/kolmogorov_smirnov_test.m: |
4180 Write about possible values of 'dist' in help text. | |
4181 | |
6778 | 4182 * statistics/base/corrcoef.m, statistics/base/cor.m: |
6754 | 4183 Add definition of correlation to the help text. |
4184 | |
6778 | 4185 * statistics/base/logit.m, statistics/base/kendall.m, |
4186 statistics/base/cloglog.m, statistics/tests/hotelling_test_2.m, | |
6754 | 4187 statistics/distributions/wblcdf.m, statistics/distributions/wblpdf.m: |
4188 TeXification of help text. | |
4189 | |
4190 * statistics/tests/hotelling_test.m: Write T^2 in @math in help text. | |
4191 | |
4192 * statistics/tests/var_test.m, statistics/tests/welch_test.m: | |
4193 Add missing @var's to help text. | |
4194 | |
4195 * statistics/models/logistic_regression.m: Fix typos in help text. | |
4196 | |
4197 * statistics/distributions/kolmogorov_smirnov_cdf.m: Fix TeX part | |
4198 of help text. | |
4199 | |
4200 * statistics/distributions/unidinv.m: Add a missing 'discrete' to | |
4201 help text. | |
4202 | |
4203 * statistics/distributions/unidpdf.m, | |
4204 statistics/distributions/discrete_pdf.m: | |
4205 Replace 'pDF' with 'PDF' in help text. | |
4206 | |
6753 | 4207 2007-06-25 John W. Eaton <jwe@octave.org> |
4208 | |
4209 * strings/substr.m: Use offset consistently in code and doc string. | |
4210 From Rafael Laboissiere <rafael@debian.org>. | |
4211 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
4212 2007-06-25 Pete Gustafson <petegus@umich.edu> |
6752 | 4213 |
6778 | 4214 * plot/__go_draw_axes__.m: Handle units for text objects. |
6752 | 4215 |
6751 | 4216 2007-06-25 John W. Eaton <jwe@octave.org> |
4217 | |
4218 * plot/__go_draw_axes__.m: Handle char arrays for tic labels. | |
4219 Recycle tic labels if necessary. From Juhani Saastamoinen | |
4220 <juhani@cs.joensuu.fi>. | |
4221 | |
6748 | 4222 2007-06-20 John W. Eaton <jwe@octave.org> |
4223 | |
6749 | 4224 * strings/index.m: Allow strings to be empty. |
4225 From Hartmut Wziontek <hwz@hwz.bv.TU-Berlin.DE> | |
4226 | |
6748 | 4227 * plot/__go_draw_axes__.m (do_tics_1): Fix typo (xtic -> tics). |
4228 | |
6747 | 4229 2007-06-19 Vittoria Rezzonico <vittoria.rezzonico@epfl.ch> |
4230 | |
4231 * sparse/pcg.m: Allow the preconditioner to be passed as two | |
4232 separate matrices. | |
4233 | |
6746 | 4234 2007-06-19 David Bateman <dbateman@free.fr> |
4235 | |
4236 * plot/axis.m: Prefer to use legend rather than the older Octave | |
4237 only ";;" legend syntax. | |
4238 * polynomial/mkpp.m: ditto. | |
4239 * polynomial/pchip.m: ditto. | |
4240 * signal/freqz_plot.m: ditto. | |
4241 * sparse/gplot.m: ditto. | |
4242 * sparse/treeplot.m: ditto. | |
4243 | |
6745 | 4244 2007-06-19 John W. Eaton <jwe@octave.org> |
4245 | |
4246 * plot/__go_draw_axes__.m (do_tics, do_tics_1): New functions. | |
4247 (__go_draw_axes__): Call do_tics to handle tic marks. | |
4248 | |
6742 | 4249 2007-06-18 S�ren Hauberg <hauberg@gmail.com> |
4250 | |
6778 | 4251 * general/interp1.m, general/interp2.m, general/interp3.m, |
6742 | 4252 general/interpn.m: Replace, NaN with NA. Use isna instead of == |
4253 to check for NA. | |
4254 | |
6741 | 4255 2007-06-18 S�ren Hauberg <hauberg@gmail.com> |
4256 | |
6778 | 4257 * optimization/glpk.m: TeXified the help text. |
4258 * optimization/qp.m: TeXified the help text. | |
4259 * optimization/sqp.m: TeXified the help text. | |
6741 | 4260 |
6740 | 4261 2007-06-16 S�ren Hauberg <hauberg@gmail.com> |
4262 | |
6778 | 4263 * plot/legend.m: Replace 'vargin' with 'varargin'. |
6740 | 4264 |
6738 | 4265 2007-06-15 John W. Eaton <jwe@octave.org> |
4266 | |
4267 * plot/__go_draw_axes__.m: Only attempt label rotation if | |
4268 have_newer_gnuplot is true. | |
4269 | |
6736 | 4270 2007-06-15 Pete Gustafson <petegus@umich.edu> |
4271 | |
6778 | 4272 * plot/__go_draw_axes__.m Handle rotation arg for axis labels. |
4273 * plot/__axis_label__.m Assign ylabel default rotation property | |
6737 | 4274 to 90, all others 0. |
4275 | |
6778 | 4276 * plot/__errplot__.m: Set ifmt from fmt.linestyle. |
4277 * plot/__go_draw_axes__.m: Removed undefined tx from call to | |
6736 | 4278 get_data_limits. |
6778 | 4279 * plot/__plotopt1__.m: Intercept and strip format string when |
6736 | 4280 called by __errplot__. |
4281 | |
6730 | 4282 2007-06-15 John W. Eaton <jwe@octave.org> |
4283 | |
4284 * testfun/test.m: Also return number of expected failures. | |
4285 | |
6724 | 4286 2007-06-14 John W. Eaton <jwe@octave.org> |
4287 | |
6730 | 4288 * set/ismember.m: Mark two tests known to fail with xtest. |
4289 | |
6724 | 4290 * plot/__go_draw_axes__.m: Handle text rotation property. |
4291 | |
6728 | 4292 2007-06-14 Paul Kienzle <pkienzle@users.sf.net> |
4293 | |
4294 * testfun/test.m: Add xtest support for tests known to fail. | |
4295 | |
6727 | 4296 2007-06-14 Sebastian Schubert <sebastian-schubert@gmx.de> |
4297 | |
4298 * plot/print.m: Handle pstex, pslatex, epslatex, and | |
4299 epslatexstandalone terminals. | |
4300 | |
6721 | 4301 2007-06-14 David Bateman <dbateman@free.fr> |
4302 | |
4303 * general/__splinen__.m: Check also for ND vectors. Fix for N > 2, | |
4304 as permutation of results was incorrect. | |
4305 * general/interp1.m: Add demo on second derivative | |
4306 * general/interpn.m: Convert "y" to vectors for __splinen__ | |
6722 | 4307 call. Add 3D demo. Fix typos |
4308 * general/interp3.m: Fix typos. Correct permutation for use of | |
4309 interpn. | |
6721 | 4310 * polynomial/mkpp.m: Correction for matrices of 3 or more dimensions. |
4311 | |
6717 | 4312 2007-06-13 John W. Eaton <jwe@octave.org> |
4313 | |
4314 * miscellaneous/mkoctfile.m: Quote args too. | |
6712 | 4315 |
6706 | 4316 2007-06-13 Michael Goffioul <michael.goffioul@swing.be> |
4317 | |
4318 * miscellaneous/mkoctfile.m: Quote script name for call to system. | |
4319 | |
6704 | 4320 2007-06-12 Michael Goffioul <michael.goffioul@swing.be> |
4321 | |
4322 * plot/__pltopt1__.m: Set linestyle to "none" instead of "". | |
4323 Set have_linestyle to true if two character linestyle is found. | |
4324 | |
6702 | 4325 2007-06-12 David Bateman <dbateman@free.fr> |
4326 | |
6717 | 4327 * general/Makefile.in (SOURCES): Include __spline__.m, interp3.m |
4328 and interpn.m. | |
4329 | |
4330 * pkg/pkg.m (pkg:load_package_dirs): Check for field "loaded" in | |
4331 structure before using it. | |
4332 | |
4333 2007-06-12 David Bateman <dbateman@free.fr> | |
4334 | |
6704 | 4335 * general/interp1.m: Change examples to use new graphics interface. |
6702 | 4336 * general/__splinen__.m: New support function for N-dimensional |
4337 spline interpolation. | |
4338 * general/bicubic.m: Allow definition of extrapolation | |
4339 value. Adapt tests to use new graphics interface | |
4340 * general/interp2.m: Call __splinen__ for 2-D spline | |
4341 interpolation. Make the lookup table code only be called for | |
4342 linear and nearest methods. | |
4343 * general/interpn.m: New function for N-dimensional, linear, nearest | |
4344 and spline interpolation. | |
4345 * general/interp3.m: New function for 3-dimensional, linear, nearest | |
4346 and spline interpolation. | |
6704 | 4347 * polynomial/spline.m: Change examples to use new graphics interface. |
6702 | 4348 |
6701 | 4349 2007-06-12 Steve M. Robbins <steve@sumost.ca> |
4350 | |
4351 * statistics/tests/wilcoxon_test.m: Error if N <= 25. | |
4352 | |
6699 | 4353 2007-06-12 S�ren Hauberg <soren@hauberg.org> |
4354 | |
4355 * plot/fplot.m: If function is inline, vectorize it. | |
4356 | |
6698 | 4357 2007-06-10 David Bateman <dbateman@free.fr> |
4358 | |
4359 * pkg/pkg.m (pkg:installed_packages): truncate start of package | |
4360 directory if need to, so that it fits on a line. | |
4361 | |
6695 | 4362 2007-06-07 David Bateman <dbateman@free.fr> |
4363 | |
4364 * pkg/pkg.m (pkg): For rebuild target, force package order in | |
4365 saved file so that dependent packages are loaded first, and if | |
4366 nargout==0 don't return any arguments. | |
4367 (pkg:install): Only load packages that are marked autoload after | |
4368 install. Various fixes. Save in order. | |
4369 (pkg:uninstall): Save in order | |
4370 (pkg:load_packages): Use load_package_and_dependencies to load | |
4371 packages. | |
4372 (pkg:save_order): New function to sort package list with dependent | |
4373 packages first. | |
4374 (pkg:load_packages_and_dependencies): New function to load both a | |
4375 list of packages and their dependencies. | |
4376 (pkg:load_package_dirs): New function that returns a vector of the | |
4377 indexes into the installed package list indicating the packages to | |
4378 load and the order to load them in to respect the dependencies. | |
4379 | |
6688 | 4380 2007-06-03 S�ren Hauberg <soren@hauberg.org> |
4381 | |
4382 * plot/axes.m: Eliminate redundant else clause. | |
4383 | |
6686 | 4384 2007-06-03 David Bateman <dbateman@free.fr> |
4385 | |
4386 * polynomial/spline.m: Add a small tolerance to spline tests. | |
6687 | 4387 * pkg/pkg.m: Protect against multiple actions being define. |
4388 | |
6683 | 4389 2007-06-01 David Bateman <dbateman@free.fr> |
4390 | |
4391 * pkg.m (pkg:is_superuser): Remove function used in one place and | |
4392 incorporate into main pkg function. | |
4393 (pkg:install): Check for existence of files to install before | |
4394 globbing and warn the user if they don't exist. | |
4395 | |
6675 | 4396 2007-05-31 David Bateman <dbateman@free.fr> |
4397 | |
6679 | 4398 * miscellaneous/copyfile.m: Split copying of multiple files to a |
4399 directory over several copy command to limit the line length. | |
4400 * miscellaneous/movefile.m: Ditto. | |
4401 | |
6675 | 4402 * pkg.m: Add build option to allow binary Octave packages to be |
4403 built from source packages. Probe absolute path of prefix, global | |
4404 and local lists. Use strcat, rather that [] for strings. | |
4405 (pkg:build): New function to binary binary package. | |
4406 (pkg:absolute_pathname): Use fileattrib to probe absolute path. | |
4407 (pkg:repackage): Package binary Octave package from installation. | |
4408 (pkg:create_pkgadddel): Extract PKG_ADD and PKG_DEL directives | |
4409 from m-files into main installation directory. | |
4410 (pkg:shell): Suppress verbose messages from shell and only display | |
4411 them with the verbose flag. | |
4412 (pkg:installed_packages): Also include the loaded flag in the | |
4413 local and global packages. | |
4414 (pkg:uninstall): On uninstall, only rmpath the package if it is | |
4415 flagged as loaded. | |
4416 | |
4417 2007-05-31 Michael Goffioul <michael.goffioul@swing.be> | |
4418 | |
4419 * pkg.m (pkg:load_packages): Correctly load a mix of packages | |
4420 with and without architecture dependent directories. | |
4421 (pkg:installed_packages): Probe the global_list file even if it is | |
4422 the same as the local_list. | |
4423 | |
6669 | 4424 2007-05-29 John W. Eaton <jwe@octave.org> |
4425 | |
4426 * sparse/spy.m: Set axis to "ij" mode. | |
4427 | |
6664 | 4428 2007-05-24 John W. Eaton <jwe@octave.org> |
4429 | |
4430 * set/ismember.m: Quote first arg of "fail" tests. | |
4431 | |
6663 | 4432 2007-05-24 David Bateman <dbateman@free.fr> |
4433 | |
6778 | 4434 * pkg/pkg.m (pkg:rebuild): Thinko in rebuild logic. |
6663 | 4435 |
6655 | 4436 2007-05-22 David Bateman <dbateman@free.fr> |
4437 | |
4438 * pkg/pkg.m: Use rethrow(lasterror()) throughout rather than | |
4439 error(lasterr()(8:end)). | |
4440 (pkg:install): Warning for empty packages being removed. Suppress | |
4441 spurious output. Warning rather than error for uninstalling a | |
4442 package that is not installed to avoid RPM issue. | |
4443 (pkg:configure_make): Fix for parsing of src/FILES. Don't create | |
4444 inst or architecture dependent directory if it exists. | |
4445 | |
6653 | 4446 2007-05-22 Thomas Weber <thomas.weber.mail@gmail.com> |
4447 | |
4448 * ChangeLog, control/system/is_stabilizable.m, general/bicubic.m, | |
4449 image/ind2gray.m, image/saveimage.m, plot/box.m, plot/grid.m, | |
4450 signal/freqz.m: Fix typos. | |
4451 | |
6645 | 4452 2007-05-21 David Bateman <dbateman@free.fr> |
4453 | |
4454 * pkg/pkg.m: Add rebuild target, and -local, -global option to | |
4455 force installation location. | |
4456 (rebuild): New subfunction to rebuild package database from | |
4457 installed packages. Also allows changing of autoload status | |
4458 (install): Warn use if attempting to install from non existent | |
4459 file. | |
4460 (issuperuser): Use 'geteuid() == 0' instead of 'strcmp (getenv( | |
4461 "USER", "root"))' for root test. | |
4462 | |
4463 2007-05-21 Michael Goffioul <michael.goffioul@swing.be> | |
4464 | |
4465 * miscellaneous/copyfile.m: check for cp.exe on Windows platforms | |
4466 and replace "\" characters with "/". | |
4467 * pkg/pkg.m: Use shell rather than system throughout. Replace "\" | |
4468 characters with "/" throughout. | |
4469 (shell): New subfunction that wraps system and is careful with the | |
4470 shell on windows platforms. | |
4471 (configure_make): Explictly pass complier etc to configure | |
4472 process. | |
4473 (issuperuser): Force default to global install for Windows machines. | |
4474 | |
6636 | 4475 2007-05-19 Kristan Onu |
4476 | |
4477 * plot/Makefile.in (SOURCES): Remove hbar.m and add barh.m. | |
4478 | |
6634 | 4479 2007-05-18 David Bateman <dbateman@free.fr> |
4480 | |
4481 * pkg/pkg.m (install): More verbosity. | |
4482 (configure_make): Ditto. | |
4483 (create_pkgadddel): Install in architecture dependent directory if | |
4484 it exists to address issues with autoload/mfilename. | |
4485 (write_INDEX): Check in archiecture dependent directories as well. | |
4486 | |
6633 | 4487 2007-05-17 David Bateman <dbateman@free.fr> |
4488 | |
4489 * plot/hbar.m: Remove. | |
4490 * plot/barh.m: and move it here. | |
4491 | |
6631 | 4492 2007-05-16 S�ren Hauberg <soren@hauberg.org> |
4493 | |
4494 * general/sub2ind.m, general/ind2sub.m: Doc fix. | |
4495 | |
6629 | 4496 2007-05-16 John W. Eaton <jwe@octave.org> |
4497 | |
4498 * general/logspace.m: Return second arg if fewer than two values | |
4499 are requested. | |
4500 | |
6619 | 4501 2007-05-14 John W. Eaton <jwe@octave.org> |
4502 | |
4503 * plot/__go_draw_figure__.m: Ensure that a reset commands starts | |
4504 on a new line. | |
4505 | |
6617 | 4506 2007-05-14 Tarmigan Casebolt <tarmigan+list@gmail.com> |
4507 | |
4508 * statistics/distributions/norminv.m, | |
4509 statistics/distributions/norminv.m, | |
4510 statistics/distributions/normpdf.m, | |
4511 statistics/distributions/normrnd.m: | |
4512 Use standard deviation, not variance. | |
4513 * statistics/distributions/lognpdf.m: Adapt to change in norminv. | |
4514 * statistics/distributions/logninv.m: Refer to norminv, not normal_inv. | |
4515 * deprecated/normal_cdf.m, deprecated/normal_inv.m, | |
4516 deprecated/normal_pdf.m, deprecated/normal_rnd.m: Preserve | |
4517 backward compatibility. | |
4518 | |
6616 | 4519 2007-05-14 David Bateman <dbateman@free.fr> |
4520 | |
4521 * pkg/pkg.m: Mark loaded packages with "*". | |
4522 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
4523 2007-05-13 S�ren Hauberg <soren@hauberg.org> |
6615 | 4524 |
4525 * miscellaneous/single.m: Doc fix. | |
4526 Convert to double instead of returning argument unchanged. | |
4527 | |
4528 * miscellaneous/doc.m: Doc fix. | |
4529 | |
4530 * miscellaneous/ver.m: Doc fix. | |
4531 Don't display information about Octave Forge. | |
4532 | |
6614 | 4533 2007-05-12 David Bateman <dbateman@free.fr> |
4534 | |
4535 * pkg/pkg.m: Add a "-verbose" option that allows all output of an | |
4536 install to be printed. An error in the on_uninstall script causes | |
4537 a failure to uninstall. Place oct- and mex-files in an | |
4538 architecture dependent directory. | |
4539 | |
6611 | 4540 2007-05-09 John W. Eaton <jwe@octave.org> |
4541 | |
4542 * plot/__go_draw_axes__.m: Break plot command over multiple lines. | |
4543 | |
6609 | 4544 2007-05-09 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4545 | |
4546 * statistics/distributions/normcdf.m: Use standard deviation | |
4547 instead of variance for compatibility. | |
4548 | |
4549 2007-05-08 John W. Eaton <jwe@octave.org> | |
4550 | |
4551 | |
4552 * set/unique.m, set/ismember.m: Use numel(x) instead of prod(size(x)). | |
4553 | |
4554 * set/ismember.m: Always return logical values. | |
4555 | |
4556 * set/ismember.m: Return early if no matches are found. New tests. | |
6749 | 4557 From David Grohmann <grohmann@arlut.utexas.edu>. |
6609 | 4558 |
4559 * general/__isequal__.m: Allow numeric values of different classes | |
4560 to compare equal. | |
4561 | |
6606 | 4562 2007-05-07 David Bateman <dbateman@free.fr> |
4563 | |
6607 | 4564 * sparse/spy.m: Reverse Y axis for new graphics code. Make more |
4565 compatiable, accepting LineSpec and markersize arguments. | |
6606 | 4566 |
6605 | 4567 2007-05-02 John W. Eaton <jwe@octave.org> |
4568 | |
4569 * plot/__go_draw_axes__.m: Convert NA to NaN before writing. | |
4570 | |
6604 | 4571 2007-05-02 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4572 | |
4573 * contour.m: Rewrite help string. | |
4574 | |
6599 | 4575 2007-04-28 John W. Eaton <jwe@octave.org> |
4576 | |
4577 * miscellaneous/unzip.m, miscellaneous/untar.m, | |
4578 miscellaneous/bunzip2.m, miscellaneous/gunzip.m: | |
4579 Special case nargout == 0. | |
4580 | |
6597 | 4581 2007-04-27 Kim Hansen <kimhanse@gmail.com> |
4582 | |
4583 * general/sub2ind.m: Handle empty input, add tests. | |
4584 | |
6590 | 4585 2007-04-27 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4586 | |
4587 * plot/contourc.m: Doc fix. | |
4588 | |
6586 | 4589 2007-04-26 David Bateman <dbateman@free.fr> |
4590 | |
4591 * plot/hist.m: Partially remove previous patch. | |
4592 | |
6582 | 4593 2007-04-26 David Bateman <dbateman@free.fr> |
4594 | |
4595 * plot/hist.m: Support returning of handle | |
4596 * plot/__bar__.m: __pltopt__ should only be called on strings or | |
4597 cells. | |
4598 | |
6575 | 4599 2007-04-25 John W. Eaton <jwe@octave.org> |
4600 | |
6579 | 4601 * plot/__go_draw_axes__.m: For images, set titlespec{data_idx} to |
4602 "title \"\"", not "". | |
4603 | |
6575 | 4604 * plot/legend.m: Initialize WARNED to false. |
4605 | |
6567 | 4606 2007-04-24 John W. Eaton <jwe@octave.org> |
4607 | |
4608 * io/beep.m: Fix cut and paste error. | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
4609 From S�ren Hauberg <soren@hauberg.org>. |
6567 | 4610 |
4611 2007-04-23 John W. Eaton <jwe@octave.org> | |
4612 | |
4613 * plot/box.m: Delete extra endfunction keyword. | |
4614 | |
6560 | 4615 2007-04-23 David Bateman <dbateman@free.fr> |
4616 | |
4617 * plot/plot3.m: Call newplot. | |
4618 | |
6553 | 4619 2007-04-20 John W. Eaton <jwe@octave.org> |
4620 | |
4621 * plot/Makefile.in (SOURCES): Fix typo in adding __bar__.m to the list. | |
4622 | |
6546 | 4623 2007-04-19 John W. Eaton <jwe@octave.org> |
4624 | |
4625 * miscellaneous/unpack.m: Use gzip -d and bzip2 -d instead of | |
4626 gunzip and bunzip. From Michael Goffioul <michael.goffioul@swing.be>. | |
4627 | |
6544 | 4628 2007-04-19 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
4629 | |
4630 * control/util/axis2dlim.m: Delete extraneous line. | |
4631 | |
6542 | 4632 2007-04-18 John W. Eaton <jwe@octave.org> |
4633 | |
4634 * specfun/factorial.m: Increase tolerance in large value test. | |
4635 | |
6540 | 4636 2007-04-18 David Bateman <dbateman@free.fr> |
4637 | |
4638 * __bar__.m: New support function for bar/hbar to support graphic | |
4639 handles, and additional arguments. | |
4640 * bar.m: Convert to use __bar__. | |
4641 * hbar.m: New function | |
4642 * hist.m: Explicitly set the width of the bar plot. | |
4643 | |
6533 | 4644 2007-04-17 John W. Eaton <jwe@octave.org> |
4645 | |
6534 | 4646 * plot/stem.m (stem_line_spec): Pass false as third arg to __pltopt__. |
4647 | |
6533 | 4648 * set/ismember.m: New tests. |
4649 From David Grohmann <grohmann@arlut.utexas.edu> | |
4650 | |
6532 | 4651 2007-04-17 Paul Kienzle <pkienzle@users.sf.net> |
4652 | |
4653 * specfun/factorial.m: Use gamma function instead of cumprod. | |
4654 Add tests. | |
4655 | |
6527 | 4656 2007-04-16 John W. Eaton <jwe@octave.org> |
4657 | |
6528 | 4658 * gethelp.cc (looks_like_octave_copyright): Use same logic as in |
4659 looks_like_copyright in src/help.cc. | |
4660 From S�ren Hauberg <soren@hauberg.org>. | |
4661 | |
6527 | 4662 * plot/__go_draw_axes__.m: For log plots, omit zero values too. |
4663 | |
6526 | 4664 2007-04-13 John W. Eaton <jwe@octave.org> |
4665 | |
6527 | 4666 * optimization/sqp.m: Initialize info to 0. |
4667 | |
6526 | 4668 * optimization/qp.m: Undo previous change. |
4669 | |
6524 | 4670 2007-04-13 Geordie McBain <geordie.mcbain@aeromech.usyd.edu.au> |
4671 | |
4672 * spdiags.m: Fixed the four-argument case to work for columns of | |
4673 length one. | |
4674 | |
6523 | 4675 2007-04-12 John W. Eaton <jwe@octave.org> |
4676 | |
4677 * optimization/qp.m: Avoid Octave indexing bug. | |
4678 | |
6521 | 4679 2007-04-12 Carlo de Falco <kingcrimson@tiscali.it> |
4680 | |
6522 | 4681 * miscellaneous/menu.m, control/base/bddemo.m, |
4682 control/hinf/dgkfdemo.m, control/system/packedform.m, | |
4683 control/system/sysrepdemo.m: | |
4684 Adapt to page_screen_output as a function. | |
6521 | 4685 |
6518 | 4686 2007-04-11 John W. Eaton <jwe@octave.org> |
4687 | |
4688 * miscellaneous/not.m: Delete. | |
4689 * miscellaneous/Makefile.in (SOURCES): Delete it from the list. | |
4690 | |
4691 2007-04-11 A. S. Hodel <a.s.hodel@eng.auburn.edu> | |
4692 | |
4693 * control/util/axis2dlim.m: Try harder to handle min and max vals | |
4694 that are close but not exactly equal. | |
4695 | |
6515 | 4696 2007-04-11 David Bateman <dbateman@free.fr> |
4697 | |
4698 * general/bitcmp.m: Make it work again. | |
4699 | |
6512 | 4700 2007-04-10 John W. Eaton <jwe@octave.org> |
4701 | |
4702 * plot/__go_draw_axes__.m: Try harder to handle min and max vals | |
4703 that are close but not exactly equal. | |
4704 | |
6511 | 4705 2007-04-09 Daniel J. Sebald <daniel.sebald@ieee.org> |
4706 | |
4707 * plot/stem.m: Add back the baseline line and let it be not adjustable | |
4708 in response to a change in x limits for now. | |
4709 | |
6510 | 4710 2007-04-09 John W. Eaton <jwe@octave.org> |
4711 | |
4712 * plot/__go_draw_axes__.m (__gnuplot_write_data__): New function. | |
4713 (__go_draw_axes__): Use it to write data to plot stream. | |
4714 | |
6509 | 4715 2007-04-09 Daniel J Sebald <daniel.sebald@ieee.org> |
4716 | |
4717 * plot/stem.m: Fix typos in doc string. Fix typo in call to | |
4718 zeros. Set markerfacecolor property in call to plot. | |
4719 | |
6508 | 4720 2007-04-06 John W. Eaton <jwe@octave.org> |
4721 | |
4722 * linear-algebra/norm.m: Use new __vnorm__ function for vector args. | |
4723 | |
4724 2007-04-06 Daniel J Sebald <daniel.sebald@ieee.org> | |
4725 | |
4726 * plot/stem.m: Use plot instead of a series of calls to line. | |
4727 | |
6494 | 4728 2007-04-05 John W. Eaton <jwe@octave.org> |
4729 | |
6499 | 4730 * sparse/nonzeros.m, sparse/normest.m, sparse/spconvert.m, |
4731 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/spones.m, | |
4732 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, | |
4733 sparse/spstats.m, sparse/treeplot.m: Style fixes. | |
4734 | |
6496 | 4735 * pkg/pkg.m: Use "strcat (...)" instead of "[...]". |
6500 | 4736 Use strcmpi instead of strcmp+tolower. |
6496 | 4737 Style fixes. |
4738 | |
6494 | 4739 * testfun/speed.m: Use "strcat (...)" instead of "[...]". |
4740 Plotting fixes. Style fixes. | |
4741 | |
4742 * testfun/test.m: Use "strcat (...)" instead of "[...]". | |
4743 Style fixes. | |
4744 | |
4745 * testfun/fail.m: No need to check for evalin and lastwarn. | |
4746 Style fixes. | |
4747 | |
4748 * testfun/demo.m, testfun/example.m: Style fixes. | |
4749 Use "strcat (...)" instead of "[...]". | |
4750 Use format specifiers in calls to warning. | |
4751 | |
4752 * testfun/assert.m: Use "numel (x)" instead of "prod (size (x))". | |
4753 Use "strcat (...)" instead of "[...]". | |
4754 Use "x(end)" instead of "x(length (x))". | |
4755 Check NA before NaN. | |
4756 Style fixes. | |
4757 | |
6473 | 4758 2007-03-29 John W. Eaton <jwe@octave.org> |
4759 | |
6474 | 4760 * plot/stem.m (stem, set_default_values): Use RGB triple for color. |
6473 | 4761 |
6467 | 4762 2007-03-27 John W. Eaton <jwe@octave.org> |
4763 | |
4764 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
4765 control/base/Makefile.in, control/hinf/Makefile.in, | |
4766 control/obsolete/Makefile.in, control/system/Makefile.in, | |
4767 control/util/Makefile.in, deprecated/Makefile.in, | |
4768 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, | |
4769 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, | |
4770 miscellaneous/Makefile.in, optimization/Makefile.in, | |
4771 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, | |
4772 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
4773 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
4774 special-matrix/Makefile.in, startup/Makefile.in, | |
4775 statistics/Makefile.in, statistics/base/Makefile.in, | |
4776 statistics/distributions/Makefile.in, | |
4777 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
4778 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: | |
4779 Use ln instead of $(LN_S) in dist target. | |
4780 | |
6465 | 4781 2007-03-27 David Bateman <dbateman@free.fr> |
4782 | |
4783 * plot/__go_draw_axes__.m: Allow linewidth settings to work with | |
4784 gnuplot 4.0. | |
4785 | |
6464 | 4786 2007-03-26 John W. Eaton <jwe@octave.org> |
4787 | |
4788 * plot/__go_draw_axes__.m: Send image data to gnuplot via plot stream. | |
4789 | |
6461 | 4790 2007-03-26 Daniel J Sebald <daniel.sebald@ieee.org> |
4791 | |
4792 * plot/__go_draw_axes__.m: Always end palette data to gnuplot via | |
4793 plot stream and using binary data. | |
4794 | |
6459 | 4795 2007-03-26 John W. Eaton <jwe@octave.org> |
4796 | |
4797 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, | |
4798 lot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
4799 plot/__plt2vv__.m: Accept properties in addtition to options struct. | |
4800 | |
4801 2007-03-26 David Bateman <dbateman@free.fr> | |
4802 | |
6461 | 4803 * plot/__go_draw_axes__.m: Send "set ticslevel 0" to plot stream. |
4804 | |
6459 | 4805 * plot/plot3.m: Handle line properties. |
4806 * plot/plot.m: Update docstring. | |
4807 * plot/__plotopt__.m, plot/__pltopt1__.m: New arg, err_on_invalid. | |
4808 * plot/__plt__.m: Also gather properties. | |
4809 | |
6455 | 4810 2007-03-26 Kim Hansen <kimhanse@gmail.com> |
4811 | |
4812 * testfun/assert.m: Delete special check for empty objects. | |
4813 Add test. | |
4814 | |
6453 | 4815 2007-03-26 John W. Eaton <jwe@octave.org> |
4816 | |
6454 | 4817 * plot/drawnow.m: Exit early if call is recursive. |
4818 | |
6453 | 4819 * plot/__go_draw_axes__.m (get_data_limits): New function. |
4820 Check for Inf too. | |
4821 (__go_draw_axes__): Use get_data_limits. | |
4822 | |
6450 | 4823 2007-03-24 John W. Eaton <jwe@octave.org> |
4824 | |
6451 | 4825 * plot/drawnow.m: If GNUTERM is set to wxt in the environment, |
4826 send terminal setting command with title option to plot stream. | |
4827 | |
6450 | 4828 * plot/legend.m: Correctly increment index into list of children.. |
4829 | |
6434 | 4830 2007-03-23 John W. Eaton <jwe@octave.org> |
4831 | |
6448 | 4832 * general/interp2.m, general/bicubic.m, control/base/rldemo.m, |
4833 control/hinf/hinfdemo.m, control/hinf/dhinfdemo.m, | |
4834 control/base/nyquist.m, control/base/nichols.m, | |
4835 control/base/frdemo.m, signal/freqz_plot.m, | |
4836 control/base/__stepimp__.m, control/base/bode.m, | |
4837 quaternion/demoquat.m, quaternion/qcoordinate_plot.m, | |
4838 statistics/base/qqplot.m, statistics/base/ppplot.m, sparse/spy.m: | |
6447 | 4839 Update plotting code. |
4840 | |
4841 * control/base/bode.m: Unwrap phase angle. | |
4842 | |
4843 * miscellaneous/dump_prefs.m: Remove automatic_replot from the list. | |
4844 | |
4845 * plot/axis.m: Don't check automatic_replot, or call replot. | |
4846 | |
4847 * quaternion/demoquat.m: Delete comments with obsolete plotting | |
4848 commands. | |
6446 | 4849 |
6442 | 4850 * plot/__pltopt1__.m: Handle "@" marker same as "+". |
6444 | 4851 Handle numeric color specs. |
6442 | 4852 * plot/plot.m: Remove "-@" and "@" from docstring. |
4853 | |
6441 | 4854 * plot/orient.m: Fix tests to avoid creating a plot window. |
4855 | |
6440 | 4856 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, |
4857 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, | |
4858 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m, | |
4859 general/arrayfun.m, miscellaneous/compare_versions.m, | |
4860 path/savepath.m, pkg/pkg.m, plot/__gnuplot_version__.m, | |
4861 plot/contour.m, plot/contourc.m, plot/legend.m, plot/stem.m, | |
4862 polynomial/pchip.m: Fix copyright notice, correct FSF address. | |
4863 | |
6438 | 4864 * plot/__go_draw_figure__.m: Send reset to gnuplot before every |
4865 plot, not just multiplots. | |
4866 | |
6436 | 4867 * plot/__go_draw_axes__.m: Use %g for label coordinates, not %d. |
4868 | |
6434 | 4869 * plot/contour.m: Don't call drawnow. |
4870 | |
6431 | 4871 2007-03-22 John W. Eaton <jwe@octave.org> |
4872 | |
6432 | 4873 * plot/drawnow.m: Check and optionally, set, the __modified__ |
4874 property of each figure. | |
4875 | |
6431 | 4876 * plot/__go_draw_axes__.m: If no real data, plot a point at Inf, |
4877 Inf to show axes. From Daniel J Sebald <daniel.sebald@ieee.org>. | |
4878 | |
4879 2007-03-21 John W. Eaton <jwe@octave.org> | |
4880 | |
4881 * linear-algebra/null.m: Set elements of retval with magnitudes | |
4882 less than eps to 0. | |
4883 | |
6429 | 4884 2007-03-21 David Bateman <dbateman@free.fr> |
6425 | 4885 |
4886 * plot/__go_draw_axes__.m: Handle some colors with older gnuplot. | |
6429 | 4887 * testfun/speed.m: Documentation and example fix. |
4888 | |
6424 | 4889 2007-03-21 John W. Eaton <jwe@octave.org> |
4890 | |
4891 * plot/subplot.m: If we find an existing subplot region, set | |
4892 it to be the "currentaxes" property for the current figure. | |
6425 | 4893 Delete old axes objects if the new axes object overlaps the old. |
6424 | 4894 |
6422 | 4895 2007-03-20 David Bateman <dbateman@free.fr> |
4896 | |
4897 * general/Makefile.in: Include arrayfun.m in SOURCES. | |
4898 | |
4899 2007-03-20 Bill Denney <denney@seas.upenn.edu> | |
4900 | |
4901 * general/arrayfun.m: New function. | |
4902 | |
6418 | 4903 2007-03-20 John W. Eaton <jwe@octave.org> |
4904 | |
6419 | 4905 * plot/newplot.m: Call __request_drawnow__ after initializing axes. |
4906 * plot/text.m: Call __request_drawnow__ after creating text objects. | |
4907 | |
4908 * plot/clf.m: Don't call drawnow. | |
4909 | |
6431 | 4910 2007-03-20 Daniel J Sebald <daniel.sebald@ieee.org> |
6419 | 4911 |
6420 | 4912 * image/__img__.m: Maybe set yaxis to reverse for images. |
4913 * plot/__go_draw_axes__.m: Don't add flipy to gnuplot command for | |
4914 images. | |
4915 | |
6418 | 4916 * plot/drawnow.m: Make __go_close_all_registered__ persistent |
6419 | 4917 instead of global. Only register __go_close_all__ with atexit if |
4918 the plot stream is successfully opened. | |
6418 | 4919 |
6413 | 4920 2007-03-15 John W. Eaton <jwe@octave.org> |
4921 | |
6418 | 4922 * plot/__go_draw_axes__.m: Make have_newer_gnuplot persistent. |
6413 | 4923 From Daniel J Sebald <daniel.sebald@ieee.org>. |
4924 | |
4925 2007-03-15 Daniel J Sebald <daniel.sebald@ieee.org> | |
4926 | |
4927 * plot/__go_draw_axes__.m (do_linestyle_command): Fix marker types. | |
6415 | 4928 Use numeric line types. |
6413 | 4929 |
4930 * control/base/rlocus.m: Add asymptotes to the plot. Use wider | |
6415 | 4931 lines and larger markers. Remove key titles from line type |
4932 properties. | |
6413 | 4933 |
6405 | 4934 2007-03-14 John W. Eaton <jwe@octave.org> |
4935 | |
6412 | 4936 * plot/__axis_label__.m: Accept additional property-value pairs |
4937 and pass them to __go_text__. Simply return the handle obtained | |
4938 from __go_text__ instead of calling get on the current axis. | |
4939 * plot/xlabel.m, plot/zlabel.m, plot/zlabel.m: Check args here. | |
4940 Allow for extra property value pairs to be passed along. | |
4941 * plot/title.m: Implement with __axis_label__ since it does all | |
4942 that title needs to do. | |
4943 | |
6410 | 4944 * plot/clf.m: Set currentaxes property for current figure to []. |
4945 | |
6405 | 4946 * plot/__axis_label__.m: Convert arg to text handle before calling set. |
4947 | |
4948 * plot/__plt__.m: Return line handles from all calls to __plt1__ | |
4949 and __plt2__, not just the last. | |
4950 | |
4951 * plot/Makefile.in (SOURCES): Rename from SOURCES_M. | |
4952 (SOURCES_IN, GEN_M): Delete. | |
4953 (FCN_FILES): Don't include $(GEN_M). | |
4954 (all): Don't depend on $(GEN_M). | |
4955 ($(GEN_M) : %.m : %.in): Delete pattern rule. | |
4956 | |
4957 * plot/text.m: Use __go_text__ instead of __uiboject_text_ctor__. | |
4958 | |
4959 * plot/newplot.m: Call __go_axes_init__ instead of | |
4960 __uiobject_axes_init__. | |
4961 | |
4962 * plot/mesh.m: Use __go_surface__ instead of | |
4963 __uiobject_surface_ctor__. Don't access object fields directly. | |
4964 | |
4965 * plot/line.m: Use __line__ to do actual work. | |
4966 * plot/__line__.m: New function. | |
4967 | |
4968 * plot/axes.m: Use __go_axes__ to create axes graphics handle. | |
4969 Use get and set instead of accessing object fields directly. | |
4970 | |
4971 * plot/figure.m: Use __go_figure__ to create figure graphics | |
4972 handle. | |
4973 | |
4974 * plot/drawnow.m: Register __go_close_all__ with atexit instead of | |
4975 __uiobject_close_all. Call __go_draw_figure__ instead of | |
4976 __uiobject_draw_figure__. | |
4977 | |
4978 * plot/clf.m: Use get instead of accessing object fields | |
4979 directly. Simply delete children. Don't set currentaxes. | |
4980 | |
4981 * plot/close.m (close_all_figures): New subfunction. | |
4982 Use it instead of getting list of figures to close from | |
4983 __uiobject_figures__. | |
4984 | |
4985 * plot/closereq.m: Simply delete the current figure. Don't set | |
4986 currentfigure. | |
4987 | |
4988 * plot/__errplot__.m: Call __line__ instead of | |
4989 __uiobject_line_ctor__. Use set instead of accesing object fields | |
4990 directly. Don't call __uiobject_adopt__. | |
4991 | |
4992 * plot/__uiobject_adopt__.m, plot/__uiobject_alloc__.in, | |
4993 plot/__uiobject_axes_ctor__.m, plot/__uiobject_axes_dtor__.m, | |
4994 plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m, | |
4995 plot/__uiobject_delete__.m, plot/__uiobject_figure_ctor__.m, | |
4996 plot/__uiobject_figures__.in, plot/__uiobject_free__.in, | |
4997 plot/__uiobject_get_handle__.in, plot/__uiobject_globals__.m, | |
4998 plot/__uiobject_grow_list__.in, plot/__uiobject_handle2idx__.in, | |
4999 plot/__uiobject_image_ctor__.m, plot/__uiobject_init_figure__.in, | |
5000 plot/__uiobject_init_root_figure__.in, | |
5001 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.in, | |
5002 plot/__uiobject_root_figure_ctor__.m, | |
5003 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m: | |
5004 plot/get.in, plot/include-globals.awk, plot/ishandle.m, | |
5005 plot/set.in: Delete. | |
6408 | 5006 * plot/Makefile.in (SOURCES_M, SOURCES_IN): Remove from lists. |
6405 | 5007 |
5008 * plot/__go_close_all__.m: Rename from __uiobject_close_all.m. | |
5009 Pass "hidden" as second arg to close. | |
5010 * plot/__go_draw_axes__.m: Rename from __uiobject_draw_axes.m. | |
5011 * plot/__go_draw_figure__.m: Rename from __uiobject_draw_figure.m. | |
6408 | 5012 * plot/Makefile.in (SOURCES_M): Rename in list. |
5013 | |
6405 | 5014 * image/__img__.m: Use __go_image__ to create image graphics |
5015 handle. | |
5016 | |
5017 * miscellaneous/delete.m: Call __go_delete__, not | |
5018 __uiobject_delete__. Check that arg is a graphics handle before | |
5019 calling __go_delete__. | |
5020 | |
6403 | 5021 2007-03-13 John W. Eaton <jwe@octave.org> |
5022 | |
5023 * miscellaneous/cast.m: Use feval and strcmp with cell to check | |
5024 arg instead of switch statement. | |
6528 | 5025 From S�ren Hauberg <soren@hauberg.org>. |
6403 | 5026 |
5027 2007-03-12 John W. Eaton <jwe@octave.org> | |
5028 | |
5029 * miscellaneous/cast.m: New function. | |
5030 | |
5031 * miscellaneous/delete.m: Call __go_delete__, not __uiobject_delete__. | |
5032 | |
6398 | 5033 2007-03-08 John W. Eaton <jwe@octave.org> |
5034 | |
5035 * miscellaneous/copyfile.m, miscellaneous/movefile.m: Perform | |
5036 tilde expansion on target filename before passing it to the shell. | |
5037 | |
5038 * statistics/base/Makefile.in (SOURCES): Remove unidrnd.m from list. | |
5039 * statistics/distributions/Makefile.in (SOURCES): Add it here. | |
5040 | |
6396 | 5041 2007-03-08 David Bateman <dbateman@free.fr> |
5042 | |
5043 * statistics/base/unidrnd.m: Move to statistics/distributions | |
5044 replacing slower version based on dicrete_rnd. | |
5045 | |
6392 | 5046 2007-03-07 John W. Eaton <jwe@octave.org> |
5047 | |
6395 | 5048 * control/base/rlocus.m: Update for current plotting functions. |
5049 | |
5050 2007-03-07 A. S. Hodel <a.s.hodel@eng.auburn.edu> | |
5051 | |
5052 * control/base/rlocus.m: Improve display. | |
5053 | |
5054 2007-03-07 John W. Eaton <jwe@octave.org> | |
5055 | |
5056 * plot/legend.m: Only handle positions -1:4. | |
5057 * plot/__pltopt1__.m: Don't set linestyle if only marker style is | |
5058 found in option string | |
5059 * plot/__uiobject_draw_axes__.m: Handle key position. | |
5060 | |
6394 | 5061 * plot/newplot.m: Always reset next line color. |
5062 | |
6392 | 5063 * testfun/assert.m: Check that number of dimensions match before |
5064 checking dimensions. | |
5065 | |
6391 | 5066 2007-03-07 Muthiah Annamalai <muthuspost@gmail.com> |
5067 | |
5068 * specfun/perms.m, specfun/factorial.m: Check args. | |
5069 | |
6387 | 5070 2007-03-07 John W. Eaton <jwe@octave.org> |
5071 | |
6390 | 5072 * plot/mesh.m: Call newplot before doing anything. |
5073 | |
5074 * plot/__uiobject_draw_axes__.m: Send "e\n" at end of data, not | |
5075 just "e". Only flush plot stream once. | |
5076 From Daniel J Sebald <daniel.sebald@ieee.org>. | |
5077 | |
6387 | 5078 * strings/blanks.m: Omit first index in assignment. |
5079 | |
6386 | 5080 2007-03-07 Paul Kienzle <pkienzle@users.sf.net> |
5081 | |
5082 * set/setdiff.m: Some code cleanup and a fix for setdiff on rows. | |
5083 | |
6385 | 5084 2007-03-06 David Bateman <dbateman@free.fr> |
5085 John W. Eaton <jwe@octave.org> | |
5086 | |
5087 * set/setdiff.m: Ignore "rows" for cell array args. | |
5088 Handle cellstr args. | |
5089 | |
6382 | 5090 2007-03-05 John W. Eaton <jwe@octave.org> |
5091 | |
5092 * optimization/sqp.m: Defer first call to obj_hess until after | |
5093 calling obj_fun. | |
5094 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5095 2007-03-02 Bob Weigel <rweigel@gmu.edu> |
6377 | 5096 |
5097 * specfun/nchoosek.m: Fix nargin check. | |
5098 | |
6376 | 5099 2007-03-01 Daniel J Sebald <daniel.sebald@ieee.org> |
5100 | |
5101 * image/__img__.m: Don't set xlim and ylim properties. | |
5102 | |
6374 | 5103 2007-03-01 Paul Kienzle <pkienzle@users.sf.net> |
5104 | |
5105 * general/interp1.m: Fix *style cases for decreasing x. | |
5106 | |
6372 | 5107 2007-03-01 Muthiah Annamalai <muthuspost@gmail.com> |
5108 | |
5109 * polynomial/roots.m: Check nargin before accessing arg. | |
5110 | |
6369 | 5111 2007-02-28 John W. Eaton <jwe@octave.org> |
5112 | |
5113 * plot/__uiobject_draw_axes__.m: If looking at image data, Don't | |
5114 increment data_idx unless using gnuplot for display. | |
5115 | |
6368 | 5116 2007-02-28 Daniel J Sebald <daniel.sebald@ieee.org> |
5117 | |
5118 * plot/__uiobject_draw_axes__.m: Improve calculation of limits for | |
5119 plots with images. | |
5120 * image/image.m, image/imagesc.m, image/imshow.m: | |
5121 Deprecate zoom argument. | |
5122 | |
6366 | 5123 2007-02-28 John W. Eaton <jwe@octave.org> |
5124 | |
5125 * plot/__uiobject_draw_axes__.m: Use fullfile to generate | |
5126 temporary file names. Keep image and colormap file ids separate. | |
5127 | |
5128 * general/interp1.m: Correctly compute min and max values when | |
5129 values are decreasing and not evenly spaced. | |
5130 From Ricardo Marranita <ricardo.marranita@gmail.com>. | |
5131 | |
6365 | 5132 2007-02-27 John W. Eaton <jwe@octave.org> |
5133 | |
5134 * testfun/test.m (test): Handle possibility of file_in_loadpath | |
5135 returning an empty cell array. | |
5136 | |
6546 | 5137 2007-02-27 Michael Goffioul <michael.goffioul@swing.be> |
6364 | 5138 |
5139 * pkg/pkg.m: Use fullfile to create filenames from parts. | |
5140 | |
6546 | 5141 2007-02-26 Michael Goffioul <michael.goffioul@swing.be> |
6358 | 5142 |
5143 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
5144 control/base/Makefile.in, control/hinf/Makefile.in, | |
5145 control/obsolete/Makefile.in, control/system/Makefile.in, | |
5146 control/util/Makefile.in, deprecated/Makefile.in, | |
5147 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, | |
5148 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, | |
5149 miscellaneous/Makefile.in, optimization/Makefile.in, | |
5150 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, | |
5151 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
5152 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
5153 special-matrix/Makefile.in, startup/Makefile.in, | |
5154 statistics/Makefile.in, statistics/base/Makefile.in, | |
5155 statistics/distributions/Makefile.in, | |
5156 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
5157 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: | |
5158 Use $(LN_S) instead of ln or ln -s. | |
5159 | |
6356 | 5160 2007-02-24 David Bateman <dbateman@free.fr> |
5161 | |
5162 * pkg/pkg.m (configure_make): Ignore blank lines and trailing | |
5163 '\n' in FILES file. | |
6357 | 5164 (configure_make): Also install any mex files. |
6356 | 5165 |
6353 | 5166 2007-02-24 David Bateman <dbateman@free.fr> |
5167 | |
5168 * statistics/distributions (SOURCES): Add nbincdf.m, | |
5169 nbininv.m, nbinpdf.m and nbinrnd.m. | |
5170 | |
6351 | 5171 2007-02-23 John W. Eaton <jwe@octave.org> |
5172 | |
5173 * statistics/distributions/Makefile.in (SOURCES): Remove | |
5174 pascal_cdf.m pascal_inv.m pascal_pdf.m pascal_rnd.m from the list. | |
5175 | |
5176 * deprecated/Makefile.in (SOURCES): Add pascal_cdf.m, | |
5177 pascal_inv.m, pascal_pdf.m, and pascal_rnd.m to the list. | |
5178 | |
6349 | 5179 2007-02-23 David Bateman <dbateman@free.fr> |
5180 | |
5181 * statistics/distributions/discrete_rnd.m, | |
5182 statistics/distributions/geornd.m, | |
5183 statistics/distributions/lognnd.m, | |
5184 statistics/distributions/nbinrnd.m, | |
5185 statistics/distributions/wblrnd.m: Accelerate distributions. | |
5186 | |
5187 * statistics/distributions/unidcdf.m, | |
5188 statistics/distributions/unidinv.m, | |
5189 statistics/distributions/unidpdf.m, | |
5190 statistics/distributions/unidrnd.m: New functions based on | |
6351 | 5191 discrete_cdf, etc. |
6349 | 5192 |
5193 * statistics/distributions/pascal_cdf.m, | |
5194 statistics/distributions/pascal_inv.m, | |
5195 statistics/distributions/pascal_pdf.m, | |
5196 statistics/distributions/pascal_rnd.m: Remove. | |
5197 * statistics/distributions/nbincdf.m, | |
5198 statistics/distributions/nbininv.m, | |
5199 statistics/distributions/nbinpdf.m, | |
5200 statistics/distributions/nbinrnd.m: Replace with matlab | |
5201 compatible functions. | |
5202 * deprecated/pascal_cdf.m, deprecated/pascal_inv.m, | |
5203 deprecated/pascal_pdf.m, deprecated/pascal_rnd.m: Use the new | |
5204 nbincdf, etc functions to implement these. | |
5205 | |
6344 | 5206 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
5207 | |
5208 * plot/__uiobject_draw_axes__.m: Insert newline between plot | |
5209 command and data. | |
5210 | |
5211 2007-02-22 John W. Eaton <jwe@octave.org> | |
5212 | |
5213 * miscellaneous/doc.m: If index search fails, try again without | |
5214 the index search option. | |
5215 | |
6339 | 5216 2007-02-22 David Bateman <dbateman@free.fr> |
5217 | |
6341 | 5218 * miscellaneous/doc.m: Find doc.info file correctly in user directories. |
5219 | |
6340 | 5220 * statistics/distributions/frnd.m, statistics/distributions/exprnd.m, |
5221 statistics/distributions/gamrnd.m, statistics/distributions/trnd.m, | |
5222 statistics/distributions/poissrnd.m, statistics/distributions/chi2rnd.m, | |
5223 statistics/distributions/betarnd.m: Convert to use randg, rande | |
5224 and randp to accelerate. | |
5225 | |
6339 | 5226 * pkg/pkg.m (fix_depends): Support > and < operators as well. |
5227 | |
6338 | 5228 2007-02-22 John W. Eaton <jwe@octave.org> |
5229 | |
5230 * plot/__uiobject_draw_axes__.m: If not using gnuplot for images, | |
5231 cache data and display after xlim and ylim have been determined. | |
5232 | |
6337 | 5233 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
5234 | |
5235 * plot/__uiobject_draw_axes__.m: | |
5236 Allow multiple images to be displayed with gnuplot. | |
5237 | |
6333 | 5238 2007-02-20 Rafael Laboissiere <rafael@debian.org> |
5239 | |
5240 * optimization/glpk.m: Document the fact that extra.mem does not work | |
5241 for versions of GLPK 4.15 and later. | |
5242 | |
6328 | 5243 2007-02-19 John W. Eaton <jwe@octave.org> |
5244 | |
5245 * plot/__uiobject_alloc__.in: If next available element in | |
5246 __uiobject_list__ is 0, grow list before doing anything else. | |
5247 * plot/__uiobject_grow_list__.in: Only set __uiobject_head__ on | |
5248 first call when size of __uiobject_list__ is 0. | |
5249 | |
6323 | 5250 2007-02-16 John W. Eaton <jwe@octave.org> |
5251 | |
5252 * miscellaneous/Makefile.in (SOURCES): Remove popen2.m from the list. | |
5253 | |
6321 | 5254 2007-02-16 Michael Goffioul <michael.goffioul@swing.be> |
5255 | |
5256 * miscellaneous/popen2.m: Remove as replaced with builtin. | |
5257 | |
6316 | 5258 2007-02-16 Muthiah Annamalai <muthuspost@gmail.com> |
5259 | |
5260 * specfun/nchoosek.m: Check nargin. | |
5261 | |
6314 | 5262 2007-02-15 John W. Eaton <jwe@octave.org> |
5263 | |
6315 | 5264 * path/addpath.m, path/rmpath.m: Delete |
5265 * path/Makefile.in (SOURCES): Remove them from the list. | |
5266 | |
6314 | 5267 * plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m: |
5268 Delete title, xlabel, ylabel, and zlabel properties before | |
5269 reassigning. | |
5270 * plot/__uiobject_axes_init__.in: New arg, mode. | |
5271 Don't init outerposition if "mode" is "replace". | |
5272 * plot/newplot.m: Check both figure and axes nextplot properties. | |
5273 If axes nextplot property is replace, pass "replace" as mode arg | |
5274 to __uiobject_axes_init__. | |
5275 | |
6308 | 5276 2007-02-15 Daniel J Sebald <daniel.sebald@ieee.org> |
5277 | |
6310 | 5278 * image/imshow.m: Don't restore old colormap. |
5279 | |
6309 | 5280 * plot/__uiobject_image_ctor__.m: Set xdata and ydata properties. |
5281 * image/__img__.m: New file containing common parts of image.m and | |
5282 imshow.m. | |
6312 | 5283 * image/Makefile.in (SOURCES): Add __img__.m to the list. |
6309 | 5284 * image/image.m, image/imshow.m: Call __img__. |
5285 * plot/__uiobject_draw_axes__.m: | |
5286 Handle rgb imaged data stored in 3-d arrays. | |
5287 | |
6308 | 5288 * plot/figure.m: Doc fix. |
5289 | |
6304 | 5290 2007-02-14 Thomas Weber <thomas.weber.mail@gmail.com> |
5291 | |
5292 * audio/wavread.m, audio/wavwrite.m: Use types with specific sizes | |
5293 for reading and writing data. New tests. Improve rounding. | |
5294 | |
6302 | 5295 2007-02-13 John W. Eaton <jwe@octave.org> |
5296 | |
6303 | 5297 * plot/stem.m: New file, adapted from OctPlot. |
5298 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5299 | |
6302 | 5300 * plot/__errcomm__.m, plot/__plr1__.m, plot/__plr2__.m, |
5301 plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, | |
5302 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
5303 plot/__plt2vv__.m, plot/__plt__.m, plot/loglog.m, | |
5304 plot/loglogerr.m, plot/plot.m, plot/plot3.m, plot/polar.m, | |
5305 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, | |
5306 plot/semilogyerr.m: Return handles to line objects. | |
5307 | |
6301 | 5308 2007-02-11 John W. Eaton <jwe@octave.org> |
5309 | |
5310 * plot/__uiobject_close_all.m: New file. | |
5311 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5312 | |
6298 | 5313 2007-02-10 John W. Eaton <jwe@octave.org> |
5314 | |
5315 * plot/drawnow.m: Arrange for plot streams to be close on exit. | |
5316 * plot/__uiobject_globals__.m: Don't call mlock. | |
5317 | |
5318 * plot/drawnow.m: Only check for DISPLAY if isunix returns true. | |
5319 * plot/__uiobject_delete__.m: Send quit command and flush stream | |
5320 before calling pclose. | |
5321 | |
6291 | 5322 2007-02-09 John W. Eaton <jwe@octave.org> |
5323 | |
6295 | 5324 * plot/subplot.m: Delete spurious call to axes. |
5325 | |
6293 | 5326 * plot/figure.m: Call drawnow for current figure before creating |
5327 or switching to a new figure. | |
5328 * plot/__uiobject_init_figure__.in: Handle empty arg the same as | |
5329 nargin == 0 case. | |
5330 | |
6291 | 5331 * testfun/assert.m: Try to avoid problems when comparisons involve |
5332 strange values like Inf+NaNi. | |
5333 | |
6283 | 5334 2007-02-08 John W. Eaton <jwe@octave.org> |
5335 | |
6286 | 5336 * plot/drawnow.m: Use gnuplot_binary() instead of just "gnuplot" |
5337 and check gnuplot_use_title_option instead of just assuming -title | |
5338 works. From Michael Goffioul <michael.goffioul@swing.be>. | |
5339 | |
6285 | 5340 * Makefile.in (DISTFILES): Add move-if-change to the list. |
5341 | |
6284 | 5342 * audio/Makefile.in, control/base/Makefile.in, |
5343 control/hinf/Makefile.in, control/obsolete/Makefile.in, | |
5344 control/system/Makefile.in, control/util/Makefile.in, | |
5345 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, | |
5346 general/Makefile.in, image/Makefile.in, io/Makefile.in, | |
5347 linear-algebra/Makefile.in, miscellaneous/Makefile.in, | |
5348 optimization/Makefile.in, plot/Makefile.in, | |
5349 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
5350 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
5351 special-matrix/Makefile.in, startup/Makefile.in, | |
5352 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
5353 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
5354 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in, | |
5355 path/Makefile.in, pkg/Makefile.in: Explicitly list source files. | |
5356 | |
6283 | 5357 * plot/figure.m: Don't call drawnow. Correctly init figure when |
5358 only given property list. | |
5359 | |
6278 | 5360 2007-02-07 John W. Eaton <jwe@octave.org> |
5361 | |
6280 | 5362 * plot/__uiobject_draw_axes__.m: Handle xdir, ydir, and zdir axis |
5363 properties. | |
5364 | |
6278 | 5365 * plot/sombrero.m: Call box ("off") after mesh. |
5366 | |
5367 * plot/__uiobject_draw_axes__.m: Avoid rgb colors and "set style | |
5368 line default" commands with older versions of gnuplot. | |
5369 | |
5370 * plot/close.m: Use get (0, "currentifgure") instead of gcf. | |
5371 | |
6273 | 5372 2007-02-06 John W. Eaton <jwe@octave.org> |
5373 | |
5374 * plot/__uiobject_draw_axes__.m: Set pt to 0 if marker is ".". | |
5375 * sparse/gplot.m: Use line style - instead of 1. | |
5376 | |
6272 | 5377 2007-02-05 Rafael Laboissiere <rafael@debian.org> |
5378 | |
5379 * plot/print.m: Avoid error message from cellidx. | |
5380 | |
5381 2007-02-05 John W. Eaton <jwe@octave.org> | |
5382 | |
5383 * plot/legend.m: Fix check for data. | |
5384 | |
6270 | 5385 2007-02-05 Thomas Treichl <Thomas.Treichl@gmx.net> |
5386 | |
5387 * plot/__uiobject_draw_axes__.m (do_linestyle_command): | |
5388 Always set lt and pt. | |
5389 | |
6269 | 5390 2007-02-05 Shai Ayal <shaiay@users.sourceforge.net> |
5391 | |
5392 * plot/contourc.m: Correctly compute X and Y. | |
5393 | |
6268 | 5394 2007-02-05 John W. Eaton <jwe@octave.org> |
5395 | |
5396 * plot/__uiobject_draw_axes__.m: Use title "" if no explicit title. | |
5397 When setting {x,y,z}lim, also set {x,y,z}limmode to "auto. | |
5398 | |
6264 | 5399 2007-02-01 John W. Eaton <jwe@octave.org> |
5400 | |
6266 | 5401 * plot/__uiobject_draw_axes__.m: |
5402 Don't try to set axis limits unless we have data. | |
5403 | |
6264 | 5404 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
5405 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
5406 plot/__plt2vv__.m, plot/__plt__.m, plot/__pltopt1__.m, | |
5407 plot/__pltopt__.m, plot/plot3.m: Set and use options struct | |
5408 instead of of key and fmt strings. | |
5409 | |
5410 * plot/__pltopt1__.m: Greatly simplify. | |
5411 | |
5412 * plot/__next_line_color__.m: New file. | |
5413 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5414 * plot/newplot.m: Call __next_line_color__ here to reset rotation. | |
5415 | |
5416 * plot/__default_plot_options__.m: New file. | |
5417 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5418 | |
5419 * plot/__plt3__.m: Delete. | |
5420 * plot/Makefile.in (SOURCES_M): Remove it from the list. | |
5421 | |
6259 | 5422 2007-01-31 John W. Eaton <jwe@octave.org> |
5423 | |
6263 | 5424 * plot/__uiobject_draw_axes__.m: Set defaults for color, |
5425 linestyle, linewidth, marker, and markersize properties. | |
5426 * plot/__uiobject_draw_axes__.m: Attempt to handle line and marker | |
5427 colors and widths, and line styles. | |
5428 | |
5429 * plot/__plt__.m, image/image.m: Don't call drawnow. | |
6262 | 5430 |
6261 | 5431 * plot/__gnuplot_version__.m: Restore from CVS Attic. |
5432 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5433 | |
5434 * plot/__uiobject_draw_axes__.m: Delete useless call to | |
5435 __gnuplot_save_data__. | |
5436 | |
6259 | 5437 * image/image.m: Accept 2 args, but ignore the second for now. |
5438 | |
6258 | 5439 2007-01-30 David Bateman <dbateman@free.fr> |
5440 | |
5441 * pkg/pkg.m (pkg, isautoload, install, load_packages): Add ability | |
5442 to flag a package as to be autoloaded. Add install flags -noauto, | |
5443 -auto to force autoload behavior. | |
5444 (installed_packages): Make list of installed packages unique. | |
5445 | |
6259 | 5446 2007-01-30 John W. Eaton <jwe@octave.org> |
5447 | |
5448 * Merge of changes from graphics-branch: | |
5449 | |
5450 2007-01-29 John W. Eaton <jwe@octave.org> | |
6257 | 5451 |
5452 * plot/subplot.m: Set nextplot property of current figure to "add". | |
5453 | |
5454 * plot/__uiobject_draw_axes__.m: Only handle outerposition | |
5455 property if it exists. | |
5456 | |
6259 | 5457 2007-01-26 John W. Eaton <jwe@octave.org> |
6257 | 5458 |
5459 * plot/__uiobject_draw_axes__.m: Move initialization of max and | |
5460 min values outside of loop over child objects. | |
5461 | |
5462 * plot/contour.m, plot/contourc.m: New files. | |
5463 * plot/Makefile.in (SOURCES_M): Add them to the list. | |
5464 | |
5465 * image/image_viewer.m: Set view_fcn to "gnuplot_internal" if we | |
5466 find a gnuplot version newer than 4.0. | |
5467 * image/__img_gnuplot__.m: Delete. | |
5468 * image/image.m: Create image graphics object. | |
5469 Call newplot to setup and drawnow to finish. | |
5470 Eliminate ZOOM arg. | |
5471 | |
5472 * plot/__uiobject_draw_axes__.m: Handle image data. | |
5473 | |
5474 * plot/legend.m: Eliminate useless variable "warned". | |
5475 | |
5476 * plot/__uiobject_image_ctor__.m: New file. | |
5477 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5478 | |
5479 * plot/gcf.m: Also create new figure if currentfigure is 0. | |
5480 * plot/drawnow.m: Use get (0, "currentfigure") instead of gcf. | |
5481 | |
5482 * plot/__uiobject_root_figure_ctor__.m: Set visible property. | |
5483 | |
5484 * plot/__default_colormap__.m: New file. | |
5485 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5486 * plot/__uiobject_figure_ctor__.m: Use it to set default colormap | |
5487 property. | |
5488 * image/colormap.m: Use colormap property of current figure | |
5489 to store colormap instead of using persistent variable. | |
5490 Call __default_colormap__ to get default map value. | |
5491 * image/ocean.m, image/gray.m: Set colormap for current figure. | |
5492 | |
5493 * plot/__uiobject_draw_axes__.m: Handle aspect ratio property. | |
5494 Handle some tick mark options. | |
5495 | |
5496 * plot/__uiobject_axes_setr__.m: If we see xtick, ytick, or ztick, | |
5497 set corresponding *mode to "manual". If we set dataaspectratio, | |
5498 set dataaspectratiomode to "manual". | |
5499 | |
5500 * plot/__uiobject_axes_init__.m: Include *tick, *tickmode, | |
5501 *ticklabelmode, dataaspectratio, dataaspectratiomode properties. | |
5502 | |
5503 * plot/axis.m: New file. | |
5504 * plot/Makefile.in (SOURCES_M): Include it in the list. | |
5505 | |
5506 * plot/__uiobject_axes_setr__.m: If we see xlim, ylim, or zlim, | |
5507 set corresponding *limmode to "manual". | |
5508 * plot/__uiobject_draw_axes__.m (get_axis_limits): New subfunction. | |
5509 Use it to compute autosclaled limits. | |
5510 Arg is now handle, not object. Change all callers. | |
5511 Compute data limits. | |
5512 | |
6259 | 5513 2007-01-25 John W. Eaton <jwe@octave.org> |
6257 | 5514 |
5515 * plot/drawnow: Fix visibility check for zero args. | |
5516 | |
5517 * plot/text.m: New file. | |
5518 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5519 * plot/__uiobject_draw_axes__.m: Handle text objects. | |
5520 * plot/__uiobject_text_ctor__.m: Include units, position, and | |
5521 horizontalalignment properties. | |
5522 | |
5523 * plot/figure.m: Set options for f we just constructed or were | |
5524 given as an argument, not gcf. Only return handle if nargout > 0. | |
5525 | |
5526 * plot/drawnow.m: Handle visible field for figure here. | |
5527 * plot/__uiobject_figure_ctor__.m: Set default visible field. | |
5528 | |
5529 * plot/__uiobject_draw_axes__.m: Call undo_string_escapes on | |
5530 title and axis labels. | |
5531 | |
5532 * plot/plot3.m, plot/mesh.m: Set default 3-d view here. | |
5533 * plot/__uiobject_draw_axes__.m: Handle view for 3-d plots. | |
5534 * plot/__uiobject_axes_init__.in: Set default view field for object. | |
5535 * plot/view.m: New file. | |
5536 * plot/Makefile.in (SOURCES_M): Add it to the list. | |
5537 | |
5538 * plot/__uiobject_make_handle__.in, plot/set.m, plot/drawnow.m: | |
5539 Call __request_drawnow__. | |
5540 | |
5541 * plot/newplot.m: For "replace" action, call __uiobject_axes_init__. | |
5542 | |
5543 * plot/__uiobject_axes_ctor__.m, plot/__uiobject_text_ctor__.m: | |
5544 Call set to set properties. Return handle instead of structure. | |
5545 Change all callers. | |
5546 | |
5547 * plot/__uiobject_axes_setr__.m: New file. | |
5548 * plot/set.in: Check for __setter__ field. | |
5549 | |
5550 * plot/__uiobject_axes_init__.in: | |
5551 Rename from plot/__uiobject_axes_init__.m. | |
5552 Include __uiobject_globals__. | |
5553 Accept handle as arg instead of structure | |
5554 * plot/Makefile.in (SOURCES_M): Remove __uiobject_axes_init__.m | |
5555 from the list. | |
5556 (SOURCES_IN): Add __uiobject_axes_init__.in to the list. | |
5557 | |
6259 | 5558 2007-01-24 John W. Eaton <jwe@octave.org> |
6257 | 5559 |
5560 * plot/Makefile.in ($(GEN_M)): Depend on __uiobject_globals__.m. | |
5561 | |
5562 * plot/__uiobject_globals__.m: Call __lock_global__ when | |
5563 initializing each global variable. | |
5564 | |
6259 | 5565 2007-01-18 John W. Eaton <jwe@octave.org> |
6257 | 5566 |
5567 * plot/__uiobject_globals__.m (__uiobject_handles_free_list__, | |
5568 __uiobject_figure_handles_free_list__): New global variables. | |
5569 * plot/__uiobject_get_handle__.m, plot/__uiobject_free__.m: | |
5570 Place unused handles on the free list. | |
5571 | |
5572 * plot/__uiobject_get_figure_handle__.in: Delete. | |
5573 * plot/Makefile.in: Delete it from the SOURCES_IN list. | |
5574 | |
5575 * plot/__uiobject_init_figure__.in: Perform allocation of figure | |
5576 handles here. Return figure handle. | |
5577 * plot/figure.m: Call __uiobject_init_figure__ to allocate handle. | |
5578 | |
6259 | 5579 2007-01-11 John W. Eaton <jwe@octave.org> |
6257 | 5580 |
5581 * plot/__uiobject_draw_axes__.m: Use "%g", not "%.4g" when writing | |
5582 data for gnuplot. | |
5583 | |
5584 * plot/Makefile.in (SOURCES_M, SOURCES_IN, GEN_M): New lists of | |
5585 files. | |
5586 (SOURCES): Include $(SOURCES_M) and $(SOURCES_M) in the list. | |
5587 (DISTFILES): Include include-globals.awk in the list. | |
5588 (FCN_FILES): Define using $(SOURCES_M) and $(GEN_M). | |
5589 ($(GEN_M) : %.m : %.in): New rule. | |
5590 | |
5591 * include-globals.awk: New file. | |
5592 | |
5593 * plot/__uiobject_alloc__.in, plot/__uiobject_figures__.in, | |
5594 plot/__uiobject_free__.in, plot/__uiobject_get_figure_handle__.in, | |
5595 plot/__uiobject_get_handle__.in, plot/__uiobject_grow_list__.in, | |
5596 plot/__uiobject_handle2idx__.in, plot/__uiobject_init_figure__.in, | |
5597 plot/__uiobject_init_root_figure__.in, | |
5598 plot/__uiobject_make_handle__.in, plot/get.in, plot/set.in: | |
5599 Rename from corresponding .m files. | |
5600 | |
5601 * move-if-change: New file. | |
5602 | |
5603 * plot/__uiobject_delete__.m: New file. | |
5604 * plot/delete.m, plot/__uiobject_delete_children__.m, | |
5605 plot/__uiobject_delete_child__.m: Delete. | |
5606 * miscellaneous/delete.m: Forward to __uiobject_delete__ if arg is | |
5607 not a character string. | |
5608 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2vm__.m: | |
5609 Fix assignment to tmp key value in loop. | |
5610 * plot/__uiobject_axes_dtor__.m: No need to Call __uiobject_free__ | |
5611 for obj.title, obj.xlabel, obj.ylabel, obj.zlabel. | |
5612 * plot/__uiobject_axes_dtor__.m, plot/__uiobject_axis_init__.m: | |
5613 Inline code to delete children. | |
5614 * plot/__uiobject_free__.m: Arg is now handle, not index into | |
5615 __uiobject_list__. | |
5616 * plot/clf.m, plot/closereq.m, plot/newplot.m: No need to remove | |
5617 and free child. | |
5618 | |
6259 | 5619 2006-12-08 John W. Eaton <jwe@octave.org> |
5620 | |
5621 * plot/gcf.m: Check if the root figure object's currentfigure | |
5622 handle is empty, not 0. | |
5623 * plot/__uiobject_root_figure_ctor__.m: | |
5624 Set currentfigure to [], not 0. | |
5625 | |
5626 * plot/stairs.m: Handle matrix arguments. Improve compatibility. | |
5627 | |
5628 2006-12-07 John W. Eaton <jwe@octave.org> | |
5629 | |
5630 * plot/__plt_get_axis_arg__.m, plot/__uiobject_adopt__.m, | |
5631 plot/__uiobject_alloc__.m, plot/__uiobject_axes_ctor__.m, | |
5632 plot/__uiobject_axes_dtor__.m, plot/__uiobject_axes_init__.m, | |
5633 plot/__uiobject_delete_children__.m, | |
5634 plot/__uiobject_draw_axes__.m, plot/__uiobject_draw_figure__.m, | |
5635 plot/__uiobject_figure_ctor__.m, plot/__uiobject_figures__.m, | |
5636 plot/__uiobject_free__.m, plot/__uiobject_get_figure_handle__.m, | |
5637 plot/__uiobject_get_handle__.m, plot/__uiobject_globals__.m, | |
5638 plot/__uiobject_grow_list__.m, plot/__uiobject_handle2idx__.m, | |
5639 plot/__uiobject_init_figure__.m, | |
5640 plot/__uiobject_init_root_figure__.m, | |
5641 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.m, | |
5642 plot/__uiobject_remove_child__.m, | |
5643 plot/__uiobject_root_figure_ctor__.m, | |
5644 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m, | |
5645 plot/axes.m, plot/box.m, plot/closereq.m, plot/delete.m, | |
5646 plot/drawnow.m, plot/gca.m, plot/gcf.m, plot/get.m, | |
5647 plot/isfigure.m, plot/ishandle.m, plot/line.m, plot/newplot.m, | |
5648 plot/set.m: New files. | |
5649 | |
5650 * plot/__plt3__.m, plot/errorbar.m, plot/__axis_label__.m, | |
5651 plot/__plr1__.m, plot/__errcomm__.m, plot/print.m, plot/zlabel.m, | |
5652 plot/__plt1__.m, plot/__plt2__.m, plot/sombrero.m, plot/shg.m, | |
5653 plot/fplot.m, plot/ndgrid.m, plot/clf.m, plot/hold.m, | |
5654 plot/ishold.m, plot/meshdom.m, plot/ylabel.m, plot/__plt2ss__.m, | |
5655 plot/__plt2vv__.m, plot/__plr2__.m, plot/__plt2mm__.m, | |
5656 plot/__pltopt1__.m, plot/meshgrid.m, plot/__plt2mv__.m, | |
5657 plot/figure.m, plot/xlabel.m, plot/stairs.m, plot/__plt2vm__.m, | |
5658 plot/bar.m, plot/__errplot__.m, plot/semilogx.m, plot/semilogy.m, | |
5659 plot/loglog.m, plot/polar.m, plot/legend.m, plot/orient.m, | |
5660 plot/title.m, plot/__pltopt__.m, plot/grid.m, plot/hist.m, | |
5661 plot/subplot.m, plot/plot.m, plot/mesh.m, plot/__plt__.m, | |
5662 plot/close.m, plot/loglogerr.m, plot/plot3.m, plot/semilogxerr.m, | |
5663 plot/semilogyerr.m, plot/replot.m: | |
5664 Adapt to new graphics data structure. | |
5665 | |
5666 * plot/__do_legend__.m, plot/__gnuplot_version__.m, | |
5667 plot/__init_plot_vars__.m, plot/__make_using_clause__.m, | |
5668 plot/__plot_globals__.m, plot/__plr__.m, plot/__render_plot1__.m, | |
5669 plot/__render_plot__.m, plot/__setup_plot__.m, plot/axis.m, | |
5670 plot/contour.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, | |
5671 plot/plot_border.m, plot/subwindow.m: Delete. | |
5672 | |
5673 2007-01-24 David Bateman <dbateman@free.fr> | |
5674 | |
5675 * pkg/pkg.m: Install ChangeLog file if it exists. | |
5676 Delete bare newline in string passed to write_INDEX. | |
5677 | |
5678 * sparse/sprandsym.m: Make work for even values of N. | |
5679 | |
5680 2007-01-24 John W. Eaton <jwe@octave.org> | |
5681 | |
5682 * miscellaneous/news.m: New file. | |
5683 | |
5684 2007-01-23 Luis F. Ortiz <lortiz@interactivesupercomputing.com> | |
5685 | |
5686 * strings/strncmpi.m: Use strncmp instead of calling strtrunc on args. | |
5687 | |
5688 * strings/strncmp.m: Delete (we now have a built-in version). | |
5689 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
5690 2007-01-22 Bob Weigel <rweigel@gmu.edu> |
6259 | 5691 |
5692 * testfun/test.m: Check for all files in path, use first found. | |
5693 | |
5694 2007-01-22 David Bateman <dbateman@free.fr> | |
5695 | |
5696 * polynomial/spline.m: Make DG a column instead of a row vector. | |
5697 | |
5698 2007-01-18 S�ren Hauberg <hauberg@gmail.com> | |
5699 | |
5700 * pkg/pkg.m (copy_files): Call write_INDEX with correct target | |
5701 file name. | |
5702 | |
5703 * image/ind2rgb.m: Better input checking. Return 3-d array if | |
5704 nargout is 1. Handle colormaps that have too few colors. | |
5705 | |
5706 * pkg/pkg.m (create_pkgadddel): Call fullfile with nm, not "nm". | |
5707 (configure_make): Use fullfile instead of concatenating with "/". | |
5708 | |
6258 | 5709 2007-01-10 Baylis Shanks <bshanks3@hotmail.com> |
5710 | |
5711 * set/ismember.m: Handle N-d arrays. | |
5712 | |
5713 2007-01-10 David Bateman <dbateman@free.fr> | |
5714 | |
5715 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, | |
5716 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, | |
5717 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m: | |
5718 New files. | |
5719 | |
5720 2007-01-09 S�ren Hauberg <hauberg@gmail.com> | |
5721 | |
6778 | 5722 * pkg/pkg.m: Allow filenames to contain glob patterns. |
6258 | 5723 |
5724 2007-01-08 S�ren Hauberg <hauberg@gmail.com> | |
5725 | |
5726 * pkg/pkg.m: Use copyfile instead of calling system. Use fullfile | |
5727 instead of concatenating with "/". Use mlock to ensure that | |
5728 persistent variables are not clobbered if user types clear all. | |
5729 | |
5730 2007-01-08 John W. Eaton <jwe@octave.org> | |
5731 | |
5732 * miscellaneous/copyfile.m, miscellaneous/movefile.m: | |
5733 Improve handling of file names containing globbing characters. | |
5734 From S�ren Hauberg <hauberg@gmail.com>. | |
5735 | |
5736 2007-01-05 John W. Eaton <jwe@octave.org> | |
5737 | |
5738 * optimization/optimset.m, optimization/__fsolve_defopts__.m: | |
5739 New files. | |
5740 | |
5741 2006-12-30 John W. Eaton <jwe@octave.org> | |
5742 | |
5743 * sparse/spfun.m: Check for "function_handle" not "function handle". | |
5744 * plot/fplot.m: Likewise. Use isa instead of strcmp + class. | |
5745 | |
5746 2006-12-27 S�ren Hauberg <hauberg@gmail.com> | |
5747 | |
5748 * image/imshow.m: Strip NaNs from image. | |
5749 | |
5750 2006-12-08 David Bateman <dbateman@free.fr> | |
5751 | |
5752 * sparse/normest.m: New file. | |
5753 | |
6286 | 5754 2006-12-06 Michael Goffioul <michael.goffioul@swing.be> |
6209 | 5755 |
6210 | 5756 * miscellaneous/copyfile.m, miscellaneous/movefile.m: |
5757 Work on Windows systems without cp or mv. | |
5758 | |
6209 | 5759 * startup/inputrc: Include sequences for Windows. |
5760 | |
6203 | 5761 2006-12-06 S�ren Hauberg <hauberg@gmail.com> |
5762 | |
5763 * pkg/pkg.m (unload_packages): New function. | |
5764 (pkg): Handle unload action. | |
5765 | |
5766 * __errplot__.m: Add missing semicolon. | |
5767 | |
6193 | 5768 2006-11-30 John W. Eaton <jwe@octave.org> |
5769 | |
5770 * miscellaneous/mexext.m: New file. | |
5771 | |
6189 | 5772 2006-11-29 David Bateman <dbateman@free.fr> |
5773 | |
5774 * pkg/pkg.m: Add local_list and global_list options that allow the | |
5775 location of package lists to be probed and set. | |
5776 | |
6179 | 5777 2006-11-17 John W. Eaton <jwe@octave.org> |
5778 | |
6181 | 5779 * plot/__render_plot1__.m: Reverse y axis for images. |
5780 | |
6179 | 5781 * plot/__render_plot__.m: New args, terminal and output. |
5782 * plot/print.m: Don't set output and term here. Instead, call | |
5783 __render_plot__ with terminal and output. | |
5784 | |
6178 | 5785 2006-11-16 John W. Eaton <jwe@octave.org> |
5786 | |
5787 * plot/__render_plot1__.m: New file. | |
5788 * plot/__render_plot__.m: Use it. Loop over multiplots. | |
5789 * plot/print.m, plot/subplot.m: Don't send "set multiplot" to | |
5790 gnuplot. Let __render_plot__ do that. | |
5791 | |
6177 | 5792 2006-11-16 Francesco Potorti` <Potorti@isti.cnr.it> |
5793 | |
5794 * plot/plot.m: Fix doc string. | |
5795 | |
6173 | 5796 2006-11-16 John W. Eaton <jwe@octave.org> |
5797 | |
5798 * plot/__render_plot__.m: Check for mix of 2-d and 3-d plots | |
5799 before sending anything to the plotter. | |
5800 | |
6172 | 5801 2006-11-15 John W. Eaton <jwe@octave.org> |
5802 | |
5803 * image/__img_gnuplot__.m: Store more info in global plot | |
5804 structures and use __render_plot__ to build plot command to | |
5805 display image. | |
5806 | |
5807 * plot/__plt3__.m: New arg, parametric. Change all callers. | |
5808 | |
5809 * plot/__plot_globals__.m (__plot_line_offset__, __plot_command__, | |
5810 __plot_command_sep__): Delete. | |
5811 (__plot_data_type__, __plot_data_parametric__, | |
5812 __plot_image_colormap__, __plot_image_dims__, __plot_fmtstr__, | |
5813 __plot_usingstr__, __plot_withstr__): New variables. | |
5814 * plot/__init_plot_vars__.m: Initialize them. | |
5815 | |
5816 * plot/__init_plot_vars__.m, plot/__setup_plot__.m: | |
5817 Don't handle sep or cmd. | |
5818 | |
5819 * plot/__render_plot__.m: New function. | |
5820 * plot/__plt__.m, plot/__plt3__.m, plot/__errplot__.m: | |
5821 Store more info in global plot structures and use __render_plot__ | |
5822 to build plot command. | |
5823 * plot/replot.m: Simply call __render_plot__. | |
5824 | |
5825 * plot/contour.m, plot/mesh.m, plot/plot3.m: | |
5826 Set __plot_data_parametric__ here. | |
5827 | |
6164 | 5828 2006-11-14 John W. Eaton <jwe@octave.org> |
5829 | |
6166 | 5830 * plot/bottom_title.m, plot/top_title.m: Delete. |
5831 | |
6164 | 5832 * image/image_viewer.m: Set default values here. |
5833 * image/image.m: Not here. | |
5834 | |
5835 * image/image_viewer.m: Always return old values. Check arguments. | |
5836 * image/__img_gnuplot__.m: Rename from __img__m. | |
5837 | |
5838 2006-11-14 S�ren Hauberg <soren@hauberg.org> | |
5839 | |
5840 * image/image_viewer.m: New function. | |
5841 * image/__img_via_file__.m: New function. | |
5842 * image/image.m: Use image_viewer to determine which program to | |
5843 use for image viewing. | |
6754 | 5844 * image/__img__.m: Silently accept more than 3 args. |
6164 | 5845 |
6163 | 5846 2006-11-14 John W. Eaton <jwe@octave.org> |
5847 | |
5848 * plot/__do_legend__.m, plot/__errplot__.m, | |
5849 plot/__init_plot_vars__.m, plot/__plot_globals__.m, | |
5850 plot/__plt3__.m, plot/__plt__.m, plot/__setup_plot__.m, | |
5851 plot/legend.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, | |
5852 plot/replot.m, plot/subplot.m, plot/subwindow.m: | |
5853 Use __plot_globals__ for multiplot variables. Keep track of | |
5854 multiplot info for each figure. Eliminate __multiplot_xscale__. | |
5855 | |
6157 | 5856 2006-11-13 John W. Eaton <jwe@octave.org> |
5857 | |
6158 | 5858 * plot/mesh.m: Use proper dimensions for y in call to repmat. |
5859 | |
6157 | 5860 * miscellaneous/substruct.m: New function. |
5861 | |
5862 * testfun/assert.m: Force orientation to match when comparing | |
5863 struct elements. | |
5864 | |
5865 * general/__isequal__.m: Avoid assignment of comma-separated lists | |
5866 when comparing structs. | |
5867 | |
5868 2006-11-13 S�ren Hauberg <hauberg@gmail.com> | |
5869 | |
6754 | 5870 * general/bicubic.m, general/cart2pol.m, general/cart2sph.m, |
5871 plot/contour.m, linear-algebra/cross.m, general/cumtrapz.m, | |
5872 linear-algebra/dot.m, image/imshow.m, general/interp2.m, | |
5873 general/mod.m, plot/plot3.m, plot/__plr2__.m, plot/__plr__.m, | |
5874 general/pol2cart.m, general/polyarea.m, polynomial/polyfit.m, | |
5875 general/rem.m, image/rgb2ind.m, general/sph2cart.m, | |
5876 general/trapz.m, miscellaneous/xor.m: Use size_equal. | |
6157 | 5877 |
6156 | 5878 2006-11-13 John W. Eaton <jwe@octave.org> |
5879 | |
5880 * plot/mesh.m: Use size_equal to compare dimensions. | |
5881 | |
6154 | 5882 2006-11-13 S�ren Hauberg <soren@hauberg.org> |
5883 | |
5884 * plot/mesh.m: Simplify. Set hidden3d for the plot. | |
5885 | |
6152 | 5886 2006-11-11 S�ren Hauberg <soren@hauberg.org> |
5887 | |
5888 * miscellaneous/copyfile.m: Fix docs to match function. | |
5889 | |
6145 | 5890 2006-11-08 John W. Eaton <jwe@octave.org> |
5891 | |
6146 | 5892 * plot/legend.m: New function, adapted from Octave Forge. |
5893 | |
5894 * plot/__do_legend__.m: New function. | |
5895 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m, | |
5896 plot/replot.m: Call it before plotting. | |
5897 | |
5898 * plot/plot3.m, plot/mesh.m, plot/contour.m: Don't send "set | |
5899 noparametric" to gnuplot.. | |
5900 | |
5901 * plot/__plotopt__.m, plot/__pltopt1__.m, plot/__plt1__.m, | |
5902 plot/__plt2__.m, plot/__plt2mm__.m, plot/__plt2mv__.m, | |
5903 plot/__plt2ss__.m, plot/__plt2vm__.m, plot/__plt2vv__.m: Accept | |
5904 and return key title separate from line format. Accept format and | |
5905 key as cellstr. Always return data as cell array. Return format | |
5906 and key title as cellstr. | |
5907 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m: | |
5908 Handle line format and key titles separately. | |
5909 * plot/__plt3__.m, plot/__plt__.m: Handle data as cell array only. | |
5910 | |
5911 * plot/__plot_globals__.m (__plot_line_offset__, | |
5912 __plot_key_labels__, __plot_key_properties__): New global | |
5913 variables. Initialize them. | |
5914 * plot/__init_plot_vars__.m (__plot_line_offset__, | |
5915 __plot_key_labels__, __plot_key_properties__): Initialize. | |
5916 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m | |
5917 (__plot_line_offset__, __plot_key_labels__, | |
5918 __plot_key_properties__): Store information about plot key titles. | |
5919 | |
5920 * plot/__errplot__.m, plot/__init_plot_vars__.m, plot/__plt3__.m, | |
5921 plot/__plt__.m: Use cf, mxi, and myi as shorthand for | |
5922 __current_figure__, __multiplot_xi__, and __multiplot_yi__, | |
5923 respectively. | |
5924 | |
5925 * plot/__errcomm__.m: Allow fmt to be cellstr. | |
5926 | |
6145 | 5927 * strings/strcat.m: Disable Octave:empty-list-elements warning |
5928 whle concatenating args. | |
5929 | |
6144 | 5930 2006-11-07 John W. Eaton <jwe@octave.org> |
5931 | |
5932 * startup/main-rcfile: Conditionally set PAGER_FLAGS. | |
5933 | |
6142 | 5934 2006-11-06 S�ren Hauberg <soren@hauberg.org> |
5935 | |
6143 | 5936 * pkg/pkg.m (extract_pkg): No need to pass "dotexceptnewline" |
5937 option to regexp. | |
5938 | |
6142 | 5939 * image/__img__.m: Send "set size ratio -1" before plotting. |
5940 | |
6138 | 5941 2006-11-03 Bill Denney <denney@seas.upenn.edu> |
5942 | |
6139 | 5943 * strings/index.m: New arg, direction. Simplify and speed up. |
5944 * strings/rindex.m: Implement using index (..., "last"); | |
5945 | |
6754 | 5946 * blanks.m, strcat.m: Simplify. Add tests. |
6138 | 5947 |
6130 | 5948 2006-11-01 Bill Denney <denney@seas.upenn.edu> |
5949 | |
5950 * general/__isequal__.m: Test size and class more consistently. | |
5951 | |
6116 | 5952 2006-10-27 John W. Eaton <jwe@octave.org> |
5953 | |
6117 | 5954 * miscellaneous/ls_command.m: Use /D instead of /w. |
5955 From Michael Goffioul <michael.goffioul@swing.be>. | |
5956 | |
6116 | 5957 * miscellaneous/ls.m, miscellaneous/ls_command.m: New files. |
5958 * miscellaneous/dir.m: Mark as a command. | |
5959 | |
6112 | 5960 2006-10-27 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
5961 | |
5962 * miscellaneous/unpack.m: Fix missing comma in strcat call. | |
5963 | |
6088 | 5964 2006-10-25 John W. Eaton <jwe@octave.org> |
5965 | |
5966 * image/image.m: Set x = y = [] when nargin == 0; | |
5967 | |
5968 2006-10-25 Quentin Spencer <qspencer@ieee.org> | |
5969 | |
5970 * image/image.m: Call __img__ if gnuplot version is > 4.0. | |
5971 * image/__img__.m: New file, originally from | |
5972 Daniel J Sebald <daniel.sebald@ieee.org>. | |
5973 | |
6087 | 5974 2006-10-25 John W. Eaton <jwe@octave.org> |
5975 | |
5976 * plot/__gnuplot_version__.m: New function, originally from | |
5977 Daniel J Sebald <daniel.sebald@ieee.org> by way of | |
5978 Quentin Spencer <qspencer@ieee.org>. | |
5979 | |
6085 | 5980 2006-10-25 S�ren Hauberg <soren@hauberg.org> |
5981 | |
5982 * plot/__pltopt__.m: Update symbol marker id numbers for gnuplot 4. | |
5983 | |
6081 | 5984 2006-10-24 Bill Denney <denney@seas.upenn.edu> |
5985 | |
5986 * miscellaneous/unpack.m, miscellaneous/bunzip2.m, | |
5987 miscellaneous/gunzip.m: New files. | |
5988 * miscellaneous/untar.m, miscellaneous/unzip.m: | |
5989 Call unpack to do the real work. | |
5990 | |
6075 | 5991 2006-10-24 John W. Eaton <jwe@octave.org> |
5992 | |
6078 | 5993 * plot/plot3.m: If we have a format string, then also pass using |
5994 string to __plt3__. | |
5995 | |
6077 | 5996 * plot/sombrero.m: Don't return anything if nargout == 0. |
5997 | |
6075 | 5998 * plot/__plt3__.m: Create using clause if none is supplied. |
6077 | 5999 * plot/mesh.m: Always pass empty using string to __plt3__. |
6075 | 6000 |
6069 | 6001 2006-10-20 Bill Denney <denney@seas.upenn.edu> |
6002 | |
6003 * movefile.m, copyfile.m: Handle cellstr lists of files. | |
6004 Quote filenames in shell commands. | |
6005 | |
6055 | 6006 2006-10-17 David Bateman <dbateman@free.fr> |
6007 | |
6008 * pkg/pkg.m (uninstall): Allow the uninstall to proceed even if | |
6009 the package directory is missing. | |
6010 | |
6052 | 6011 2006-10-13 John W. Eaton <jwe@octave.org> |
6012 | |
6013 * plot/box.m: New function. | |
6014 | |
6050 | 6015 2006-10-13 Etienne Grossmann <etienne@tyzx.com> |
6016 | |
6017 * general/ind2sub.m, general/sub2ind.m: Handle empty indices. | |
6018 | |
6049 | 6019 2006-10-12 Quentin Spencer <qspencer@ieee.org> |
6020 | |
6021 * plot/sombrero.m: Only plot if nargout == 0. Otherwise, return data. | |
6022 | |
6047 | 6023 2006-10-10 John W. Eaton <jwe@octave.org> |
6024 | |
6025 * miscellaneous/copyfile.m, miscellaneous/movefile.m: New functions. | |
6026 | |
6046 | 6027 2006-10-10 Bill Denney <denney@seas.upenn.edu> |
6028 | |
6029 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, | |
6030 audio/playaudio.m, audio/record.m, audio/saveaudio.m, | |
6031 audio/setaudio.m, audio/wavread.m, audio/wavwrite.m, | |
6032 control/base/__bodquist__.m, control/base/__freqresp__.m, | |
6033 control/base/are.m, control/base/bode.m, control/base/ctrb.m, | |
6034 control/base/damp.m, control/base/dare.m, control/base/dcgain.m, | |
6035 control/base/dre.m, control/base/impulse.m, control/base/lqg.m, | |
6036 control/base/lsim.m, control/base/lyap.m, control/base/nichols.m, | |
6037 control/base/nyquist.m, control/base/obsv.m, control/base/pzmap.m, | |
6038 control/base/rlocus.m, control/base/step.m, control/base/tzero.m, | |
6039 control/hinf/h2norm.m, control/hinf/h2syn.m, | |
6040 control/hinf/hinfnorm.m, control/hinf/hinfsyn.m, | |
6041 control/hinf/is_dgkf.m, control/hinf/wgt1o.m, | |
6042 control/obsolete/dezero.m, control/system/__sysdefioname__.m, | |
6043 control/system/buildssic.m, control/system/c2d.m, | |
6044 control/system/cellidx.m, control/system/d2c.m, | |
6045 control/system/dmr2d.m, control/system/fir2sys.m, | |
6046 control/system/is_abcd.m, control/system/is_controllable.m, | |
6047 control/system/is_detectable.m, control/system/is_digital.m, | |
6048 control/system/is_observable.m, control/system/is_siso.m, | |
6049 control/system/is_stabilizable.m, control/system/is_stable.m, | |
6050 control/system/jet707.m, control/system/listidx.m, | |
6051 control/system/ord2.m, control/system/parallel.m, | |
6052 control/system/ss.m, control/system/ss2zp.m, | |
6053 control/system/starp.m, control/system/sys2ss.m, | |
6054 control/system/sys2tf.m, control/system/sys2zp.m, | |
6055 control/system/sysadd.m, control/system/sysappend.m, | |
6056 control/system/syschtsam.m, control/system/sysconnect.m, | |
6057 control/system/syscont.m, control/system/sysdimensions.m, | |
6058 control/system/sysdisc.m, control/system/sysdup.m, | |
6059 control/system/sysgetsignals.m, control/system/sysgettsam.m, | |
6060 control/system/sysgroup.m, control/system/sysidx.m, | |
6061 control/system/sysmin.m, control/system/sysmult.m, | |
6062 control/system/sysout.m, control/system/sysprune.m, | |
6063 control/system/sysscale.m, control/system/syssetsignals.m, | |
6064 control/system/syssub.m, control/system/sysupdate.m, | |
6065 control/system/tf.m, control/system/tfout.m, | |
6066 control/system/ugain.m, control/system/zp.m, | |
6067 control/system/zpout.m, control/util/__outlist__.m, | |
6068 control/util/__zgpbal__.m, control/util/prompt.m, | |
6069 control/util/sortcom.m, control/util/strappend.m, | |
6070 deprecated/com2str.m, elfun/acot.m, elfun/acoth.m, elfun/acsc.m, | |
6071 elfun/acsch.m, elfun/asec.m, elfun/asech.m, elfun/cot.m, | |
6072 elfun/coth.m, elfun/csc.m, elfun/csch.m, elfun/lcm.m, elfun/sec.m, | |
6073 elfun/sech.m, finance/fv.m, finance/fvl.m, finance/irr.m, | |
6074 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, | |
6075 finance/pvl.m, finance/rate.m, finance/vol.m, | |
6076 general/__isequal__.m, general/bitcmp.m, general/bitget.m, | |
6077 general/bitset.m, general/blkdiag.m, general/cart2sph.m, | |
6078 general/cell2mat.m, general/circshift.m, general/cplxpair.m, | |
6079 general/cumtrapz.m, general/deal.m, general/diff.m, | |
6080 general/flipdim.m, general/fliplr.m, general/flipud.m, | |
6081 general/ind2sub.m, general/int2str.m, | |
6082 general/is_duplicate_entry.m, general/isdefinite.m, | |
6083 general/isequal.m, general/isequalwithequalnans.m, | |
6084 general/isscalar.m, general/issquare.m, general/issymmetric.m, | |
6085 general/isvector.m, general/logical.m, general/logspace.m, | |
6086 general/mod.m, general/nargchk.m, general/nextpow2.m, | |
6087 general/perror.m, general/postpad.m, general/prepad.m, | |
6088 general/randperm.m, general/rem.m, general/repmat.m, | |
6089 general/rot90.m, general/rotdim.m, general/shift.m, | |
6090 general/shiftdim.m, general/sph2cart.m, general/strerror.m, | |
6091 general/sub2ind.m, general/trapz.m, general/tril.m, | |
6092 general/triu.m, image/gray.m, image/gray2ind.m, image/hsv2rgb.m, | |
6093 image/image.m, image/imagesc.m, image/ind2gray.m, image/ind2rgb.m, | |
6094 image/loadimage.m, image/ntsc2rgb.m, image/ocean.m, | |
6095 image/rgb2hsv.m, image/rgb2ntsc.m, image/saveimage.m, io/beep.m, | |
6096 linear-algebra/commutation_matrix.m, linear-algebra/cond.m, | |
6097 linear-algebra/cross.m, linear-algebra/dmult.m, | |
6098 linear-algebra/dot.m, linear-algebra/duplication_matrix.m, | |
6099 linear-algebra/krylov.m, linear-algebra/krylovb.m, | |
6100 linear-algebra/logm.m, linear-algebra/norm.m, | |
6101 linear-algebra/null.m, linear-algebra/orth.m, | |
6102 linear-algebra/qzhess.m, linear-algebra/rank.m, | |
6103 linear-algebra/trace.m, linear-algebra/vec.m, | |
6104 linear-algebra/vech.m, miscellaneous/bincoeff.m, | |
6105 miscellaneous/delete.m, miscellaneous/dir.m, miscellaneous/dos.m, | |
6106 miscellaneous/fileattrib.m, miscellaneous/fileparts.m, | |
6107 miscellaneous/flops.m, miscellaneous/fullfile.m, | |
6108 miscellaneous/ispc.m, miscellaneous/isunix.m, | |
6109 miscellaneous/menu.m, miscellaneous/not.m, miscellaneous/popen2.m, | |
6110 miscellaneous/single.m, miscellaneous/unix.m, miscellaneous/ver.m, | |
6111 miscellaneous/xor.m, optimization/glpk.m, optimization/glpkmex.m, | |
6112 optimization/qp.m, optimization/sqp.m, plot/__axis_label__.m, | |
6113 plot/__errplot__.m, plot/__plr1__.m, plot/__plr2__.m, | |
6114 plot/__plr__.m, plot/__plt1__.m, plot/__plt2__.m, | |
6115 plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, | |
6116 plot/__plt2vm__.m, plot/__plt2vv__.m, plot/__pltopt1__.m, | |
6117 plot/__pltopt__.m, plot/bar.m, plot/bottom_title.m, plot/close.m, | |
6118 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/fplot.m, | |
6119 plot/grid.m, plot/hist.m, plot/hold.m, plot/ishold.m, | |
6120 plot/loglogerr.m, plot/mesh.m, plot/meshdom.m, plot/meshgrid.m, | |
6121 plot/multiplot.m, plot/orient.m, plot/polar.m, plot/replot.m, | |
6122 plot/semilogxerr.m, plot/semilogyerr.m, plot/sombrero.m, | |
6123 plot/stairs.m, plot/subplot.m, plot/subwindow.m, plot/title.m, | |
6124 plot/top_title.m, polynomial/compan.m, polynomial/conv.m, | |
6125 polynomial/deconv.m, polynomial/mkpp.m, polynomial/poly.m, | |
6126 polynomial/polyder.m, polynomial/polyderiv.m, | |
6127 polynomial/polyfit.m, polynomial/polygcd.m, | |
6128 polynomial/polyinteg.m, polynomial/polyout.m, | |
6129 polynomial/polyreduce.m, polynomial/polyval.m, | |
6130 polynomial/polyvalm.m, polynomial/ppval.m, polynomial/residue.m, | |
6131 polynomial/roots.m, polynomial/unmkpp.m, quaternion/quaternion.m, | |
6132 set/complement.m, set/create_set.m, set/intersect.m, | |
6133 set/ismember.m, set/setdiff.m, set/setxor.m, set/union.m, | |
6134 set/unique.m, signal/arch_fit.m, signal/arch_rnd.m, | |
6135 signal/arma_rnd.m, signal/autocor.m, signal/autoreg_matrix.m, | |
6136 signal/bartlett.m, signal/blackman.m, signal/detrend.m, | |
6137 signal/diffpara.m, signal/durbinlevinson.m, signal/fftconv.m, | |
6138 signal/fftfilt.m, signal/fftshift.m, signal/filter2.m, | |
6139 signal/freqz.m, signal/hamming.m, signal/hanning.m, | |
6140 signal/hurst.m, signal/ifftshift.m, signal/sinetone.m, | |
6141 signal/sinewave.m, signal/spencer.m, signal/stft.m, | |
6142 signal/synthesis.m, signal/unwrap.m, sparse/gplot.m, | |
6143 sparse/spfun.m, sparse/sprand.m, sparse/sprandn.m, | |
6144 sparse/sprandsym.m, sparse/spstats.m, specfun/beta.m, | |
6145 specfun/betai.m, specfun/betaln.m, specfun/erfinv.m, | |
6146 specfun/gammai.m, specfun/log2.m, specfun/pow2.m, | |
6147 special-matrix/hankel.m, special-matrix/hilb.m, | |
6148 special-matrix/invhilb.m, special-matrix/sylvester_matrix.m, | |
6149 special-matrix/toeplitz.m, special-matrix/vander.m, | |
6150 statistics/base/center.m, statistics/base/cloglog.m, | |
6151 statistics/base/cor.m, statistics/base/corrcoef.m, | |
6152 statistics/base/cov.m, statistics/base/cut.m, | |
6153 statistics/base/gls.m, statistics/base/iqr.m, | |
6154 statistics/base/kendall.m, statistics/base/kurtosis.m, | |
6155 statistics/base/logit.m, statistics/base/mahalanobis.m, | |
6156 statistics/base/mean.m, statistics/base/meansq.m, | |
6157 statistics/base/median.m, statistics/base/moment.m, | |
6158 statistics/base/ols.m, statistics/base/ppplot.m, | |
6159 statistics/base/probit.m, statistics/base/qqplot.m, | |
6160 statistics/base/range.m, statistics/base/ranks.m, | |
6161 statistics/base/run_count.m, statistics/base/skewness.m, | |
6162 statistics/base/spearman.m, statistics/base/statistics.m, | |
6163 statistics/base/std.m, statistics/base/studentize.m, | |
6164 statistics/base/table.m, statistics/base/values.m, | |
6165 statistics/base/var.m, statistics/distributions/betacdf.m, | |
6166 statistics/distributions/betainv.m, | |
6167 statistics/distributions/betapdf.m, | |
6168 statistics/distributions/betarnd.m, | |
6169 statistics/distributions/binocdf.m, | |
6170 statistics/distributions/binoinv.m, | |
6171 statistics/distributions/binopdf.m, | |
6172 statistics/distributions/binornd.m, | |
6173 statistics/distributions/cauchy_cdf.m, | |
6174 statistics/distributions/cauchy_inv.m, | |
6175 statistics/distributions/cauchy_pdf.m, | |
6176 statistics/distributions/cauchy_rnd.m, | |
6177 statistics/distributions/chi2cdf.m, | |
6178 statistics/distributions/chi2inv.m, | |
6179 statistics/distributions/chi2pdf.m, | |
6180 statistics/distributions/chi2rnd.m, | |
6181 statistics/distributions/discrete_cdf.m, | |
6182 statistics/distributions/discrete_inv.m, | |
6183 statistics/distributions/discrete_pdf.m, | |
6184 statistics/distributions/discrete_rnd.m, | |
6185 statistics/distributions/empirical_rnd.m, | |
6186 statistics/distributions/expcdf.m, | |
6187 statistics/distributions/expinv.m, | |
6188 statistics/distributions/exppdf.m, | |
6189 statistics/distributions/exprnd.m, | |
6190 statistics/distributions/fcdf.m, statistics/distributions/finv.m, | |
6191 statistics/distributions/fpdf.m, statistics/distributions/frnd.m, | |
6192 statistics/distributions/gamcdf.m, | |
6193 statistics/distributions/gaminv.m, | |
6194 statistics/distributions/gampdf.m, | |
6195 statistics/distributions/gamrnd.m, | |
6196 statistics/distributions/geocdf.m, | |
6197 statistics/distributions/geoinv.m, | |
6198 statistics/distributions/geopdf.m, | |
6199 statistics/distributions/geornd.m, | |
6200 statistics/distributions/hygecdf.m, | |
6201 statistics/distributions/hygeinv.m, | |
6202 statistics/distributions/hygepdf.m, | |
6203 statistics/distributions/hygernd.m, | |
6204 statistics/distributions/kolmogorov_smirnov_cdf.m, | |
6205 statistics/distributions/laplace_cdf.m, | |
6206 statistics/distributions/laplace_inv.m, | |
6207 statistics/distributions/laplace_pdf.m, | |
6208 statistics/distributions/laplace_rnd.m, | |
6209 statistics/distributions/logistic_cdf.m, | |
6210 statistics/distributions/logistic_inv.m, | |
6211 statistics/distributions/logistic_pdf.m, | |
6212 statistics/distributions/logistic_rnd.m, | |
6213 statistics/distributions/logncdf.m, | |
6214 statistics/distributions/logninv.m, | |
6215 statistics/distributions/lognpdf.m, | |
6216 statistics/distributions/lognrnd.m, | |
6217 statistics/distributions/normcdf.m, | |
6218 statistics/distributions/norminv.m, | |
6219 statistics/distributions/normpdf.m, | |
6220 statistics/distributions/normrnd.m, | |
6221 statistics/distributions/pascal_cdf.m, | |
6222 statistics/distributions/pascal_inv.m, | |
6223 statistics/distributions/pascal_pdf.m, | |
6224 statistics/distributions/pascal_rnd.m, | |
6225 statistics/distributions/poisscdf.m, | |
6226 statistics/distributions/poissinv.m, | |
6227 statistics/distributions/poisspdf.m, | |
6228 statistics/distributions/poissrnd.m, | |
6229 statistics/distributions/stdnormal_cdf.m, | |
6230 statistics/distributions/stdnormal_inv.m, | |
6231 statistics/distributions/stdnormal_pdf.m, | |
6232 statistics/distributions/stdnormal_rnd.m, | |
6233 statistics/distributions/tcdf.m, statistics/distributions/tinv.m, | |
6234 statistics/distributions/tpdf.m, statistics/distributions/trnd.m, | |
6235 statistics/distributions/unifcdf.m, | |
6236 statistics/distributions/unifinv.m, | |
6237 statistics/distributions/unifpdf.m, | |
6238 statistics/distributions/unifrnd.m, | |
6239 statistics/distributions/wblcdf.m, | |
6240 statistics/distributions/wblinv.m, | |
6241 statistics/distributions/wblpdf.m, | |
6242 statistics/distributions/wblrnd.m, | |
6243 statistics/distributions/wienrnd.m, statistics/tests/anova.m, | |
6244 statistics/tests/bartlett_test.m, | |
6245 statistics/tests/chisquare_test_homogeneity.m, | |
6246 statistics/tests/chisquare_test_independence.m, | |
6247 statistics/tests/cor_test.m, statistics/tests/f_test_regression.m, | |
6248 statistics/tests/hotelling_test.m, | |
6249 statistics/tests/hotelling_test_2.m, | |
6250 statistics/tests/kolmogorov_smirnov_test.m, | |
6251 statistics/tests/kolmogorov_smirnov_test_2.m, | |
6252 statistics/tests/kruskal_wallis_test.m, statistics/tests/manova.m, | |
6253 statistics/tests/mcnemar_test.m, statistics/tests/prop_test_2.m, | |
6254 statistics/tests/run_test.m, statistics/tests/sign_test.m, | |
6255 statistics/tests/t_test.m, statistics/tests/t_test_2.m, | |
6256 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, | |
6257 statistics/tests/var_test.m, statistics/tests/welch_test.m, | |
6258 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, | |
6259 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, | |
6260 strings/deblank.m, strings/dec2base.m, strings/dec2bin.m, | |
6261 strings/dec2hex.m, strings/findstr.m, strings/hex2dec.m, | |
6262 strings/index.m, strings/isletter.m, strings/lower.m, | |
6263 strings/rindex.m, strings/split.m, strings/str2mat.m, | |
6264 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, | |
6265 strings/strfind.m, strings/strjust.m, strings/strmatch.m, | |
6266 strings/strncmp.m, strings/strncmpi.m, strings/strrep.m, | |
6267 strings/strtrunc.m, strings/strvcat.m, strings/substr.m, | |
6268 strings/upper.m, testfun/assert.m, testfun/demo.m, | |
6269 testfun/example.m, testfun/fail.m, testfun/speed.m, | |
6270 testfun/test.m, time/asctime.m, time/calendar.m, time/ctime.m, | |
6271 time/datenum.m, time/datestr.m, time/datevec.m, time/eomday.m, | |
6272 time/etime.m, time/is_leap_year.m: | |
6273 Use print_usage instead of usage. | |
6274 | |
6044 | 6275 2006-10-09 David Bateman <dbateman@free.fr> |
6276 | |
6277 * time/datevec.m: Add additional compatible default parsing strings. | |
6278 | |
6395 | 6279 2006-10-09 Bill Denney <denney@seas.upenn.edu> |
6041 | 6280 |
6042 | 6281 * pkg/pkg.m: Remove trailing "\n" from error messages. |
6282 Remove compare_versions subfunction. | |
6283 | |
6284 * miscellaneous/compare_versions.m: New function to compare | |
6285 version numbers as strings with any boolean operators. | |
6286 | |
6041 | 6287 * miscellaneous/untar.m: Check more rigorously to see if the tar |
6288 file exists. | |
6289 | |
6036 | 6290 2006-10-04 John W. Eaton <jwe@octave.org> |
6291 | |
6292 * pkg/pkg.m: Use fullfile to concatenate directory and file names. | |
6293 | |
6032 | 6294 2006-10-04 S�ren Hauberg <soren@hauberg.org> |
6295 | |
6037 | 6296 * pkg/pkg.m: Update docs. Handle prefix option. |
6297 Handle dependencies for load option. | |
6032 | 6298 |
6029 | 6299 2006-10-04 John W. Eaton <jwe@octave.org> |
6300 | |
6030 | 6301 * deprecated/clearplot.m, deprecated/clg.m: New functions. |
6302 | |
6303 * plot/clg.m: Delete. | |
6304 * plot/__init_plot_vars__.m: New function. | |
6305 * plot/__setup_plot__.m: Use __init_plot_vars__. | |
6029 | 6306 |
6025 | 6307 2006-10-03 S�ren Hauberg <soren@hauberg.org> |
6308 | |
6309 * pkg/pkg.m: Avoid calling addpath with no args. | |
6310 | |
6024 | 6311 2006-10-03 Bill Denney <denney@seas.upenn.edu> |
6312 | |
6313 * audio/loadaudio.m, control/base/nyquist.m, | |
6314 control/system/__zp2ssg2__.m, linear-algebra/cross.m, | |
6315 linear-algebra/krylov.m, statistics/base/center.m, | |
6316 statistics/base/median.m, statistics/base/std.m, | |
6317 statistics/base/var.m, testfun/test.m: Use the new find syntax to | |
6318 find first or last element matching a condition. | |
6319 | |
6023 | 6320 2006-10-02 Bill Denney <denney@seas.upenn.edu> |
6321 | |
6322 * strings/deblank.m, strings/upper.m, strings/lower.m, | |
6323 general/__isequal__.m: Minimize looping using cellfun. | |
6324 | |
6020 | 6325 2006-10-02 David Bateman <dbateman@free.fr> |
6326 | |
6327 * pkg/pkg.m (copy_files): always create installation directory. | |
6328 | |
6016 | 6329 2006-10-02 Thomas Weber <thomas.weber.mail@gmail.com> |
6330 | |
6331 * miscellaneous/doc.m: Swap file and directory args to info. | |
6332 | |
6333 2006-10-01 Arno Onken <whyly@gmx.net> | |
6334 | |
6335 * statistics/distributions/exprnd.m: Fix typo. | |
6336 | |
6014 | 6337 2006-09-30 Benjamin Lindner <lindnerben@gmx.net> |
6338 | |
6339 * polynomial/ppval.m: Use .' instead of '. | |
6340 * polynomial/spline.m: Likewise. New tests. | |
6341 | |
6004 | 6342 2006-09-26 David Bateman <dbateman@free.fr> |
6343 | |
6344 * __plt3__.m: Using global variables __plot_data__, | |
6345 __plot_data_offset__ and __plot_command__ to store plots and | |
6346 correctly handle multiplots, and hold state. Only accept a single | |
6347 data parameter plus, using, format and with strings. Remove | |
6348 setting of gnuplot parameters. | |
6349 * __make_using_clause__.m: New function extracted from __plt__.m. | |
6350 * __setup_plot__.m: Convert to a function and pass the plotting | |
6351 command to use. | |
6352 * __plt__.m: Change call to __setup_plot__ and __make_using_clause__. | |
6353 * contour.m: Use unwind protect on the parametric state of plot | |
6354 and __plt3__ instead of calling __gnuplot_splot__ directly. | |
6355 * mesh.m: ditto. | |
6356 * plot3.m: Error checking, setting of parametric state and | |
6357 formation of matrix to plot moved from old __plt3__. | |
6358 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6359 2006-09-22 Michael Creel <michael.creel@uab.es> |
5996 | 6360 |
5997 | 6361 * deprecated/chisquare_pdf.m: Typo in documentation. |
5996 | 6362 |
6363 2006-09-22 S�ren Hauberg <soren@hauberg.org> | |
6364 | |
6365 * signal/filter2.m: Correct texinfo doc. | |
6366 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6367 2006-09-22 David Bateman <dbateman@free.fr> |
5996 | 6368 |
6369 * miscellaneous/parseparams.m: Correct texinfo doc. | |
6370 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6371 2006-09-15 David Bateman <dbateman@free.fr> |
5993 | 6372 |
6373 * pkg/pkg.m (prepare_installation): Don't create package | |
6374 installation directory here. | |
6375 (copy_files): Create it here instead, to avoid issues with | |
6376 upgrades. Also install the COPYING file in packinfo. | |
6377 | |
5989 | 6378 2006-09-13 John W. Eaton <jwe@octave.org> |
6379 | |
6380 * general/blkdiag.m: Adjust to new cellfun rules. | |
6381 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6382 2006-08-30 David Bateman <dbateman@free.fr> |
5987 | 6383 |
6384 * pkg/pkg.m (install): Disallow bundles of packages. More verbose | |
6385 error message for archive name not matching package name. | |
6386 (installed_packages): Size header of printed results to | |
6387 arguments. Sort the list of installed packages before printing | |
6388 them. | |
6389 | |
5986 | 6390 2006-09-11 Paul Kienzle <pkienzle@users.sf.net> |
6391 | |
6392 * signal/freqz.m: Update tests. | |
6393 | |
6394 2006-09-11 Ken Kouno <kouno@mk.ecei.tohoku.ac.jp> | |
6395 | |
6396 * signal/freqz.m: Corretly postpad arrays. | |
6397 Don't call fliplr on a column vector. | |
6398 | |
5984 | 6399 2006-09-11 Luis F. Ortiz <lortiz@interactivesupercomputing.com> |
6400 | |
6401 * general/shiftdim.m: Use permute instead of reshape. | |
6402 | |
5981 | 6403 2006-09-05 Alexander Barth <abarth93@users.sourceforge.net> |
6404 | |
6405 * miscellaneous/parseparams.m: New function. | |
6406 | |
5980 | 6407 2006-09-05 Rafael Laboissiere <rafael@debian.org> |
6408 | |
6409 * miscellaneous/doc.m: Swap order of --file and --directory | |
6410 options for info program invocation. | |
6411 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6412 2006-08-30 David Bateman <dbateman@free.fr> |
5976 | 6413 |
5987 | 6414 * pkg/pkg.m (create_pkgadddel): Resolve variable name-clash from |
5976 | 6415 previous change. |
6416 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6417 2006-08-26 David Bateman <dbateman@free.fr> |
5974 | 6418 |
6419 * pkg/pkg.m (install, uninstall, installed_packages): Allow for | |
6420 absence of trailing "/" in OCTAVE_HOME. | |
6421 | |
5973 | 6422 2006-08-25 Alexander Barth <abarth@marine.usf.edu> |
6423 | |
6424 * time/datenum.m: Allow arg to be character string. | |
6425 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6426 2006-08-25 David Bateman <dbateman@free.fr> |
5971 | 6427 |
6428 * pkg/pkg.m (install): Verify that package name correponds to the | |
6429 archive name. Treat both PKG_ADD and PKG_DEL and remove them if | |
6430 they are empty. If package directory is empty, remove it to fail | |
6431 gracefully for system specific packages. | |
6432 (extract_pkgadd, create_pkgadd): delete. | |
6433 (extract_pkg, create_pkg): Generalized versions of deleted functions | |
6434 (copy_files): Install both bin/ and doc/ directories, adding the | |
6435 bin/ to the EXEC_PATH when the package is loaded. | |
6436 | |
5962 | 6437 2006-08-24 John W. Eaton <jwe@octave.org> |
6438 | |
6439 * image/saveimage.m: Use logical indexing instead of | |
6440 indices computed by calling find on the logical index. | |
6441 | |
5961 | 6442 2006-08-24 S�ren Hauberg <soren@hauberg.org> |
6443 | |
5967 | 6444 * miscellaneous/bincoeff.m, specfun/factorial.m: |
5963 | 6445 Use logical indexing instead of indices computed by calling find |
6446 on the logical index. | |
6447 | |
6448 * linear-algebra/krylov.m: Delete unused local var nzidx. | |
5961 | 6449 |
5959 | 6450 2006-08-23 Quentin Spencer <qspencer@ieee.org> |
6451 | |
6452 * control/system/tf2zp.m: Simplify gain calculation. | |
6453 | |
5958 | 6454 2006-08-23 John W. Eaton <jwe@octave.org> |
6455 | |
6456 * plot/__plt__.m: Insert using clauses for all plots. | |
6457 | |
5957 | 6458 2006-08-23 A S Hodel <hodelas@auburn.edu> |
6459 | |
6460 * control/system/sysscale.m: Call tf and zp with correct number of | |
6461 args. | |
6462 | |
5955 | 6463 2006-08-22 David Bateman <dbateman@free.fr> |
6464 | |
6465 * pkg/pkg.m (extract_pkgadd, create_pkgadd): New functions to | |
6466 Search inst/*.m and src/*.m files in the package for | |
6467 PKG_ADD directives and append user supplied PKG_ADD. | |
6468 (pkg): Call create_pkgadd after copying files. | |
6469 | |
5947 | 6470 2006-08-21 S�ren Hauberg <soren@hauberg.org> |
6471 | |
6472 * pkg/pkg.m: Handle multiple packages in a single file. | |
6473 Insert directory separator between OCTAVE_HOME and rest of package | |
6474 installation directory. | |
6475 | |
6476 2006-08-21 John W. Eaton <jwe@octave.org> | |
6477 | |
6478 * general/num2str.m: Early return if arg is empty. | |
6479 From Thomas Treichl <Thomas.Treichl@gmx.net>. | |
6480 | |
5946 | 6481 2006-08-21 David Bateman <dbateman@free.fr> |
6482 | |
6483 * strings/mat2str.m: Compute NC before using. | |
6484 | |
5937 | 6485 2006-08-17 John W. Eaton <jwe@octave.org> |
6486 | |
6487 * audio/wavread.m: Fix calculation of sample count. | |
6488 | |
5934 | 6489 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
6490 | |
6491 * image/imshow.m: New Matlab-compatible version. | |
6492 | |
5930 | 6493 2006-08-15 John W. Eaton <jwe@octave.org> |
6494 | |
6495 * deprecated/is_global.m: Delete. | |
6496 | |
5928 | 6497 2006-08-14 John W. Eaton <jwe@octave.org> |
6498 | |
6499 * pkg/Makefile.in (script_sub_dir): Change from plot to pkg. | |
6500 | |
5926 | 6501 2006-08-14 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
6502 | |
6503 * sparse/spy.m, control/base/bode.m, control/base/__stepimp__.m, | |
6504 signal/freqz_plot.m: Adapt to new automatic_replot definition. | |
6505 | |
5928 | 6506 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
6507 | |
6778 | 6508 * pkg/pkg.m: Don't pass function name to print_usage. |
5928 | 6509 Use addpath and rmpath instead of manipulating LOADPATH. |
6510 Handle changes to system function. | |
6511 (rm_rf): New subfunction. Use it to avoid confirmation dialog for | |
6512 recursive directory removal. | |
5922 | 6513 |
5924 | 6514 * strings/bin2dec.m: Ignore spaces in input for compatibility. |
6515 | |
6778 | 6516 * colormap.m: Change global variable to persistent. |
5923 | 6517 |
5922 | 6518 * rgb2ind.m: Handle single 3-d array as rgb image. |
6519 | |
5920 | 6520 2006-08-14 John W. Eaton <jwe@octave.org> |
6521 | |
6522 * strings/str2double.m: Fix missing semicolon. | |
6523 | |
5910 | 6524 2006-07-27 Jim Peterson <jpeterson@annapmicro.com> |
6525 | |
6526 * plot/plot3.m: Accept one complex or one real and one complex | |
6527 argument and plot real and imaginary components for y and z. | |
6528 | |
5908 | 6529 2006-07-27 John W. Eaton <jwe@octave.org> |
6530 | |
6531 * testfun/test.m: Call fflush after each block of calls to | |
6532 fprintf, fputs, or fdisp. | |
6533 | |
5904 | 6534 2006-07-26 John W. Eaton <jwe@octave.org> |
6535 | |
6536 * miscellaneous/mex.m: New function. | |
6537 | |
5901 | 6538 2006-07-22 John W. Eaton <jwe@octave.org> |
6539 | |
6540 * special-matrix/hadamard.m: Coerce bool matrix to double. | |
6541 | |
5881 | 6542 2006-07-07 John W. Eaton <jwe@octave.org> |
6543 | |
6544 * miscellaneous/orderfields.m: New file. | |
6545 | |
5873 | 6546 2006-06-30 John W. Eaton <jwe@octave.org> |
6547 | |
6548 * time/datevec.m: Make another attempt to account for precision of | |
6549 datenum format. | |
6550 | |
5868 | 6551 2006-06-29 John W. Eaton <jwe@octave.org> |
6552 | |
6553 * miscellaneous/dump_prefs.m: Remove obsolete symbols from the list. | |
6554 Use feval instead of "type -q" to get values now that all the | |
6555 symbols are functions. | |
6556 | |
5860 | 6557 2006-06-16 John W. Eaton <jwe@octave.org> |
6558 | |
6559 * time/datevec.m: Avoid computing log of non-positive values. | |
6560 | |
5859 | 6561 2006-06-14 John W. Eaton <jwe@octave.org> |
6562 | |
6563 * time/datevec.m: Attempt to account for precision of datenum format. | |
6564 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6565 2006-06-01 Quentin H. Spencer <qspencer@ieee.org> |
5839 | 6566 |
6567 * audio/wavread.m: Fix file range error and add read support for | |
6568 24-bit WAV files. | |
6569 | |
5837 | 6570 2006-06-01 David Bateman <dbateman@free.fr> |
6571 | |
6572 * general/interpft.m, general/quadl.m, general/polyarea.m, | |
6573 general/interp1.m, general/gradient.m, general/interp2.m, | |
6574 general/bicubic.m, miscellaneous/inputname.m, plot/__plt3__.m, | |
6575 plot/ndgrid.m, plot/plot3.m, polynomial/pchip.m, sparse/pcg.m, | |
6576 sparse/pcr.m, strings/mat2str.m: New files from Octave Forge. | |
6577 | |
5835 | 6578 2006-05-31 Bill Denney <bill@givebillmoney.com> |
6579 | |
6580 * miscellaneous/fileparts.m, miscellaneous/fullfile.m: Add seealso. | |
6581 * miscellaneous/texas_lotto.m: Fix warning message. | |
6582 | |
5830 | 6583 2006-05-26 John W. Eaton <jwe@octave.org> |
6584 | |
6585 * miscellaneous/doc.m: Also handle nargin == 0. | |
6586 | |
5829 | 6587 2006-05-23 John W. Eaton <jwe@octave.org> |
6588 | |
6589 * plot/mesh.m: Use __gnupot_raw__ except where __gnuplot_set__ is | |
6590 really needed. | |
6591 | |
5827 | 6592 2006-05-22 John W. Eaton <jwe@octave.org> |
6593 | |
6754 | 6594 * general/lookup.m: New file from Octave Forge. |
5827 | 6595 |
6596 2006-05-22 David Bateman <dbateman@free.fr> | |
6597 | |
6754 | 6598 * general/nthroot.m, linear-algebra/rref.m, specfun/isprime.m, |
6599 specfun/primes.m, specfun/factor.m, specfun/nchoosek.m, | |
6600 specfun/legendre.m, specfun/perms.m, special-matrix/rosser.m, | |
6601 special-matrix/wilkinson.m, special-matrix/pascal.m, | |
6602 special-matrix/magic.m, special-matrix/hadamard.m, | |
6603 strings/strtok.m: New files from Octave Forge. | |
5827 | 6604 |
5824 | 6605 2006-05-19 David Bateman <dbateman@free.fr> |
6606 | |
6607 * polynomial/unmkpp.m, polynomial/mkpp.m, polynomial/spline.m, | |
5825 | 6608 polynomial/ppval.m, set/setxor.m: New files from Octave Forge. |
5824 | 6609 |
5821 | 6610 2006-05-17 John W. Eaton <jwe@octave.org> |
6611 | |
6612 * set/intersection.m: Delete | |
6613 * deprecated/intersection.m: New file. | |
6614 | |
5820 | 6615 2006-05-17 David Bateman <dbateman@free.fr> |
6616 | |
6617 * general/cplxpair.m, general/trapz.m, general/cumtrapz.m, | |
6618 general/isdir.m, miscellaneous/dos.m, miscellaneous/getfield.m, | |
6619 miscellaneous/setfield.m, plot/fplot.m, set/intersect.m, | |
6620 signal/ifftshift.m, signal/filter2.m, specfun/betaln.m, | |
6621 specfun/factorial.m, strings/strvcat.m: New files from Octave | |
6622 Forge. | |
6623 | |
5809 | 6624 2006-05-11 John W. Eaton <jwe@octave.org> |
6625 | |
5815 | 6626 * path/path.m: Delete (now a built-in function). |
6627 | |
5811 | 6628 * pkg/Makefile.in: New file. |
6629 * configure.in (AC_CONFIG_FILES): Add pkg/Makefile to the list. | |
5812 | 6630 * Makefile.in (SUBDIRS): Add pkg to the list. |
5809 | 6631 |
5808 | 6632 2006-05-10 John W. Eaton <jwe@octave.org> |
6633 | |
6634 * tar.m, untar.m, unzip.m: Adapt to Octave coding style. | |
6635 * tar.m, untar.m: Only tar; don't compress or uncompress. | |
6636 | |
8149 | 6637 2006-05-10 S�ren Hauberg <hauberg@gmail.com> |
5807 | 6638 |
6639 * tar.m, untar.m, unzip.m: New files. | |
6640 | |
5801 | 6641 2006-05-10 John W. Eaton <jwe@octave.org> |
6642 | |
5804 | 6643 * path/addpath.m, path/rmpath.m: Improve compatibility. |
6644 * path/setpath.m: Delete. | |
6645 | |
5801 | 6646 * pkg/pkg.m: New file. |
6647 | |
5798 | 6648 2006-05-09 Keith Goodman <kwgoodman@gmail.com> |
6649 | |
6650 * plot/plot.m: Doc string fix. | |
6651 | |
6652 2006-05-09 Paul Kienzle <pkienzle@users.sf.net> | |
6653 | |
6654 * testfun/speeed.m: Use new interface to unique and assert. | |
6655 Improve documentation. Approximate time complexity from log-log | |
6656 plot. Return time complexity and raw times if requested. The | |
6657 mean ratio is no longer returned. Provide complete control over | |
6658 which n are computed. | |
6659 | |
6660 2006-05-09 John W. Eaton <jwe@octave.org> | |
6661 | |
6662 * path/path.m: Move here from miscellaneous. | |
6663 Adapt to new LOADPATH definition. | |
6664 | |
5789 | 6665 2006-05-03 David Bateman <dbateman@free.fr> |
6666 | |
6667 * path/rmpath.m, path/addpath.m, miscellaneous/path.m: Replace all | |
6668 explicit uses of a path seperation character with pathsep(). | |
6669 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6670 2006-05-03 Bob Weigel <rweigel@gmu.edu> |
5786 | 6671 |
6778 | 6672 * set/setdiff.m: New arg, byrows. New tests. |
5786 | 6673 |
5781 | 6674 2006-04-29 John W. Eaton <jwe@octave.org> |
6675 | |
6676 * startup/main-rcfile: Disable some warnings. | |
6677 | |
5762 | 6678 2006-04-14 Bill Denney <denney@seas.upenn.edu> |
6679 | |
6680 * strings/strcmpi.m: Return false instead of error if args are not | |
6681 char or cellstr. | |
6682 | |
5750 | 6683 2006-04-10 John W. Eaton <jwe@octave.org> |
6684 | |
6685 * miscellaneous/dir.m: Ensure that returned structure array is | |
6686 Nx1, not 1xN. | |
6687 | |
5746 | 6688 2006-04-06 Olli Saarela <olli.saarela@kcl.fi> |
6689 | |
6690 * plot/hist.m: Ignore NaN in inputs. | |
6691 | |
5745 | 6692 2006-04-06 Keith Goodman <kwgoodman@gmail.com> |
6693 | |
6694 * miscellaneous/mkoctfile.m: Doc string fix. | |
6695 | |
5741 | 6696 2006-04-05 John W. Eaton <jwe@octave.org> |
6697 | |
6698 * plot/__plt2__.m: Return data = [] and fmtstr = "" if x1 and x2 | |
6699 are both empty. | |
6700 * plot/__plt__.m: Ignore empty data and format strings returned | |
6701 from __plt1__ or __plt2__. | |
6702 | |
5737 | 6703 2006-04-04 Bob Weigel <rweigel@gmu.edu> |
6704 | |
6778 | 6705 * set/unique.m: Properly handle single column input when |
5737 | 6706 "rows" is specified. |
6707 | |
5732 | 6708 2006-04-04 John W. Eaton <jwe@octave.org> |
6709 | |
5736 | 6710 * path/setpath.m: New file. |
6711 * path/savepath.m: Use setpath to set path instead of assigning | |
6712 directly to LOADPATH. | |
6713 | |
5732 | 6714 * path/Makefile.in, path/addpath.m, path/rmpath.m, path/savepath.m: |
6715 New files, adapted from Octave Forge by Keith Goodman | |
6716 <kwgoodman@gmail.com>. | |
6717 * path: New directory. | |
6718 * Makefile.in (SUBDIRS): Add it to the list. | |
6719 * configure.in (AC_CONFIG_FILES): Include path/Makefile here. | |
6720 | |
5731 | 6721 2006-04-02 David Bateman <dbateman@free.fr> |
6722 | |
6723 * general/tril.m, general.triu.m: | |
6724 Use resize (resize (x, 0), nr, nc) rather than zeros (nr, nc) | |
6725 to allow user types to work correctly. | |
6726 * special-matrix/hankel.m, special-matrix/toeplitz.m: Ditto. | |
6727 | |
5727 | 6728 2006-04-03 David Bateman <dbateman@free.fr> |
6729 | |
6730 * plot/grid.m: Cache the state of the grid to allow toggling. | |
6731 Accept keyword "minor" for minor grid. | |
6732 | |
5721 | 6733 2006-03-28 John W. Eaton <jwe@octave.org> |
6734 | |
6735 * general/isscalar.m: Only require that all dimensions are 1 for | |
6736 compatiblity. | |
6737 | |
6738 2006-03-28 Bill Denney <bill@givebillmoney.com> | |
6739 | |
6740 * general/isvector.m: Allow non-numeric objects to be vectors for | |
6741 compatibility. | |
6742 | |
5720 | 6743 2006-03-28 Keith Goodman <kwgoodman@gmail.com> |
6744 | |
6745 * plot/__errplot__.m: Doc string fix. | |
6746 | |
6747 * miscellaneous/doc.m: Mark as command. | |
6748 | |
6749 * general/isequal.m, general/__isequal__.m, general/cell2mat.m, | |
6750 general/isequalwithequalnans.m, general/blkdiag.m, | |
6751 strings/strfind.m, miscellaneous/doc.m: Update FSF address. | |
6752 | |
5717 | 6753 2006-03-27 Don Bindner <dbindner@truman.edu> |
6754 | |
6755 * plot/meshgrid.m: If nargout == 3 and vectors are supplied, | |
6756 return 3d matrices. | |
6757 | |
6758 2006-03-27 Keith Goodman <kwgoodman@gmail.com> | |
6759 | |
6760 * time/toc.m: Don't print "Elapsed time..." if tic has not been set. | |
6761 | |
5708 | 6762 2006-03-22 John W. Eaton <jwe@octave.org> |
6763 | |
6764 * plot/print.m: Don't replot after popping terminal setting. | |
6765 | |
5696 | 6766 2006-03-20 John W. Eaton <jwe@octave.org> |
6767 | |
6768 * miscellaneous/mkoctfile.m: Use version-specific name of | |
6769 mkoctfile. Use fullfile to construct file name. | |
6770 | |
5695 | 6771 2006-03-20 Keith Goodman <kwgoodman@gmail.com> |
6772 | |
6773 * miscellaneous/mkoctfile.m: Make it possible to call mkoctfile | |
6774 shell script from Octave prompt. | |
6775 | |
5690 | 6776 2006-03-17 John W. Eaton <jwe@octave.org> |
6777 | |
5693 | 6778 * deprecated/weibcdf.m, deprecated/weibinv.m, |
6779 deprecated/weibpdf.m, deprecated/weibrnd.m: New functions. | |
6780 | |
6781 * deprecated/weibull_cdf.m, deprecated/weibull_inv.m, | |
6782 deprecated/weibull_pdf.m, deprecated/weibull_rnd.m: | |
6783 Call new wbl functions to do the real work. | |
6784 Swap args and provide default values as necessary to preserve | |
6785 compatibility with old version of Octave. | |
6786 | |
6787 * statistics/distributions/wblcdf.m: Rename from weibcdf.m. | |
6788 statistics/distributions/wblinv.m: Rename from weibinv.m. | |
6789 statistics/distributions/wblpdf.m: Rename from weibpdf.m. | |
6790 statistics/distributions/wblrnd.m: Rename from weibrnd.m. | |
6791 Swap scale and shape args for compatibility. | |
6792 | |
5692 | 6793 * deprecated/lognormal_cdf.m, deprecated/lognormal_inv.m, |
6794 deprecated/lognormal_pdf.m, deprecated/lognormal_rnd.m: | |
6795 Preserve compatibility with old versions of Octave given new | |
6796 definitions of logncdf, logninv, lognpdf, and lognrnd. | |
5693 | 6797 |
5692 | 6798 * statistics/distributions/logncdf.m, |
6799 statistics/distributions/logninv.m, | |
6800 statistics/distributions/lognpdf.m, | |
6801 statistics/distributions/lognrnd.m: Compatibility fixes. | |
6802 From Ben Barrowes <barrowes@alum.mit.edu> | |
6803 | |
5691 | 6804 * deprecated/hypergeometric_rnd.m: Update interface to match |
6805 current 2.1.x version. | |
6806 | |
6807 * deprecated/t_rnd.m: Call trnd, not t_rnd. | |
6808 | |
5690 | 6809 * miscellaneous/dir.m: Use readdir instead of glob. |
6810 Special case for "." to avoid globbing. Use list_in_columns. | |
6811 Eliminate unused variables len and finfo. | |
6812 | |
5689 | 6813 2006-03-16 Bill Denney <bill@givebillmoney.com> |
6814 | |
6815 * miscellaneous/dir.m: Improve compatibility. | |
6816 | |
5687 | 6817 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6818 | |
6819 * time/calendar.m, time/datestr.m, time/datevec.m, time/eomday.m, | |
6820 time/now.m, time/weekday.m: New functions from Octave Forge. | |
6821 | |
5686 | 6822 2006-03-16 John W. Eaton <jwe@octave.org> |
6823 | |
6824 * control/base/bode_bounds.m: Check for iip and iiz empty instead | |
6825 of looking at sum of max dimensions. | |
6826 | |
5681 | 6827 2006-03-16 David Bateman <dbateman@free.fr> |
6828 | |
6829 * testfun/test.m: Clear last warning before warning test to avoid | |
6830 issues with previously set warnings. | |
6831 * build_sparse_test.sh: Tests for multiple RHS for rectanguar | |
6832 sparse matrices. Force matrix type from spqr solution to be | |
6833 singular to force QR solvers to be used for assert. | |
6834 | |
5678 | 6835 2006-03-16 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6836 | |
6837 * strings/strfind.m: New file. | |
6838 | |
5677 | 6839 2006-03-16 John W. Eaton <jwe@octave.org> |
6840 | |
6841 * general/rows.m, general/columns.m: Delete. | |
6842 | |
5674 | 6843 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
6844 | |
6845 * strings/strcmpi.m: Simplify. | |
6846 * strings/strncmpi.m: Import from octave-forge, simplify. | |
5678 | 6847 * strings/strtrunc.m: New file. |
5674 | 6848 |
5676 | 6849 * strings/lower.m, strings/upper.m: Handle cellstr arguments. |
6850 | |
5672 | 6851 2006-03-15 John W. Eaton <jwe@octave.org> |
6852 | |
6853 * miscellaneous/doc.m: New file. | |
8149 | 6854 From S�ren Hauberg <soren@hauberg.org>. |
5672 | 6855 |
5671 | 6856 2006-03-15 Keith Goodman <kwgoodman@gmail.com> |
6857 | |
6858 * miscellaneous/mkoctfile.m: New file. | |
6859 | |
5670 | 6860 2006-03-15 John W. Eaton <jwe@octave.org> |
6861 | |
6862 * polynomial/residue.m: Use & instead of && to generate arg for find. | |
6863 | |
5666 | 6864 2006-03-14 Keith Goodman <kwgoodman@gmail.com> |
6865 | |
6866 * strings/bin2dec.m: Doc fix. | |
6867 | |
5661 | 6868 2006-03-10 Paul Kienzle <pkienzle@users.sf.net> |
6869 | |
6870 * time/etime.m: Use datenum to support times spanning year boundaries. | |
6871 * time/datenum.m: New function to compute day number from time. | |
6872 | |
5659 | 6873 2006-03-09 John W. Eaton <jwe@octave.org> |
6874 | |
6875 * miscellaneous/unix.m, plot/print.m: | |
6876 Swap order of outputs from system. | |
6877 | |
5642 | 6878 2006-03-06 Keith Goodman <kwgoodman@gmail.com> |
6879 | |
6880 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, | |
6881 audio/playaudio.m, audio/record.m, audio/saveaudio.m, | |
6882 audio/wavread.m, audio/wavwrite.m, control/base/DEMOcontrol.m, | |
6883 control/base/__stepimp__.m, control/base/are.m, | |
6884 control/base/controldemo.m, control/base/damp.m, | |
6885 control/base/dare.m, control/base/impulse.m, control/base/lqg.m, | |
6886 control/base/step.m, control/system/abcddim.m, | |
6887 control/system/is_abcd.m, control/system/is_controllable.m, | |
6888 control/system/is_detectable.m, control/system/is_observable.m, | |
6889 control/system/is_stabilizable.m, control/system/is_stable.m, | |
6890 control/system/jet707.m, control/system/sys2fir.m, | |
6891 control/system/sysdimensions.m, control/system/sysupdate.m, | |
6892 control/system/tfout.m, control/system/ugain.m, | |
6893 control/system/zpout.m, elfun/lcm.m, finance/irr.m, | |
6894 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, | |
6895 finance/rate.m, general/__isequal__.m, general/bitcmp.m, | |
6896 general/bitget.m, general/bitset.m, general/blkdiag.m, | |
6897 general/cart2pol.m, general/cart2sph.m, general/cell2mat.m, | |
6898 general/circshift.m, general/columns.m, general/flipdim.m, | |
6899 general/fliplr.m, general/flipud.m, general/ind2sub.m, | |
6900 general/int2str.m, general/isdefinite.m, general/isequal.m, | |
6901 general/isequalwithequalnans.m, general/isscalar.m, | |
6902 general/issquare.m, general/issymmetric.m, general/isvector.m, | |
6903 general/logspace.m, general/mod.m, general/nextpow2.m, | |
6904 general/num2str.m, general/perror.m, general/pol2cart.m, | |
6905 general/rem.m, general/rot90.m, general/rotdim.m, general/rows.m, | |
6906 general/shiftdim.m, general/sph2cart.m, general/sub2ind.m, | |
6907 general/tril.m, image/hsv2rgb.m, image/image.m, image/imagesc.m, | |
6908 image/imshow.m, image/ind2gray.m, image/ind2rgb.m, | |
6909 image/loadimage.m, image/rgb2hsv.m, image/rgb2ind.m, | |
6910 image/saveimage.m, io/beep.m, linear-algebra/cond.m, | |
6911 linear-algebra/norm.m, miscellaneous/comma.m, miscellaneous/dir.m, | |
6912 miscellaneous/license.m, miscellaneous/menu.m, | |
6913 miscellaneous/semicolon.m, miscellaneous/texas_lotto.m, | |
6914 miscellaneous/unix.m, miscellaneous/ver.m, optimization/sqp.m, | |
6915 plot/__errcomm__.m, plot/__errplot__.m, plot/__pltopt1__.m, | |
6916 plot/__pltopt__.m, plot/bar.m, plot/contour.m, plot/errorbar.m, | |
6917 plot/grid.m, plot/hist.m, plot/loglog.m, plot/loglogerr.m, | |
6918 plot/mesh.m, plot/meshgrid.m, plot/plot.m, plot/polar.m, | |
6919 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, | |
6920 plot/semilogyerr.m, plot/shg.m, plot/stairs.m, plot/title.m, | |
6921 plot/xlabel.m, polynomial/compan.m, polynomial/conv.m, | |
6922 polynomial/deconv.m, polynomial/polyderiv.m, polynomial/polygcd.m, | |
6923 polynomial/polyinteg.m, polynomial/polyout.m, | |
6924 polynomial/polyreduce.m, polynomial/polyval.m, | |
6925 polynomial/polyvalm.m, polynomial/residue.m, set/complement.m, | |
6926 set/create_set.m, set/intersection.m, set/ismember.m, | |
6927 set/setdiff.m, set/union.m, set/unique.m, sparse/etreeplot.m, | |
6928 sparse/gplot.m, sparse/spalloc.m, sparse/sphcat.m, | |
6929 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, | |
6930 sparse/spvcat.m, sparse/treeplot.m, specfun/erfinv.m, | |
6931 specfun/log2.m, specfun/pow2.m, special-matrix/hankel.m, | |
6932 special-matrix/hilb.m, special-matrix/invhilb.m, | |
6933 special-matrix/sylvester_matrix.m, special-matrix/toeplitz.m, | |
6934 special-matrix/vander.m, statistics/base/median.m, | |
6935 statistics/base/std.m, statistics/distributions/gamcdf.m, | |
6936 statistics/distributions/gaminv.m, | |
6937 statistics/distributions/gampdf.m, | |
6938 statistics/distributions/gamrnd.m, strings/base2dec.m, | |
6939 strings/bin2dec.m, strings/dec2base.m, strings/dec2bin.m, | |
6940 strings/dec2hex.m, strings/hex2dec.m, strings/isletter.m, | |
6941 strings/lower.m, strings/upper.m, testfun/assert.m, | |
6942 testfun/demo.m, testfun/example.m, testfun/test.m, time/etime.m: | |
6943 Move @seealso inside @defXXX macro. Remove "and" from @seealso. | |
6944 | |
5633 | 6945 2006-02-27 John W. Eaton <jwe@octave.org> |
6946 | |
6947 * time/tic.m: Move here from miscellaneous/tic.m. | |
6948 * time/toc.m: Move here from miscellaneous/toc.m. | |
6949 | |
6950 2006-02-26 Keith Goodman <kwgoodman@gmail.com> | |
6951 | |
6952 * miscellaneous/toc.m: Display "Elapsed time is X seconds" if user | |
6953 does not assign output of toc to a variable. | |
6954 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
6955 2006-02-16 Bill Denney <denney@seas.upenn.edu> |
5627 | 6956 |
6957 * axis.m: Catch limits that are the same and return an error. | |
6958 | |
5625 | 6959 2006-02-15 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
6960 | |
6961 * plot/print.m: Accept emf device option to support Enhanced | |
6962 Metafile format. | |
6963 | |
6964 2006-02-15 A S Hodel <hodelas@auburn.edu> | |
6965 | |
6966 * control/base/lqe.m: Doc fix. | |
6967 | |
5623 | 6968 2006-02-15 Keith Goodman <kwgoodman@gmail.com> |
6969 | |
6970 * statistics/distributions/gamcdf.m: Doc fix. | |
6971 * statistics/distributions/gaminv.m: Doc fix. | |
6972 * statistics/distributions/gampdf.m: Doc fix. | |
6973 * statistics/distributions/gamrnd.m: Doc fix. | |
6974 | |
5610 | 6975 2006-02-09 David Bateman <dbateman@free.fr> |
6976 | |
6778 | 6977 * general/triu.m: Minimum change to allow sparse matrix. More needed |
6978 for arbitrary user type. | |
6979 * general/tril.m: ditto. | |
6980 * sparse/sprand.m: Doc fix. | |
6981 * sparse/sprandn.m: Ditto. | |
6982 * sparse/sprandsym.m: New function. | |
6983 * audio/setaudio.m, general/cart2pol.m, general/cart2sph.m, | |
6984 general/pol2cart.m, general/sph2cart.m, signal/freqz_plot.m: | |
6985 Update for syntax error for latest texinfo.tex file. | |
5610 | 6986 |
5605 | 6987 2006-02-02 John W. Eaton <jwe@octave.org> |
6988 | |
6989 * plot/grid.m: Append ";\n" to "set grid" command. | |
6990 | |
6991 2006-02-02 A S Hodel <hodelas@auburn.edu> | |
6992 | |
6993 * control/base/rlocus.m: Don't atttempt to plot rlzer if it is empty. | |
6994 | |
5597 | 6995 2006-01-13 John W. Eaton <jwe@octave.org> |
6996 | |
6997 * audio/Makefile.in, control/base/Makefile.in, | |
6998 control/hinf/Makefile.in, control/obsolete/Makefile.in, | |
6999 control/system/Makefile.in, control/util/Makefile.in, | |
7000 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, | |
7001 general/Makefile.in, image/Makefile.in, io/Makefile.in, | |
7002 linear-algebra/Makefile.in, miscellaneous/Makefile.in, | |
7003 optimization/Makefile.in, plot/Makefile.in, | |
7004 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, | |
7005 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, | |
7006 special-matrix/Makefile.in, startup/Makefile.in, | |
7007 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
7008 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
7009 strings/Makefile.in, time/Makefile.in, testfun/Makefile.in: | |
7010 (all): Depend on PKG_ADD. | |
7011 (PKG_ADD): New target. | |
7012 | |
7013 2006-01-13 Bill Denney <bill@givebillmoney.com> | |
7014 | |
7015 * miscellaneous/dir.m: Add @seealso{} to docstring. | |
7016 | |
5596 | 7017 2006-01-13 John W. Eaton <jwe@octave.org> |
7018 | |
7019 * time/etime.m: Move here from miscellaneous/etime.m. | |
7020 * time/is_leap_year.m: Move here from miscellaneous/is_leap_year.m. | |
7021 | |
5595 | 7022 2006-01-13 Bill Denney <bill@givebillmoney.com> |
7023 | |
6778 | 7024 * miscellaneous/dir.m: Use filesep instead of "/" where needed. |
5595 | 7025 * miscellaneous/fullfile.m: Likewise. |
7026 | |
5592 | 7027 2006-01-12 David Bateman <dbateman@free.fr> |
7028 | |
7029 * general/blkdiag.m: Compatible behavior for empty matrices | |
7030 * statistics/base/unidrnd.m: Documentation buglet. | |
7031 | |
5583 | 7032 2005-12-14 David Bateman <dbateman@free.fr> |
7033 | |
5589 | 7034 * testfun/assert.m, testfun/fail.m, testfun/test.m, testfun/demo.m, |
7035 testfun/speed.m, testfun/example.m, Makefile.in: New files. | |
7036 | |
7037 * Makefile.in (SUBDIRS): Include testfun. | |
7038 * configure.in (AC_CONFIG_FILES): Include testfun/Makefile. | |
7039 | |
5583 | 7040 * miscellaneous/dir.m: Transpose sub-assignment for cleanness. |
7041 | |
7042 * general/__isequal__.m: Remove reference to getfield. | |
7043 | |
7044 * plot/hist.m: Update test code for row/column discrepencies. | |
7045 * signal/freqz.m: Alter output row/column for matlab compatibility. | |
7046 Update the test code for this. | |
7047 * sparse/spstats.m: Fix small bug in the dimension of output. | |
7048 | |
5579 | 7049 2005-12-13 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
7050 | |
7051 * cell/cell2mat.m: New file, from octave-forge. | |
7052 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
7053 2005-12-13 Ivana Varekova <varekova@redhat.com> |
5576 | 7054 |
7055 * sparse/treeplot.m, sparse/etreeplot.m, sparse/gplot.m: | |
7056 New graph theory functions. | |
7057 | |
5574 | 7058 2005-12-13 John W. Eaton <jwe@octave.org> |
7059 | |
7060 * general/blkdiag.m: Use "isempty" instead of @isempty. | |
7061 | |
7062 * control/system/ss.m: Doc fix. | |
7063 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. | |
7064 | |
5572 | 7065 2005-12-12 Michael Zeising <michael@michaels-website.de> |
7066 | |
7067 * audio/wavread.m, audio/wavwrite.m: | |
7068 Correct scaling for 8-bit linear pcm samples. | |
7069 Improve scaling for all other linear pcm resolutions. | |
7070 | |
5568 | 7071 2005-12-07 John W. Eaton <jwe@octave.org> |
7072 | |
7073 * statistics/base/moment.m: Don't save and restore warn_str_to_num. | |
7074 | |
7075 * sparse/spdiags.m: Don't save and restore warn_fortran_indexing. | |
7076 * strings/strjust.m: Likewise. | |
7077 | |
7078 * general/shift.m: Don't save and restore warn_empty_list_elements. | |
7079 * signal/arma_rnd.m: Likewise. | |
7080 * strings/strcat.m: Likewise. | |
7081 * control/base/__freqresp__.m: Likewise. | |
7082 * control/base/place.m: Likewise. | |
7083 * control/base/pzmap.m: Likewise. | |
7084 * control/base/pzmap.m: Likewise. | |
7085 * control/system/sysappend.m: Likewise. | |
7086 * control/system/syscont.m: Likewise. | |
7087 * control/system/sysdisc.m: Likewise. | |
7088 * control/system/sysgroup.m: Likewise. | |
7089 * control/system/tfout.m: Likewise. | |
7090 * control/system/zpout.m: Likewise. | |
7091 * control/util/__outlist__.m: Likewise. | |
7092 | |
5567 | 7093 2005-12-06 John W. Eaton <jwe@octave.org> |
7094 | |
7095 * audio/wavread.m, audio/wavwrite.m: Adapt to Octave coding style. | |
7096 Avoid for loop in interleave/deinterleave steps. | |
7097 | |
5565 | 7098 2005-12-06 Michael Zeising <michael@michaels-website.de> |
7099 | |
7100 * audio/wavread.m, audio/wavwrite.m: New files. | |
7101 | |
5563 | 7102 2005-12-06 John W. Eaton <jwe@octave.org> |
7103 | |
7104 * miscellaneous/dir.m: Return Nx1 instead of 1xN struct array. | |
7105 | |
5560 | 7106 2005-12-05 John W. Eaton <jwe@octave.org> |
7107 | |
5561 | 7108 * plot/axis.m: Add "## PKG_ADD: mark_as_command axis" line. |
5560 | 7109 |
5558 | 7110 2005-12-02 John W. Eaton <jwe@octave.org> |
7111 | |
7112 * miscellaneous/fileattrib.m: New function. | |
7113 | |
5556 | 7114 2005-12-01 John W. Eaton <jwe@octave.org> |
7115 | |
7116 * general/columns.m: Use size (x, 2) instead of [nr, nc] = size (x). | |
7117 * general/rows.m: Use size (x, 1) instead of [nr, nc] = size (x). | |
7118 From William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com>. | |
7119 | |
5555 | 7120 2005-11-30 John W. Eaton <jwe@octave.org> |
7121 | |
7122 * linear-algebra/krylov.m: Format doc string. | |
7123 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. | |
7124 | |
5551 | 7125 2005-11-23 William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com> |
7126 | |
7127 * general/blkdiag.m: Import from octave-forge. | |
7128 Ignore empty matrices in the input. Add tests. | |
5549 | 7129 |
7130 * general/isequal.m, general/isequalwithequalnans.m: | |
7131 New wrapper scripts for general/__isequal__.m. | |
7132 * general/__isequal__.m: Rename from general/isequal.m. | |
7133 New arg, nans_compare_equal. | |
7134 | |
5548 | 7135 2005-11-29 John W. Eaton <jwe@octave.org> |
7136 | |
7137 * miscellaneous/ver.m: Use new uname built-in function instead of | |
7138 calling system. Only append octave_forge_string if | |
7139 OCTAVE_FORGE_VERSION exists. Use puts instead of disp. | |
7140 Call license instead of hard-coding license info here. | |
7141 | |
7142 * miscellaneous/license.m: Use persistent instead of global for | |
5654 | 7143 __octave_licenses__. Use puts instead of disp. |
5548 | 7144 Use getuid and getpwuid instead of calling unix ("id -un"). |
7145 If nargout = 1, return license info instead of printing usage message. | |
7146 | |
5546 | 7147 2005-11-29 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
7148 | |
7149 * miscellaneous/ver.m: New file. | |
7150 * miscellaneous/license.m: New file. | |
7151 | |
5545 | 7152 2005-11-22 John W. Eaton <jwe@octave.org> |
7153 | |
7154 * plot/axis.m: Use %.16g instead of just %g to format ranges for | |
7155 gnuplot set command. | |
7156 | |
5539 | 7157 2005-11-15 John W. Eaton <jwe@octave.org> |
7158 | |
7159 * general/shiftdim.m: Doc fix. | |
7160 | |
5532 | 7161 2005-11-07 Keith Goodman <kwgoodman@gmail.com> |
7162 | |
7163 * set/unique.m: Doc string fix. | |
7164 | |
5527 | 7165 2005-11-01 John W. Eaton <jwe@octave.org> |
7166 | |
7167 * Makefile.in (distclean, maintainer-clean): | |
7168 Also remove autom4te.cache directory. | |
7169 From Quentin Spencer <qspencer@ieee.org>. | |
7170 | |
5518 | 7171 2005-10-28 John W. Eaton <jwe@octave.org> |
7172 | |
7173 * general/shiftdim.m: Compatibility fix for row vectors. | |
7174 Correct check for non-scalar non-integer shift. For positive | |
7175 N, shift is remainder of N and number of dims. Always return NS. | |
7176 Simplify. | |
7177 | |
5500 | 7178 2005-10-18 Keith Goodman <kwgoodman@gmail.com> |
7179 | |
7180 * general/randperm.m: Improve compatibility by allowing input | |
7181 value of zero. | |
7182 | |
5493 | 7183 2005-10-13 John W. Eaton <jwe@octave.org> |
7184 | |
7185 * plot/__plt__.m, plot/__errplot__.m, plot/replot.m: | |
7186 If in multiplot mode, clear plot before issuing new plot command. | |
7187 | |
7188 * plot/__setup_plot__.m: New function. | |
7189 * plot/__plt__.m, plot__errplot__.m: Use it. | |
7190 Handle multiplot data and offsets here. | |
7191 | |
7192 * plot/__plot_globals__.m: Also keep track of multiplot options. | |
7193 Move initialization to __setup_plot__.m. | |
7194 | |
7195 * plot/subplot.m: Multiplot globals now in __plot_globals__.m. | |
7196 Don't reset gnuplot_command_replot. | |
7197 | |
7198 * plot/replot.m: Handle multiplot data and offsets here. | |
7199 * plot__axis_label__.m, plot/axis.m, plot/grid.m, | |
7200 plot/plot_border.m, plot/plot.m, plot/plot_title.m, | |
7201 plot/top_title.m: Call replot, not __gnuplot_replot__. | |
7202 | |
5489 | 7203 2005-10-12 John W. Eaton <jwe@octave.org> |
7204 | |
7205 * plot/figure.m: Handle __current_figure__, not gnuplot details. | |
7206 | |
5482 | 7207 2005-10-04 Rafael Laboissiere <rafael@debian.org> |
7208 | |
7209 * binoinv.m, chi2pdf.m, frnd.m, poissinv.m, tinv.m, trnd.m, | |
7210 weibrnd.m: Removed calls and references to deprecated _pdf and | |
7211 _inv functions. | |
7212 * chi2pdf.m: Fixed typos in the documentation. | |
7213 | |
5475 | 7214 2005-09-28 John W. Eaton <jwe@octave.org> |
7215 | |
5476 | 7216 * miscellaneous/single.m: New function. |
7217 | |
5475 | 7218 * statistics/base/unidrnd.m: New function. |
7219 | |
5474 | 7220 2005-09-27 John W. Eaton <jwe@octave.org> |
7221 | |
7222 * miscellaneous/dir.m: Filename never includes directory part. | |
7223 | |
5464 | 7224 2005-09-22 John W. Eaton <jwe@octave.org> |
7225 | |
7226 * polynomial/residue.m: Use logical indexing instead of find.. | |
7227 | |
7228 2005-09-22 Julius Smith <jos@ccrma.stanford.edu> | |
7229 | |
7230 * polynomial/residue.m: Avoid division by zero for pure imaginary | |
7231 and zero poles. | |
7232 | |
5462 | 7233 2005-09-22 Bill Denney <denney@seas.upenn.edu> |
7234 | |
7235 * strings/deblank.m: Handle cell arrays. | |
7236 * strings/split.m: New argument, N, to limit number of splits. | |
7237 | |
7238 2005-09-22 Miroslaw Kwasniak <mirek@zind.ikem.pwr.wroc.pl> | |
7239 | |
7240 * plot/__pltopt1__.m: Handle plot colors "w" and "k" separately. | |
7241 | |
5460 | 7242 2005-09-20 "Orestes Mas" <orestes@tsc.upc.edu> |
7243 | |
7244 * control/base/rlocus.m: Doc fix. | |
7245 | |
5459 | 7246 2005-09-20 John W. Eaton <jwe@octave.org> |
7247 | |
7248 * general/isvector.m: Improve compatibility. | |
7249 | |
7250 * general/postpad.m: Allow first argument to be a scalar. | |
7251 Allow padding to extend dimensionality. | |
7252 * general/prepad.m: Likewise. | |
7253 | |
5448 | 7254 2005-09-14 Daniel <durbano@shbano.com> |
7255 | |
7256 * statistics/tests/bartlett_test.m, linear-algebra/cross.m, | |
5449 | 7257 statistics/distributions/discrete_cdf.m, general/fliplr.m, |
7258 /control/base/dgram.m: Doc string fixes. | |
5448 | 7259 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
7260 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
7261 2005-09-12 Stefan van der Walt <stefan@sun.ac.za> |
5446 | 7262 |
7263 * saveimage.m: Do not ignore most significant bit when writing | |
7264 black and white images to file. | |
7265 | |
5443 | 7266 2005-09-07 Bill Denney <denney@seas.upenn.edu> |
7267 | |
7268 * audio/playaudio.m, control/base/__bodquist__.m, | |
7269 control/base/lqg.m, control/obsolete/dezero.m, | |
7270 control/system/__syschnamesl__.m, control/system/__sysconcat__.m, | |
7271 control/system/c2d.m, control/system/cellidx.m, | |
7272 control/system/d2c.m, control/system/dmr2d.m, | |
7273 control/system/is_signal_list.m, control/system/listidx.m, | |
7274 control/system/ss.m, control/system/sysappend.m, | |
7275 control/system/sysconnect.m, control/system/sysdup.m, | |
7276 control/system/sysgetsignals.m, control/system/sysidx.m, | |
7277 control/system/sysprune.m, control/system/syssetsignals.m, | |
7278 control/system/tfout.m, control/system/zpout.m, | |
7279 control/util/prompt.m, control/util/sortcom.m, | |
7280 control/util/strappend.m, finance/fv.m, finance/nper.m, | |
7281 finance/pmt.m, finance/pv.m, finance/rate.m, general/diff.m, | |
7282 general/num2str.m, general/repmat.m, general/sortrows.m, | |
7283 general/strerror.m, image/colormap.m, image/imshow.m, | |
7284 image/loadimage.m, image/saveimage.m, linear-algebra/norm.m, | |
7285 miscellaneous/fileparts.m, miscellaneous/popen2.m, | |
7286 plot/__axis_label__.m, plot/__errcomm__.m, plot/__plt1__.m, | |
7287 plot/__plt2__.m, plot/__plt__.m, plot/__pltopt1__.m, | |
7288 plot/__pltopt__.m, plot/axis.m, plot/bottom_title.m, plot/close.m, | |
7289 plot/grid.m, plot/hist.m, plot/plot_border.m, plot/polar.m, | |
7290 plot/print.m, plot/title.m, plot/top_title.m, | |
7291 polynomial/polyout.m, set/unique.m, signal/freqz.m, signal/stft.m, | |
7292 statistics/base/mean.m, statistics/base/moment.m, | |
7293 statistics/tests/cor_test.m, | |
7294 statistics/tests/kolmogorov_smirnov_test.m, | |
7295 statistics/tests/kolmogorov_smirnov_test_2.m, | |
7296 statistics/tests/prop_test_2.m, statistics/tests/sign_test.m, | |
7297 statistics/tests/t_test.m, statistics/tests/t_test_2.m, | |
7298 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, | |
7299 statistics/tests/var_test.m, statistics/tests/welch_test.m, | |
7300 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, | |
7301 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, | |
7302 strings/deblank.m, strings/dec2base.m, strings/index.m, | |
7303 strings/rindex.m, strings/split.m, strings/str2mat.m, | |
7304 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, | |
7305 strings/strncmp.m, strings/strrep.m, strings/substr.m: | |
7306 Avoid deprecated functions. Use ischar instead of isstr. Use | |
7307 isvector instead of is_vector. Use isstruct instead of | |
7308 is_struct. Use char instead of setstr. | |
7309 | |
5435 | 7310 2005-08-31 Daniel <durbano@shbano.com> |
7311 | |
7312 * special-matrix/invhilb.m, statistics/base/iqr.m, | |
7313 control/system/is_controllable.m, set/ismember.m: Doc fixes. | |
7314 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. | |
7315 | |
7641
115563ecbdc9
Makefile and ChangeLog fixes
John W. Eaton <jwe@octave.org>
parents:
7640
diff
changeset
|
7316 2005-08-29 Bill Denney <denney@seas.upenn.edu> |
5431 | 7317 |
7318 * image/saveimage.m: Open output file in binary mode. | |
7319 | |
7320 * miscellaneous/bug_report.m: Open prefs file in text mode. | |
7321 | |
5427 | 7322 2005-08-16 John W. Eaton <jwe@octave.org> |
7323 | |
7324 * miscellaneous/computer.m: Handle optional maxsize and endian | |
7325 outputs. | |
7326 | |
5426 | 7327 2005-08-15 John W. Eaton <jwe@octave.org> |
7328 | |
7329 * strings/strcat.m: Allow single argument. | |
7330 | |
5416 | 7331 2005-07-18 John W. Eaton <jwe@octave.org> |
7332 | |
7333 * strings/strcmp.m: Delete. | |
7334 | |
5413 | 7335 2005-07-13 John W. Eaton <jwe@octave.org> |
7336 | |
7337 * deprecated/hypergeometric_rnd.m: Preserve compatibility with old | |
7338 versions of Octave. | |
7339 | |
7340 2005-07-13 Ben Barrowes <barrowes@alum.mit.edu> | |
7341 | |
7342 * statistics/distributions/betacdf.m: Rename from beta_cdf.m. | |
7343 * statistics/distributions/betainv.m: Rename from beta_inv.m. | |
7344 * statistics/distributions/betapdf.m: Rename from beta_pdf.m. | |
7345 * statistics/distributions/betarnd.m: Rename from beta_rnd.m. | |
7346 * statistics/distributions/binocdf.m: Rename from binomial_cdf.m. | |
7347 * statistics/distributions/binoinv.m: Rename from binomial_inv.m. | |
7348 * statistics/distributions/binopdf.m: Rename from binomial_pdf.m. | |
7349 * statistics/distributions/binornd.m: Rename from binomial_rnd.m. | |
7350 * statistics/distributions/chi2cdf.m: Rename from chisquare_cdf.m. | |
7351 * statistics/distributions/chi2inv.m: Rename from chisquare_inv.m. | |
7352 * statistics/distributions/chi2pdf.m: Rename from chisquare_pdf.m. | |
7353 * statistics/distributions/chi2rnd.m: Rename from chisquare_rnd.m. | |
7354 * statistics/distributions/expcdf.m: Rename from exponential_cdf.m. | |
7355 * statistics/distributions/expinv.m: Rename from exponential_inv.m. | |
7356 * statistics/distributions/exppdf.m: Rename from exponential_pdf.m. | |
7357 * statistics/distributions/exprnd.m: Rename from exponential_rnd.m. | |
7358 * statistics/distributions/fcdf.m: Rename from f_cdf.m. | |
7359 * statistics/distributions/finv.m: Rename from f_inv.m. | |
7360 * statistics/distributions/fpdf.m: Rename from f_pdf.m. | |
7361 * statistics/distributions/frnd.m: Rename from f_rnd.m. | |
7362 * statistics/distributions/gamcdf.m: Rename from gamma_cdf.m. | |
7363 * statistics/distributions/gaminv.m: Rename from gamma_inv.m. | |
7364 * statistics/distributions/gampdf.m: Rename from gamma_pdf.m. | |
7365 * statistics/distributions/gamrnd.m: Rename from gamma_rnd.m. | |
7366 * statistics/distributions/geocdf.m: Rename from geometric_cdf.m. | |
7367 * statistics/distributions/geoinv.m: Rename from geometric_inv.m. | |
7368 * statistics/distributions/geopdf.m: Rename from geometric_pdf.m. | |
7369 * statistics/distributions/geornd.m: Rename from geometric_rnd.m. | |
7370 * statistics/distributions/hygecdf.m: Rename from hypergeometric_cdf.m. | |
7371 * statistics/distributions/hygeinv.m: Rename from hypergeometric_inv.m. | |
7372 * statistics/distributions/hygepdf.m: Rename from hypergeometric_pdf.m. | |
7373 * statistics/distributions/hygernd.m: Rename from hypergeometric_rnd.m. | |
7374 * statistics/distributions/logncdf.m: Rename from lognormal_cdf.m. | |
7375 * statistics/distributions/logninv.m: Rename from lognormal_inv.m. | |
7376 * statistics/distributions/lognpdf.m: Rename from lognormal_pdf.m. | |
7377 * statistics/distributions/lognrnd.m: Rename from lognormal_rnd.m. | |
7378 * statistics/distributions/normcdf.m: Rename from normal_cdf.m. | |
7379 * statistics/distributions/norminv.m: Rename from normal_inv.m. | |
7380 * statistics/distributions/normpdf.m: Rename from normal_pdf.m. | |
7381 * statistics/distributions/normrnd.m: Rename from normal_rnd.m. | |
7382 * statistics/distributions/poisscdf.m: Rename from poisson_cdf.m. | |
7383 * statistics/distributions/poissinv.m: Rename from poisson_inv.m. | |
7384 * statistics/distributions/poisspdf.m: Rename from poisson_pdf.m. | |
7385 * statistics/distributions/poissrnd.m: Rename from poisson_rnd.m. | |
7386 * statistics/distributions/tcdf.m: Rename from t_cdf.m. | |
7387 * statistics/distributions/tinv.m: Rename from t_inv.m. | |
7388 * statistics/distributions/tpdf.m: Rename from t_pdf.m. | |
7389 * statistics/distributions/trnd.m: Rename from t_rnd.m. | |
5431 | 7390 * statistics/distributions/unifcdf.m: Rename from unifoxorm_cdf.m. |
5413 | 7391 * statistics/distributions/unifinv.m: Rename from uniform_inv.m. |
7392 * statistics/distributions/unifpdf.m: Rename from uniform_pdf.m. | |
7393 * statistics/distributions/unifrnd.m: Rename from uniform_rnd.m. | |
7394 * statistics/distributions/weibcdf.m: Rename from weibull_cdf.m. | |
7395 * statistics/distributions/weibinv.m: Rename from weibull_inv.m. | |
7396 * statistics/distributions/weibpdf.m: Rename from weibull_pdf.m. | |
7397 * statistics/distributions/wienrnd.m: Rename from wiener_rnd.m. | |
7398 | |
7399 * deprecated/beta_cdf.m, deprecated/beta_inv.m, | |
7400 deprecated/beta_pdf.m, deprecated/beta_rnd.m, | |
7401 deprecated/binomial_cdf.m, deprecated/binomial_inv.m, | |
7402 deprecated/binomial_pdf.m, deprecated/binomial_rnd.m, | |
7403 deprecated/chisquare_cdf.m, deprecated/chisquare_inv.m, | |
7404 deprecated/chisquare_pdf.m, deprecated/chisquare_rnd.m, | |
7405 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, | |
7406 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m, | |
7407 deprecated/f_cdf.m, deprecated/f_inv.m, deprecated/f_pdf.m, | |
7408 deprecated/f_rnd.m, deprecated/gamma_cdf.m, | |
7409 deprecated/gamma_inv.m, deprecated/gamma_pdf.m, | |
7410 deprecated/gamma_rnd.m, deprecated/geometric_cdf.m, | |
7411 deprecated/geometric_inv.m, deprecated/geometric_pdf.m, | |
7412 deprecated/geometric_rnd.m, deprecated/hypergeometric_cdf.m, | |
7413 deprecated/hypergeometric_inv.m, deprecated/hypergeometric_pdf.m, | |
7414 deprecated/hypergeometric_rnd.m, deprecated/lognormal_cdf.m, | |
7415 deprecated/lognormal_inv.m, deprecated/lognormal_pdf.m, | |
7416 deprecated/lognormal_rnd.m, deprecated/normal_cdf.m, | |
7417 deprecated/normal_inv.m, deprecated/normal_pdf.m, | |
7418 deprecated/normal_rnd.m, deprecated/poisson_cdf.m, | |
7419 deprecated/poisson_inv.m, deprecated/poisson_pdf.m, | |
7420 deprecated/poisson_rnd.m, deprecated/t_cdf.m, deprecated/t_inv.m, | |
7421 deprecated/t_pdf.m, deprecated/t_rnd.m, deprecated/uniform_cdf.m, | |
7422 deprecated/uniform_inv.m, deprecated/uniform_pdf.m, | |
7423 deprecated/uniform_rnd.m, deprecated/weibull_cdf.m, | |
7424 deprecated/weibull_inv.m, deprecated/weibull_pdf.m, | |
7425 deprecated/wiener_rnd.m: New files. | |
7426 | |
5408 | 7427 2005-07-08 John W. Eaton <jwe@octave.org> |
7428 | |
7429 * statistics/distributions/weibrnd.m: Rename from weibull_rnd.m. | |
7430 * deprecated/weibull_rnd.m: New file. | |
7431 | |
5407 | 7432 2005-07-08 cctsim <cctsim@yahoo.co.uk> |
7433 | |
7434 * strings/dec2base.m: Allow matrix arguments. | |
7435 | |
5406 | 7436 2005-07-08 John W. Eaton <jwe@octave.org> |
7437 | |
7438 * plot/__errplot__.m: Use __plot_globals__. | |
7439 * plot/__plt__.m: Likewise. | |
7440 * plot/figure.m: Likewise. | |
7441 | |
7442 * plot/hold.m: New file. | |
7443 * plot/ishold.m: New file. | |
7444 * plot/__plot_globals__.m: New file. | |
7445 | |
5400 | 7446 2005-07-05 cctsim <cctsim@yahoo.co.uk> |
7447 | |
7448 * strings/dec2base.m: Don't remove all leading zeros if result is zero. | |
7449 | |
7450 2005-07-05 John W. Eaton <jwe@octave.org> | |
7451 | |
7452 * strings/findstr.m: Return [] for no matches. | |
7453 | |
5399 | 7454 2005-06-17 Keith Goodman <kwgoodman@gmail.com> |
7455 | |
7456 * miscellaneous/tic.m: Fix doc string. | |
7457 | |
5395 | 7458 2005-06-15 John W. Eaton <jwe@octave.org> |
7459 | |
7460 * polynomial/polyfit.m: Force return value to be a row vector. | |
7461 | |
5393 | 7462 2005-06-15 Tom Holroyd <tomh@kurage.nimh.nih.gov> |
7463 | |
7464 * general/isequal.m: Correct nargin check. | |
7465 | |
5388 | 7466 2005-06-14 John W. Eaton <jwe@octave.org> |
7467 | |
7468 * general/isvector.m: Handle N-d arrays. | |
7469 From Bill Denney <denney@seas.upenn.edu>. | |
7470 | |
5381 | 7471 2005-06-02 Ben Barrowes <barrowes@alum.mit.edu> |
7472 | |
7473 * plot/meshgrid.m: Handle 3 input arguments. | |
5378 | 7474 |
5377 | 7475 2005-06-02 Paul Kienzle <pkienzle@users.sf.net> |
7476 | |
7477 * signal/freqz.m: Use correct calculations when given a vector of | |
7478 frequencies. Improve accuracy of returned frequency vector. | |
7479 Improve speed for medium length filters (at a slight cost for slow | |
7480 filters). Add test cases. | |
7481 | |
5373 | 7482 2005-05-27 "Dmitri A. Sergatskov" <dasergatskov@gmail.com> |
7483 | |
7484 * plot/loglog.m: Fix set commands. | |
7485 | |
5381 | 7486 2005-05-25 John W. Eaton <jwe@octave.org> |
7487 | |
7488 * plot/sombrero.m: Default n to 41 if nargin == 0. | |
7489 | |
5371 | 7490 2005-05-24 John W. Eaton <jwe@octave.org> |
7491 | |
5373 | 7492 * statistics/tests/anova.m: Use mean (y(:)) to compute total_mean. |
7493 | |
5372 | 7494 * strings/strncmp.m: New file, from Tom Holroyd |
7495 <tomh@kurage.nimh.nih.gov>. | |
7496 | |
5371 | 7497 * strings/strcmp.m: Return logical values in all cases. |
7498 | |
5366 | 7499 2005-05-23 John W. Eaton <jwe@octave.org> |
7500 | |
7501 * plot/orient.m: New file. Adapt to Octave coding style. | |
7502 Texinfoize doc string. | |
7503 | |
7504 * plot/print.m: New file. Adapt to Octave coding style. Include | |
7505 PKG_ADD command. Use set terminal consistently throughout. Use | |
7506 set terminal push/pop and unconditionally set output to screen | |
7507 when done to avoid requiring gget. Use a cell array for dev_list | |
7508 and cellidx to search for items in the list. Delete local | |
7509 variable endl. Don't set and restore automatic_replot. Use {} | |
7510 instead of nth to index varargin. Delete local variable | |
7511 va_arg_cnt. | |
7512 | |
5355 | 7513 2005-05-18 John W. Eaton <jwe@octave.org> |
7514 | |
7515 * general/num2str.m: Return early if X is a character string. | |
7516 | |
5347 | 7517 2005-05-11 John W. Eaton <jwe@octave.org> |
7518 | |
5348 | 7519 * strings/findstr.m: Allow non-string arguments for compatiblity. |
7520 From Tom Holroyd <tomh@kurage.nimh.nih.gov>. | |
7521 | |
5347 | 7522 * plot/polar.m: Don't call __pltopt__ here. |
7523 | |
5333 | 7524 2005-05-02 John W. Eaton <jwe@octave.org> |
7525 | |
7526 * mkdoc: Print header message. | |
7527 | |
5319 | 7528 2005-04-28 John W. Eaton <jwe@octave.org> |
7529 | |
7530 * configure.in (AC_CONFIG_SRCDIR): Look for startup/inputrc, not | |
7531 startup/octaverc. | |
7532 | |
5318 | 7533 2005-04-28 Stefan van der Walt <stefan@sun.ac.za> |
7534 | |
7535 * image/imshow.m: Handle various image depths and 3d RGB images. | |
7536 (__im_numeric_limits__): New internal function. | |
7537 | |
5317 | 7538 2005-04-28 toni saarela <toni.saarela@helsinki.fi> |
7539 | |
7540 * statistics/tests/anova.m: Compute total_mean as mean of all | |
7541 data, not mean of group_mean. | |
7542 | |
7543 2005-04-28 John W. Eaton <jwe@octave.org> | |
7544 | |
7545 * startup/local-rcfile: New file. | |
7546 * startup/main-rcfile: Rename from startup/octaverc. | |
7547 * startup/Makefile.in (SOURCES): Add inputrc to the list. | |
7548 (install install-strip): Install main-rcfile in $(fcnfiledir)/startup. | |
7549 Install local-rcfile in $(localfcnfiledir)/startup. | |
7550 | |
7551 2005-04-28 Keith Goodman <kwgoodman@gmail.com> | |
7552 | |
7553 * startup/inputrc: New file. | |
7554 * startup/octaverc: Configure readline using inputrc from | |
7555 startupfiledir. | |
7556 * startup/Makefile.in (install, install-strip): Install octaverc | |
7557 in $(fcnfiledir)/startup. | |
7558 | |
5310 | 7559 2005-04-27 John W. Eaton <jwe@octave.org> |
7560 | |
7561 * optimization/qp.m: Define n_in after removing -Inf bounds from Ain. | |
7562 | |
5289 | 7563 2005-04-21 John W. Eaton <jwe@octave.org> |
7564 | |
7565 * optimization/glpk.m: Handle SENSE argument. | |
7566 | |
7567 * optimization/qp.m, optimization/sqp.m: New files. | |
7568 | |
5276 | 7569 2005-04-08 John W. Eaton <jwe@octave.org> |
7570 | |
7571 * Makefile.in (clean, distclean, maintainer-clean): | |
7572 Avoid duplication in rules. | |
7573 | |
5252 | 7574 2005-03-28 John W. Eaton <jwe@octave.org> |
7575 | |
7576 * plot/contour.m, plot/mesh.m: Continue to use __gnuplot_raw__ for | |
7577 setting {no,}parametric. | |
7578 * plot/figure.m: Likewise, for setting terminal type. | |
7579 | |
7580 * __axis_label__.m:, plot/axis.m, plot/bottom_title.m, | |
7581 plot/contour.m, plot/figure.m, plot/multiplot.m, plot/mplot.m, | |
7582 plot/plot_border.m, plot/subplot.m, plot/subwindow.m, | |
7583 plot/title.m, plot/top_title.m: Avoid eval. | |
7584 | |
5251 | 7585 2005-03-28 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
7586 | |
5253 | 7587 * plot/__axis_label__.m, plot/axis.m, plot/grid.m, |
7588 plot/plot_border.m, plot/replot.m, plot/title.m, plot/top_title.m: | |
7589 Use __gnuplot_replot__ instead of replot. | |
7590 | |
5252 | 7591 * plot/__axis_label__.m, plot/axis.m, plot/bottom_title.m, |
7592 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/grid.m, | |
7593 plot/loglogerr.m, plot/loglog.m, plot/mesh.m, plot/mplot.m, | |
7594 plot/multiplot.m, plot/oneplot.m, plot/plot_border.m, plot/plot.m, | |
7595 plot/polar.m, plot/semilogxerr.m, plot/semilogx.m, | |
7596 plot/semilogyerr.m, plot/semilogy.m, plot/shg.m, plot/subplot.m, | |
7597 plot/subwindow.m, plot/title.m, plot/top_title.m: | |
5654 | 7598 Use __gnuplot_raw__ instead of __gnuplot_set__. |
5252 | 7599 |
5251 | 7600 * plot/replot.m: Use __gnuplot_replot__, not __greplot__. |
7601 | |
5244 | 7602 2005-03-24 John W. Eaton <jwe@octave.org> |
7603 | |
7604 * optimization/glpkmex.m: Texinfoize Doc string. | |
7605 * optimization/glpk.m: Likewise. | |
7606 Allow VARTYPE and CTYPE to be row or column vectors of characters | |
7607 (row vectors are orginary character strings). | |
7608 * optimization/glpkparam.m: Delete. | |
7609 | |
5243 | 7610 2005-03-24 Quentin Spencer <qspencer@ieee.org> |
7611 | |
7612 * statistics/base/mean.m: Allow DIMS arg greater than the number | |
7613 of dimensions of X. | |
7614 | |
5237 | 7615 2005-03-23 John W. Eaton <jwe@octave.org> |
7616 | |
5239 | 7617 * general/tril.m, general/triu.m: Return value of same class as |
7618 argument. | |
7619 | |
5237 | 7620 * optimization/glpk.m: Simplify interface. By default, solve |
7621 standard LP min C'*x s.t. A*x = b, x >= 0. | |
7622 * optimization/glpkmex.m: New file. | |
7623 | |
5232 | 7624 2005-03-22 John W. Eaton <jwe@octave.org> |
7625 | |
5237 | 7626 * configure.in (AC_CONFIG_FILES): Add optimization/Makefile to the |
7627 list. | |
7628 | |
5233 | 7629 * optimization/glpk.m: Adapt to Octave coding style. |
7630 No need for varargout or varargin. | |
7631 Print usage message if nargin > 11. | |
7632 Allow any value of nargout. | |
7633 Use repmat (C, nr, nc) instead of char (C * ones (nr, nc)). | |
7634 Avoid looping when checking character classes. | |
7635 | |
5232 | 7636 * optimization: New directory. |
7637 * Makefile.in (SUBDIRS): Add it to the list. | |
7638 * optimization/Makefile.in: New file. | |
7639 * optimization/glpk.m, optimization/glpkparams.m, | |
7640 optimization/glpktest1, optimization/glpktest2: New files. | |
7641 | |
8149 | 7642 2005-03-16 S�ren Hauberg <soren@hauberg.org> |
5218 | 7643 |
7644 * strings/split.m: Quick return for empty second arg. | |
7645 Improve warning for multi-line strings. | |
7646 Speed up by avoiding sprintf in loop and eval. | |
7647 | |
5217 | 7648 2005-03-16 Paul Kienzle <pkienzle@users.sf.net> |
7649 | |
7650 * polynomial/polyderiv.m : Accept a*b, a/b. Auto-reduce common terms. | |
7651 * polynomial/polyder.m: Ditto. | |
6778 | 7652 * polynomial/polygcd.m: New function. |
5217 | 7653 |
5214 | 7654 2005-03-16 John W. Eaton <jwe@octave.org> |
7655 | |
5215 | 7656 * control/base/__stepimp__.m, control/base/bode.m, |
7657 control/base/frdemo.m, control/base/nichols.m, | |
7658 control/base/nyquist.m, control/base/pzmap.m, | |
7659 control/base/rldemo.m, control/base/rlocus.m, | |
7660 control/hinf/dhinfdemo.m, control/hinf/hinfdemo.m, | |
7661 plot/__axis_label__.m, plot/__errplot__.m, plot/__plt__.m, | |
7662 plot/axis.m, plot/bar.m, plot/bottom_title.m, plot/contour.m, | |
7663 plot/errorbar.m, plot/figure.m, plot/grid.m, plot/loglog.m, | |
7664 plot/loglogerr.m, plot/mesh.m, plot/meshgrid.m, plot/mplot.m, | |
7665 plot/multiplot.m, plot/oneplot.m, plot/plot.m, plot/plot_border.m, | |
7666 plot/polar.m, plot/semilogx.m, plot/semilogxerr.m, | |
7667 plot/semilogy.m, plot/semilogyerr.m, plot/shg.m, plot/stairs.m, | |
7668 plot/subplot.m, plot/subwindow.m, plot/title.m, plot/top_title.m, | |
7669 plot/xlabel.m, quaternion/demoquat.m, | |
7670 quaternion/qcoordinate_plot.m, signal/freqz_plot.m, sparse/spy.m, | |
7671 statistics/base/ppplot.m, statistics/base/qqplot.m: | |
7672 Use __gnuplot_plot__ instead of gplot, __gnuplot_splot__ instead | |
7673 of gsplot, and __gnuplot_set__ instead of gset. Remove gplot, | |
7674 gsplot from @seealso docs. | |
5214 | 7675 |
7676 * plot/replot.m: New file. | |
7677 | |
5205 | 7678 2005-03-15 David Bateman <dbateman@free.fr> |
7679 | |
7680 * set/unique.m, set/ismember.m: Handle cell arrays. | |
7681 | |
5196 | 7682 2005-03-09 John W. Eaton <jwe@octave.org> |
7683 | |
7684 * statistics/Makefile.in (bin-dist): Delete target. | |
7685 (BINDISTSUBDIRS): Delete variable. | |
6754 | 7686 * control/Makefile.in: Likewise. |
5196 | 7687 |
5378 | 7688 * audio/Makefile.in (bin-dist): Delete target. |
5196 | 7689 (BINDISTFILES): Delete variable. |
5378 | 7690 * control/base/Makefile.in: Likewise. |
7691 * control/hinf/Makefile.in: Likewise. | |
7692 * control/obsolete/Makefile.in: Likewise. | |
7693 * control/system/Makefile.in: Likewise. | |
7694 * control/util/Makefile.in: Likewise. | |
7695 * deprecated/Makefile.in: Likewise. | |
7696 * elfun/Makefile.in: Likewise. | |
7697 * finance/Makefile.in: Likewise. | |
7698 * general/Makefile.in: Likewise. | |
7699 * image/Makefile.in: Likewise. | |
7700 * sparse/Makefile.in: Likewise. | |
7701 * io/Makefile.in: Likewise. | |
7702 * plot/Makefile.in: Likewise. | |
7703 * Makefile.in: Likewise. | |
7704 * miscellaneous/Makefile.in: Likewise. | |
7705 * linear-algebra/Makefile.in: Likewise. | |
7706 * polynomial/Makefile.in: Likewise. | |
7707 * quaternion/Makefile.in: Likewise. | |
7708 * set/Makefile.in: Likewise. | |
7709 * signal/Makefile.in: Likewise. | |
7710 * specfun/Makefile.in: Likewise. | |
7711 * special-matrix/Makefile.in: Likewise. | |
7712 * startup/Makefile.in: Likewise. | |
7713 * statistics/base/Makefile.in: Likewise. | |
7714 * statistics/distributions/Makefile.in: Likewise. | |
7715 * statistics/models/Makefile.in: Likewise. | |
7716 * statistics/tests/Makefile.in: Likewise. | |
7717 * strings/Makefile.in: Likewise. | |
7718 * time/Makefile.in: Likewise. | |
5196 | 7719 |
5195 | 7720 2005-03-08 John W. Eaton <jwe@octave.org> |
7721 | |
7722 * general/repmat.m: Correctly diagnose 3-argument non-scalar | |
7723 dimensions case. From Matthew A Swabey <mas01r@ecs.soton.ac.uk>. | |
7724 | |
5192 | 7725 2005-03-04 John W. Eaton <jwe@octave.org> |
7726 | |
7727 * plot/clg.m: New file. | |
7728 | |
5193 | 7729 2005-03-03 John W. Eaton <jwe@octave.org> |
7730 | |
7731 * general/isequal.m, general/sortrows.m, set/ismember.m, | |
7732 set/setdiff.m, strings/str2double.m, strings/strmatch.m, | |
7733 strings/strcmpi.m: | |
7734 New files from Octave-forge. Adapt to Octave coding standards. | |
7735 | |
5181 | 7736 2005-03-03 Paul Kienzle <pkienzle@users.sf.net> |
7737 | |
7738 * statistics/distributions/binomial_pdf.m: Extend the feasible | |
7739 computation range. | |
7740 | |
5164 | 7741 2005-02-25 John W. Eaton <jwe@octave.org> |
7742 | |
7743 Sparse merge. | |
7744 | |
7745 2005-01-23 David Bateman <dbateman@free.fr> | |
7746 | |
7747 * sparse/randperm.m: Delete duplicate randperm.m. | |
7748 | |
7749 2005-01-10 John W. Eaton <jwe@octave.org> | |
7750 | |
7751 * sparse/Makefile.in: New file. | |
7752 * configure.in (AC_CONFIG_FILES): Add sparse/Makefile to the list. | |
7753 | |
7754 2005-01-07 David Bateman <dbateman@free.fr> | |
7755 | |
7756 * set/unique.m: import file from octave-forge. | |
7757 | |
7758 2005-01-05 David Bateman <dbateman@free.fr> | |
7759 | |
7760 * Makefile.in: include sparse directory in SUBDIRS. | |
7761 | |
7762 2004-12-30 John W. Eaton <jwe@octave.org> | |
7763 | |
7764 * sparse/nzmax.m: Delete (there is an nzmax function in | |
7765 src/DLD-FUNCTIONS/sparse.cc). | |
7766 | |
7767 2004-12-28 John W. Eaton <jwe@octave.org> | |
7768 | |
7769 Merge of sparse code from David Bateman <dbateman@free.fr> and | |
7770 Andy Adler <adler@site.uottawa.ca>. | |
7771 | |
7772 * sparse/colperm.m, sparse/nonzeros.m, sparse/nzmax.m, | |
7773 sparse/randperm.m, sparse/spalloc.m, sparse/spconvert.m, | |
7774 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/sphcat.m, | |
7775 sparse/spones.m, sparse/sprand.m, sparse/sprandn.m, | |
7776 sparse/spstats.m, sparse/spvcat.m, sparse/spy.m: New files. | |
7777 | |
7778 * sparse: New directory. | |
7779 | |
5158 | 7780 2005-02-22 John W. Eaton <jwe@octave.org> |
7781 | |
7782 * polynomial/residue.m: Force prepad to always create row vectors. | |
7783 | |
7784 * polynomial/poly.m: Quick return if m is 0. | |
7785 From Carmen Navarrete <carmen.navarrete@uam.es>. | |
7786 | |
5154 | 7787 2005-02-21 David Bateman <dbateman@free.fr> |
7788 | |
7789 * statistics/distributions/poisson_rnd.m: fix for lambda of zero. | |
7790 From Mark van Rossum <mvanross@inf.ed.ac.uk>. | |
7791 Fix for row vectors with at least one element of lambda not in | |
7792 (0, Inf). | |
7793 | |
5152 | 7794 2005-02-21 John W. Eaton <jwe@octave.org> |
7795 | |
5153 | 7796 * statistics/base/qqplot.m: Use feval instead of eval. |
7797 | |
5152 | 7798 * plot/grid.m, plot/plot_border.m, plot/title.m, plot/top_title.m, |
7799 plot/__axis_label__.m: Issue replot command. | |
7800 | |
5135 | 7801 2005-02-09 John W. Eaton <jwe@octave.org> |
7802 | |
7803 * polynomial/polyderiv.m: Force P to be a row vector. | |
7804 | |
5133 | 7805 2005-02-08 John W. Eaton <jwe@octave.org> |
7806 | |
7807 * strings/dec2base.m: Don't delete leading zero if third arg is | |
7808 provided and len <= computed max_len. | |
7809 | |
5125 | 7810 2005-01-27 David Bateman <dbateman@free.fr> |
7811 | |
7812 * strings/dec2base.m: Be even more careful about handling all digits. | |
7813 | |
7814 2005-01-27 Paul Kienzle <pkienzle@users.sf.net> | |
7815 | |
7816 * strings/dec2base.m: Use integer arithmetic to count number of digits. | |
7817 | |
5123 | 7818 2005-01-27 Benjamin Hall <benjamin.hall@pw.utc.com> |
7819 | |
7820 * statistics/base/median.m: Make it work for the scalar case too. | |
7821 | |
6308 | 7822 2005-01-25 Daniel J Sebald <daniel.sebald@ieee.org> |
5117 | 7823 |
7824 * plot/__plt__.m: Initialize fmt and sep outside of loop. | |
5118 | 7825 Simplify logic for decoding args. |
5117 | 7826 |
5115 | 7827 2005-01-24 John W. Eaton <jwe@octave.org> |
7828 | |
5116 | 7829 * plot/__plr__.m, plot/__plr2__.m: Pass name of caller to __plt__. |
7830 | |
7831 * plot/__plt__.m: No need to save and reset hold state now. | |
7832 (first_plot): Delete unused variable. | |
7833 | |
5115 | 7834 * plot/__plr2__.m, plot/__plt2__.m: Improve diagnostics. |
7835 | |
7836 * plot/__plr__.m: Use __plt__, not specific __pltXX__ functions. | |
7837 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, | |
7838 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, | |
7839 plot/__plt2vv__.m: | |
7840 Return data and gnuplot commands instead of evaluating them. | |
7841 * plot/__plt__.m: Handle evaluation of all gnuplot commands here. | |
7842 Based on changes from Daniel J Sebald <daniel.sebald@ieee.org>. | |
7843 | |
5108 | 7844 2005-01-18 John W. Eaton <jwe@octave.org> |
7845 | |
7846 * linear-algebra/cross.m: Allocate idx1 before use. | |
7847 | |
5096 | 7848 2004-12-08 Heikki Junes <Heikki.Junes@hut.fi> |
7849 | |
7850 * statistics/base/range.m: Fix varargin usage. | |
7851 | |
5091 | 7852 2004-12-02 Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be> |
7853 | |
7854 * strings/deblank.m: Remove all trailing whitespace (check with | |
7855 isspace), not just SPC. | |
7856 | |
5090 | 7857 2004-12-02 Balint Reczey <balint_reczey@yahoo.com> |
7858 | |
7859 * statistics/base/moment.m: Fix argument parsing for N-d arrays. | |
7860 | |
5073 | 7861 2004-11-09 John W. Eaton <jwe@octave.org> |
7862 | |
7863 * miscellaneous/fileparts.m: Allow filenames with no extension. | |
7864 From Julius Smith <jos@ccrma.stanford.edu>. | |
7865 | |
5072 | 7866 2004-11-08 John W. Eaton <jwe@octave.org> |
7867 | |
7868 * plot/__plt2vm__.m: Delete debugging statement. | |
7869 From Dmitri A. Sergatskov <dmitri@unm.edu>. | |
7870 | |
5065 | 7871 2004-11-04 John W. Eaton <jwe@octave.org> |
7872 | |
7873 * plot/hist.m: Always return row vectors for vector args. | |
7874 | |
5031 | 7875 2004-09-23 John W. Eaton <jwe@octave.org> |
7876 | |
7877 * strings/strcmp.m: If args are not strings or cell arrays of | |
7878 strings, return zero instead of reporting an error. | |
7879 | |
5021 | 7880 2004-09-22 Federico Zenith <zenith@chemeng.ntnu.no> |
7881 | |
7882 * control/base/analdemo.m, control/base/are.m, control/base/bddemo.m, | |
7883 control/base/controldemo.m, control/base/damp.m, control/base/dare.m, | |
7884 control/base/dcgain.m, control/base/dgram.m, control/base/dlyap.m, | |
7885 control/base/dre.m, control/base/frdemo.m, control/base/gram.m, | |
7886 control/base/impulse.m, control/base/lqp.m, control/base/obsv.m, | |
7887 control/base/pzmap.m, control/base/rldemo.m, control/hinf/h2norm.m, | |
7888 control/hinf/hinfsyn.m, control/hinf/hinfsyn_ric.m, | |
7889 control/hinf/is_dgkf.m, control/system/c2d.m, | |
7890 control/system/is_detectable.m, control/system/is_sample.m, | |
7891 control/system/is_siso.m, control/system/is_stable.m, | |
7892 control/system/ss2sys.m, control/system/ss.m, control/system/sys2ss.m, | |
7893 control/system/sys2tf.m, control/system/sys2zp.m, | |
7894 control/system/sysappend.m, control/system/sysconnect.m, | |
7895 control/system/sysdisc.m, control/system/sysdup.m, | |
7896 control/system/sysgetsignals.m, control/system/sysmult.m, | |
7897 control/system/syssetsignals.m, control/system/syssub.m, | |
7898 control/system/tf2sys.m, control/system/ugain.m, | |
7899 control/system/zp2ss.m, control/system/zp2sys.m, | |
7900 control/system/zp2tf.m, control/util/axis2dlim.m, polynomial/roots.m, | |
7901 special-matrix/toeplitz.m: Fix typos in doc strings. | |
7902 | |
7903 * control/base/are.m, control/base/dare.m, control/base/lsim.m, | |
7904 control/base/ltifr.m, control/base/place.m,control/base/tzero2.m, | |
7905 control/base/tzero.m, control/hinf/hinf_ctr.m, control/hinf/wgt1o.m, | |
7906 ontrol/system/is_abcd.m, control/system/parallel.m, | |
7907 control/system/ss2tf.m, control/system/ss2zp.m, control/system/ss.m, | |
7908 control/system/sysappend.m, control/system/sysconnect.m, | |
7909 control/system/sysdup.m, control/system/sysgroup.m, | |
7910 control/system/sysprune.m, control/system/sysreorder.m, | |
7911 control/system/sysscale.m, control/system/syssub.m, | |
7912 control/system/tf2ss.m, control/system/tf2zp.m, control/util/zgfmul.m, | |
7913 control/util/zginit.m, control/util/zgscal.m, elfun/acoth.m, | |
7914 polynomial/polyout.m, specfun/log2.m: | |
7915 Add output arguments in doc strings. | |
7916 | |
7917 * control/base/are.m, control/base/bode_bounds, control/base/bode.m, | |
7918 control/base/__bodquist__.m, control/base/ctrb.m, control/base/dare.m, | |
7919 control/base/DEMOcontrol.m, control/base/dlyap.m, control/base/dre.m, | |
7920 control/base/freqchkw.m, control/base/__freqresp__.m, | |
7921 control/base/__freqresp__.m, control/base/lqp.m, control/base/lqr.m, | |
7922 contol/base/lsim.m, control/base/lyap.m, control/base/nyquist.m, | |
7923 control/base/obsv.m, control/base/place.m, control/base/pzmap.m, | |
7924 control/base/__stepimp__.m, control/base/step.m, control/base/tzero2.m | |
7925 control/base/tzero.m, control/hinf/dhinfdemo.m, control/hinf/h2norm.m, | |
7926 control/hinf/h2syn.m, control/hinf/hinfdemo.m, | |
7927 control/hinf/hinfnorm.m, control/hinf/hinfsyn_chk.m, | |
7928 control/hinf/hinfsyn.m, control/hinf/is_dgkf.m, | |
7929 control/obsolete/syschnames.m, control/obsolete/syschnames.m, | |
7930 control/system/c2d.m, control/system/is_abcd.m, | |
7931 control/system/is_controllable.m, control/system/is_detectable.m, | |
7932 control/system/is_observable.m, control/system/is_stable.m, | |
7933 control/system/jet707.m, control/system/ord2.m, | |
7934 control/system/starp.m, control/system/sys2fir.m, | |
7935 control/system/sys2ss.m, control/system/sys2tf.m, | |
7936 control/system/sys2zp.m, control/system/syscont.m, | |
7937 control/system/sysdisc.m, control/system/sysdup.m, | |
7938 control/system/sysgettype.m, control/system/sysgroup.m, | |
7939 control/system/sysmult.m, control/system/sysprune.m, | |
7940 control/system/sysreorder.m, control/system/sysscale.m, | |
7941 control/system/syssetsignals.m, control/system/sysupdate.m, | |
7942 control/system/tf2ss.m, control/system/tf2sys.m, | |
7943 control/system/zp2ss.m, control/system/zp2sys.m, | |
7944 control/util/axis2dlim.m, control/util/prompt.m, | |
7945 control/util/zgfmul.m, control/util/zginit.m, | |
7946 control/util/__zgpbal__.m, control/util/zgscal.m: | |
7947 Use @var, @strong, @command, @math, @acronym, @table and @cite | |
7948 in doc strings. | |
7949 | |
7950 * control/base/bode_bounds.m, control/base/ctrb.m, control/base/dre.m, | |
7951 control/base/dgram.m, control/base/dlyap.m, control/base/ltifr.m, | |
7952 control/base/nyquist.m, control/base/obsv.m, control/base/tzero.m, | |
7953 control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, | |
7954 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, | |
7955 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, | |
7956 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, | |
7957 control/hinf/wgt1o.m, control/obsolete/syschnames.m, | |
7958 control/system/c2d.m, control/system/fir2sys.m, | |
7959 control/system/is_stabilizable.m, control/system/jet707.m, | |
7960 control/system/ord2.m, control/system/ss2tf.m, control/system/tf2ss.m, | |
7961 control/util/zgshsr.m, polynomial/polyout.m: | |
7962 New @tex section(s) in doc strings for better formating of printed | |
7963 output. | |
7964 | |
7965 * control/base/__freqresp__.m, control/base/nyquist.m, | |
7966 control/base/__stepimp__.m, control/hinf/hinfdemo.m, | |
7967 control/obsolete/syschnames.m, control/system/sysprune.m: | |
7968 Use proper double quote marks for TeX. | |
7969 | |
7970 * control/base/DEMOcontrol.m: Add missing ; | |
7971 | |
7972 * control/base/nichols.m, control/base/rlocus.m, | |
7973 control/obsolete/minfo.m, control/system/is_digital.m, | |
7974 control/system/ss2zp.m, control/system/sysmin.m, | |
7975 control/system/tf2zp.m, control/util/sortcom.m: | |
7976 Convert documentation to use or more completely use Texinfo. | |
7977 | |
7978 * control/base/rlocus.m, control/hinf/dhinfdemo.m, | |
7979 control/hinf/hinfdemo.m, control/system/ord2.m, | |
7980 control/system/parallel.m, control/system/ss2tf.m, | |
7981 control/system/starp.m: Use "@group ... @end group" to avoid ascii | |
7982 art splitting over a page boundary. | |
7983 | |
7984 * control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, | |
7985 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, | |
7986 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, | |
7987 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, | |
7988 control/hinf/wgt1o.m, control/system/buildssic.m: | |
7989 Use {\cal H}_\infty for H-infinity and likewise for H-2 to | |
7990 the TeX documentation. | |
7991 | |
7992 * control/system/is_stabilizable.m: | |
7993 Add Copyright so that help is displayed correctly. | |
7994 | |
7995 * special-matrix/vander.m: Octave indexes start at 1. | |
7996 | |
5011 | 7997 2004-09-21 David Bateman <dbateman@free.fr> |
7998 | |
7999 * general/rotdim.m: New function for rotation of an N-d array in an | |
8000 arbitrary plane. | |
8001 | |
8002 * general/flipdim.m: New function to flip an N-d array about an | |
8003 arbitrary axis. | |
8004 | |
5003 | 8005 2004-09-15 David Bateman <dbateman@free.fr> |
8006 | |
8007 * general/bitget.m: Replace Bmax, which is undefined with bitmax | |
8008 | |
4992 | 8009 2004-09-15 John W. Eaton <jwe@octave.org> |
8010 | |
8011 * strings/strcmp.m: Fix typo in cell/string array case. | |
4993 | 8012 Use iscellstr to check for cells rather than iscell. |
8013 Improve diagnostics for invalid args. | |
4992 | 8014 |
4983 | 8015 2004-09-10 David Bateman <dbateman@free.fr> |
8016 | |
8017 * statistics/distributions/binomial_rnd.m: Fix error for scalar n | |
8018 and p with n > 1, and fix for matrix n and p with n == 1. | |
8019 | |
8020 * statistics/distributions/poisson_rnd.m: Fix for matrix length, | |
8021 due to row vs. column vector operations. | |
8022 | |
4964 | 8023 2004-09-03 David Bateman <dbateman@free.fr> |
8024 | |
8025 * general/repmat.m: Fix to allow logical classes. | |
8026 | |
4950 | 8027 2004-08-31 John W. Eaton <jwe@octave.org> |
8028 | |
8029 * general/isa.m: New function, from Octave-forge. | |
8030 | |
8031 2004-08-31 David Bateman <dbateman@free.fr> | |
8032 | |
8033 * general/bitcmp.m, general/bitget.m, general/bitset.m: Remove | |
8034 limitation on the use of int64 and uint64 types, and the use | |
8035 of the eval. | |
8036 | |
8037 * general/bitset.m: Remove superfluous cast to return type, as bug | |
8038 in .^ with integer types is fixed. | |
8039 | |
8040 * general/repmat.m: Adapt to allow integer types. | |
4945 | 8041 |
8042 2004-08-31 Paul Kienzle <pkienzle@users.sf.net> | |
8043 | |
8044 * plot/axis.m: Don't reset axes when querying them. | |
8045 | |
4942 | 8046 2004-08-27 David Bateman <dbateman@free.fr> |
8047 | |
8048 * statistics/base/ranks.m: Handle non-consecutive ties. | |
8049 Eliminate loop. | |
8050 | |
4918 | 8051 2004-07-27 David Bateman <dbateman@free.fr> |
8052 | |
8053 * general/num2str.m: Also insert spaces in output when precision | |
8054 argument is supplied. | |
8055 | |
4915 | 8056 2004-07-23 David Bateman <dbateman@free.fr> |
8057 | |
8058 * general/bitcmp.m, general/bitget.m, general/bitset.m: New functions. | |
8059 | |
4911 | 8060 2004-07-22 Etienne Grossmann <etienne@cs.uky.edu> |
8061 | |
8062 * general/sub2ind.m: Make reshaping index list unnecessary. | |
8063 | |
8064 2004-07-22 Paul Kienzle <pkienzle@users.sf.net> | |
8065 | |
8066 * miscellaneous/unix.m: Fix doc string. | |
8067 | |
8068 2004-07-22 Stefan van der Walt <stefan@sun.ac.za> | |
8069 | |
8070 * plot/figure.m: Clarification of documentation. | |
8071 | |
8072 * image/imshow.m: Warn for complex images. | |
8073 Only estimate colourmap for images in [0, 65536]. | |
8074 | |
8075 2004-07-22 David Bateman <dbateman@free.fr> | |
8076 | |
8077 * general/num2str.m: Fix the case of an all zero input. | |
8078 | |
4906 | 8079 2004-06-22 Etienne Grossmann <etienne@cs.uky.edu> |
8080 | |
8081 * general/ind2sub.m: Doc fix. | |
8082 | |
4900 | 8083 2004-06-08 John W. Eaton <jwe@octave.org> |
8084 | |
8085 * statistics/tests/kolmogorov_smirnov_test.m: Use func2str to | |
8086 convert function handle to string for eval. | |
8087 | |
4898 | 8088 2004-06-04 Paul Kienzle <pkienzle@users.sf.net> |
8089 | |
8090 * plot/errorbar.m: Remove debugging output. | |
8091 | |
8092 2004-06-03 Stefan van der Walt <stefan@sun.ac.za> | |
8093 | |
8094 * plot/__pltopt__.m: Properly escape @ symbols in doc string. | |
8095 | |
4897 | 8096 2004-06-03 Paul Kienzle <pkienzle@users.sf.net> |
8097 | |
4898 | 8098 * deprecated/com2str.m: Include 'i' suffix for pure imaginary numbers. |
8099 | |
8100 * polynomial/polyout.m: Use parenthesis if necessary around | |
8101 complex polynomial coefficient. | |
8102 | |
4897 | 8103 * plot/__errcomm__.m, plot/__errplot__.m: Simplify code and fix |
8104 the bug which causes __errplot__ to ignore the last argument. | |
8105 | |
4894 | 8106 2004-06-03 David Bateman <dbateman@free.fr> |
8107 | |
8108 * general/shiftdim.m: New function based on JWE code snippet. | |
8109 | |
8110 * general/circdim.m: New function. | |
8111 | |
4890 | 8112 2004-05-06 David Bateman <dbateman@free.fr> |
8113 | |
8114 * general/issquare.m: Fail if ndim(x) > 2. | |
8115 | |
8116 * linear-algebra/norm.m, linear-algebra/norm.m: Fail if ndim(x) > 2. | |
8117 | |
8118 * linear-alegbra/cross.m, linear-algebra/dot.m: Allow matrix and | |
8119 N-d array arguments. Add optional dim argument to define | |
8120 dimension along which to operate. | |
8121 | |
8122 * linear-algebra/dmult.m: Allow N-d arrays. | |
8123 | |
8124 * linear-algebra/vec.m: Use v(:) and not reshape. | |
8125 | |
4885 | 8126 2004-04-29 David Bateman <dbateman@free.fr> |
8127 | |
8128 * statistics/base/ranks.m, statistics/base/run_count.m, | |
8129 statistics/base/studentize.m, statistics/base/kurtosis.m | |
8130 statistics/base/statistics.m, statistics/base/skewness.m | |
8131 statistics/base/iqr.m: | |
8132 Make N-d array aware. Allow optional argument to define the | |
8133 dimension along which to operate. Update the documentation. | |
8134 | |
8135 * statistics/base/ranks.m: Change algorithm to use sort, | |
8136 and adjust for the ties after. | |
8137 | |
8138 * statistics/base/run_counts.m: Change algorithm to use | |
8139 the a combination of diff and find, rather than a for-loop. | |
8140 | |
4881 | 8141 2004-04-23 Paul Kienzle <pkienzle@users.sf.net> |
8142 | |
8143 * plot/hist.m: Correctly determine cutoffs. New tests. | |
8144 | |
4878 | 8145 2004-04-23 David Bateman <dbateman@free.fr> |
8146 | |
8147 * general/int2str.m: Treat only real part of argument, and treat | |
8148 NDArrays by stacking the slices through the matrix vertically. | |
8149 | |
8150 * general/num2str.m: Improve format of integer matrices, and the | |
8151 conversion of complex matrices added. Treat NDArrays by stacking | |
8152 the slices through the matrix vertically. | |
8153 | |
8154 * deprecated/com2str.m: Moved here from general subdirectory. | |
8155 | |
4877 | 8156 2004-04-22 John W. Eaton <jwe@octave.org> |
8157 | |
8158 * quaternion/qtransvmat.m: Use continuation characters to make | |
8159 sure result is a matrix instead of a vector. From <aklark@atdot.it>. | |
8160 | |
4869 | 8161 2004-04-21 David Bateman <dbateman@free.fr> |
8162 | |
5378 | 8163 * elfun/lcm.m: Make N-d aware. |
4870 | 8164 |
4869 | 8165 * general/diff.m: Make the code N-d array aware. Allow an |
8166 optional argument to define the dimension along which to perform | |
8167 the differences and allow the order of the differences to be larger | |
8168 than the dimension itself. | |
8169 | |
8170 * general/rot90.m, general/fliplr.m, general/flipud.m: Limit the | |
8171 use of these functions to 1- and 2-d arrays. | |
8172 | |
4863 | 8173 2004-04-16 John W. Eaton <jwe@octave.org> |
8174 | |
8175 * elfun/gcd.m: Delete. | |
8176 | |
4862 | 8177 2004-04-15 David Bateman <dbateman@free.fr> |
8178 | |
8179 * set/create_set.m, general/is_duplicate_entry.m: Make N-d array aware. | |
8180 | |
8181 * general/shift.m, general/prepad.m, general/postpad.m: Make N-d | |
8182 array aware and and optional argument for the dimension along | |
8183 which to operate. | |
8184 | |
5378 | 8185 * signal/unwrap.m: Make N-d array aware and fix optional |
4862 | 8186 argument for the dimension to be consistent with other N-d array |
8187 functions. | |
8188 | |
4860 | 8189 2004-04-08 David Bateman <dbateman@free.fr> |
8190 | |
8191 * statistics/distributions/discrete_cdf.m, | |
8192 statistics/distributions/discrete_inv.m, | |
8193 statistics/distributions/discrete_pdf.m, | |
8194 statistics/distributions/discrete_rnd.m, | |
8195 statistics/distributions/exponential_cdf.m, | |
8196 statistics/distributions/exponential_inv.m, | |
8197 statistics/distributions/exponential_pdf.m, | |
8198 statistics/distributions/exponential_rnd.m, | |
8199 statistics/distributions/f_cdf.m, | |
8200 statistics/distributions/f_inv.m, | |
8201 statistics/distributions/f_pdf.m, | |
8202 statistics/distributions/f_rnd.m, | |
8203 statistics/distributions/geometric_cdf.m, | |
8204 statistics/distributions/geometric_inv.m, | |
8205 statistics/distributions/geometric_pdf.m, | |
8206 statistics/distributions/geometric_rnd.m, | |
8207 statistics/distributions/hypergeometric_rnd.m, | |
8208 statistics/distributions/kolmogorov_smirnov_cdf.m, | |
8209 statistics/distributions/laplace_cdf.m, | |
8210 statistics/distributions/laplace_inv.m, | |
8211 statistics/distributions/laplace_pdf.m, | |
8212 statistics/distributions/laplace_rnd.m, | |
8213 statistics/distributions/logistic_inv.m, | |
8214 statistics/distributions/logistic_rnd.m, | |
8215 statistics/distributions/lognormal_cdf.m, | |
8216 statistics/distributions/lognormal_inv.m, | |
8217 statistics/distributions/lognormal_pdf.m, | |
8218 statistics/distributions/lognormal_rnd.m, | |
8219 statistics/distributions/pascal_cdf.m, | |
8220 statistics/distributions/pascal_inv.m, | |
8221 statistics/distributions/pascal_pdf.m, | |
8222 statistics/distributions/pascal_rnd.m, | |
8223 statistics/distributions/poisson_cdf.m, | |
8224 statistics/distributions/poisson_inv.m, | |
8225 statistics/distributions/poisson_pdf.m, | |
8226 statistics/distributions/poisson_rnd.m, | |
8227 statistics/distributions/t_cdf.m, | |
8228 statistics/distributions/t_inv.m, | |
8229 statistics/distributions/t_pdf.m, | |
8230 statistics/distributions/t_rnd.m, | |
8231 statistics/distributions/weibull_cdf.m, | |
8232 statistics/distributions/weibull_inv.m, | |
8233 statistics/distributions/weibull_pdf.m, | |
8234 statistics/distributions/weibull_rnd.m: | |
8235 Allow N-d arrays. | |
8236 | |
8237 * statistics/distributions/discrete_inv.m: Fix bug in indexing, | |
8238 that results in NaN in places where it should not have had. | |
8239 | |
8240 * statistics/distributions/discrete_rnd.m: New argument formats to | |
8241 allow creating arbitrary matrices, compatiable with the other | |
5583 | 8242 *_rnd.m functions. Maintain compatibility with previous format. |
4860 | 8243 |
8244 * statistics/distributions/empirical_rnd.m: New argument formats | |
8245 to allow creating arbitrary matrices, compatiable with the other | |
5583 | 8246 *_rnd.m functions. Maintain compatibility with previous |
4860 | 8247 format. Allow N-d arrays. |
8248 | |
8249 * statistics/distributions/hypergeometric_cdf.m, | |
8250 statistics/distributions/hypergeometric_inv.m, | |
8251 statistics/distributions/hypergeometric_pdf.m, | |
8252 statistics/distributions/wiener_rnd.m: | |
8253 Error for non-scalar arguments. | |
8254 | |
8255 * statistics/distributions/pascal_rnd.m: | |
8256 Correct for n = 1 bug, where all elements were equal. | |
8257 | |
4849 | 8258 2004-04-06 David Bateman <dbateman@free.fr> |
8259 | |
4854 | 8260 * general/common_size.m, miscellaneous/bincoeff.m, |
8261 statistics/distributions/beta_cdf.m, | |
8262 statistics/distributions/beta_inv.m, | |
8263 statistics/distributions/beta_pdf.m, | |
8264 statistics/distributions/beta_rnd.m, | |
8265 statistics/distributions/binomial_cdf.m, | |
8266 statistics/distributions/binomial_inv.m, | |
8267 statistics/distributions/binomial_pdf.m, | |
8268 statistics/distributions/binomial_rnd.m, | |
8269 statistics/distributions/cauchy_cdf.m, | |
8270 statistics/distributions/cauchy_inv.m, | |
8271 statistics/distributions/cauchy_pdf.m, | |
8272 statistics/distributions/cauchy_rnd.m, | |
8273 statistics/distributions/chisquare_cdf.m, | |
8274 statistics/distributions/chisquare_inv.m, | |
8275 statistics/distributions/chisquare_pdf.m, | |
8276 statistics/distributions/chisquare_rnd.m, | |
8277 statistics/distributions/gamma_cdf.m, | |
8278 statistics/distributions/gamma_inv.m, | |
8279 statistics/distributions/gamma_pdf.m, | |
8280 statistics/distributions/gamma_rnd.m, | |
8281 statistics/distributions/normal_cdf.m, | |
8282 statistics/distributions/normal_inv.m, | |
8283 statistics/distributions/normal_pdf.m, | |
8284 statistics/distributions/normal_rnd.m, | |
8285 statistics/distributions/stdnormal_cdf.m, | |
8286 statistics/distributions/stdnormal_pdf.m, | |
8287 statistics/distributions/stdnormal_rnd.m, | |
8288 statistics/distributions/uniform_cdf.m, | |
8289 statistics/distributions/uniform_inv.m, | |
8290 statistics/distributions/uniform_pdf.m, | |
8291 statistics/distributions/uniform_rnd.m: | |
8292 Allow the inputs to be N-d arrays. | |
8293 | |
4852 | 8294 * statistics/base/var.m: Update for N-d arrays. Allow dimension arg. |
8295 * statistics/base/median.m: Likewise. | |
4849 | 8296 |
4844 | 8297 2004-04-02 David Bateman <dbateman@free.fr> |
8298 | |
8299 * statistics/base/std.m: Allow optional args for type and dim. | |
4847 | 8300 * statistics/base/center.m, statistics/base/meansq.m, |
8301 statistics/base/moment.m, statistics/base/range.m: | |
4852 | 8302 Update for N-d arrays. |
4844 | 8303 * signal/fftshift.m: Fix dimensioning error. |
8304 | |
8305 * statistics/base/std.m: Use repmat not ones(nr,1)*mean to allow | |
4852 | 8306 N-d arrays. |
4844 | 8307 |
4852 | 8308 * general/mod.m, general/mod.m: Allow N-d arrays with one scalar arg. |
8309 | |
8310 * signal/fftshift.m: Update for N-d arrays, allow optional dim arg. | |
4844 | 8311 |
4852 | 8312 * specfun/erfinv.m, general/repmat.m: Update for N-d arrays. |
4844 | 8313 |
8314 * control/base/bode.m, control/base/lqg.m, control/system/ss2sys.m, | |
8315 control/system/cellidx.m, control/system/dmr2d.m control/system/ss.m, | |
8316 control/system/sysprune.m: Doc update for usage of cell arrays. | |
8317 | |
8318 * control/system/sysidx.m: Use cellidx and not listidx. | |
8319 | |
4841 | 8320 2004-03-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
8321 | |
8322 * plot/__pltopt1__.m: Always add title clause to plot command with | |
8323 default of "" (so it is off unless explicitly set by the user). | |
8324 | |
4836 | 8325 2004-03-12 Stefan van der Walt <stefan@sun.ac.za> |
8326 | |
8327 * image/imshow.m: Accept "truesize" argument. | |
8328 Ignore current colormap. New tests and demos. | |
8329 | |
4834 | 8330 2004-03-10 Volker Kuhlmann <VolkerKuhlmann@gmx.de> |
8331 | |
8332 * signal/sinewave.m: Allow N to default to M. | |
8333 | |
4826 | 8334 2004-03-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8335 | |
8336 * signal/unwrap.m: Use "isempty (tol)" instead of "tol == []". | |
8337 | |
4818 | 8338 2004-03-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
8339 | |
8340 * general/deal.m: New function. | |
4819 | 8341 Add tests from Paul Kienzle. |
4818 | 8342 |
4811 | 8343 2004-03-03 Stefan van der Walt <stefan@sun.ac.za> |
8344 | |
8345 * plot/hist.m: Compute histogram correctly for n>=30. | |
8346 | |
5095 | 8347 2004-03-02 Paul Kienzle <pkienzle@users.sf.net> |
4807 | 8348 |
8349 * signal/sinc.m: Use i(:) instead of i when checking for any nonzeros. | |
8350 | |
4806 | 8351 2004-03-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8352 | |
8353 * miscellaneous/horzcat.m: Delete. | |
8354 * miscellaneous/vertcat.m: Delete. | |
8355 | |
4790 | 8356 2004-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
8357 | |
8358 * plot/figure.m: Also look for GNUTERM in the environment and use | |
8359 that if it is set (for OS X). From Per Persson <persquare@mac.com>. | |
8360 | |
4789 | 8361 2004-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8362 | |
8363 * control/base/__stepimp__.m: Only call clearplot if we will be | |
8364 doing multiple plots in the same gnuplot frame. | |
8365 | |
4780 | 8366 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
8367 | |
8368 * control/system/__sysconcat__.m, control/system/__tfl__.m, | |
8369 control/system/cellidx.m, control/system/ss.m, | |
8370 control/system/tf.m, control/system/zp.m: New functions. | |
8371 | |
4778 | 8372 2004-02-16 Glenn Golden <gdg@zplane.com> |
8373 | |
8374 * statistics/distributions/discrete_inv.m: | |
8375 Reduce memory requirements. | |
8376 | |
4772 | 8377 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
8378 | |
8379 * plot/__errcomm__.m: Fix thinko in previous change. | |
8380 From Teemu Ikonen <tpikonen@pcu.helsinki.fi>. | |
8381 | |
4771 | 8382 2004-02-16 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
8383 | |
8384 * control/base/__bodquist__.m, control/base/__stepimp__.m, | |
8385 control/base/analdemo.m, control/base/bddemo.m, | |
8386 control/base/bode.m, control/base/dre.m, control/base/frdemo.m, | |
8387 control/base/lqg.m, control/base/nyquist.m, control/base/place.m, | |
8388 control/base/rldemo.m, control/base/rlocus.m, | |
8389 control/base/tzero.m, control/hinf/dgkfdemo.m, | |
8390 control/hinf/dhinfdemo.m, control/hinf/h2syn.m, | |
8391 control/hinf/hinf_ctr.m, control/hinf/hinfsyn.m, | |
8392 control/hinf/wgt1o.m, control/obsolete/dlqg.m, | |
8393 control/obsolete/packsys.m, control/obsolete/series.m, | |
8394 control/system/__sysdefioname__.m, | |
8395 control/system/__sysdefstname__.m, control/system/__sysgroupn__.m, | |
8396 control/system/__tf2sysl__.m, control/system/buildssic.m, | |
8397 control/system/c2d.m, control/system/d2c.m, | |
8398 control/system/dmr2d.m, control/system/fir2sys.m, | |
8399 control/system/is_signal_list.m, control/system/is_siso.m, | |
8400 control/system/jet707.m, control/system/listidx.m, | |
8401 control/system/moddemo.m, control/system/ord2.m, | |
8402 control/system/packedform.m, control/system/parallel.m, | |
8403 control/system/ss2sys.m, control/system/sys2tf.m, | |
8404 control/system/sys2zp.m, control/system/sysadd.m, | |
8405 control/system/sysappend.m, control/system/sysconnect.m, | |
8406 control/system/syscont.m, control/system/sysdimensions.m, | |
8407 control/system/sysdisc.m, control/system/sysdup.m, | |
8408 control/system/sysgetsignals.m, control/system/sysgettype.m, | |
8409 control/system/sysgroup.m, control/system/sysmin.m, | |
8410 control/system/sysmult.m, control/system/sysprune.m, | |
8411 control/system/sysrepdemo.m, control/system/sysscale.m, | |
8412 control/system/syssetsignals.m, control/system/syssub.m, | |
8413 control/system/sysupdate.m, control/system/tf2sys.m, | |
8414 control/system/ugain.m, control/system/zp2ss.m, | |
8415 control/system/zp2sys.m, control/util/__outlist__.m, | |
8416 control/util/__zgpbal__.m, control/util/strappend.m: | |
8417 Use cell arrays instead of lists. | |
8418 | |
4723 | 8419 2004-01-23 Stefan van der Walt <stefan@sun.ac.za> |
8420 | |
8421 * plot/bar.m: Increase size of cutoff vector from xlen-1 to xlen | |
8422 so that bar (1, 1) will work. | |
8423 | |
4710 | 8424 2004-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8425 | |
4717 | 8426 * plot/__errcomm__.m: Cope with nargin now being a function. |
8427 * plot/__errplot__.m: Likewise. | |
8428 * plot/__plt__.m: Likewise. | |
8429 * plot/plot_border.m: Likewise. | |
8430 | |
4710 | 8431 * Makefile.in (distclean, maintainer-clean): Remove DOCSTRINGS, |
8432 not $(DOCSTRINGS). | |
8433 | |
4706 | 8434 2004-01-21 Quentin Spencer <qspencer@ieee.org> |
8435 | |
8436 * linear-algebra/rank.m: Allow rank ([]) to return 0, same as | |
8437 rank ([], tol). | |
8438 | |
4691 | 8439 2004-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8440 | |
4692 | 8441 * elfun/acot.m: Return atan (1./z). |
8442 From Gregory Vanuxem <g.vanuxem@wanadoo.fr>. | |
8443 | |
4691 | 8444 * miscellaneous/dir.m: New file. |
8445 | |
8446 * general/num2str.m: Use "%d" as format if values are ints with | |
8447 magnitude less than 1e10. | |
8448 | |
8449 2004-01-09 John W. Eaton <jwe@bevo.che.wisc.edu> | |
8450 | |
8451 * general/num2str.m: If single arg is string, return it. | |
8452 | |
8453 * miscellaneous/not.m: New file. | |
8454 | |
8455 * miscellaneous/unix.m: New file. | |
8456 | |
8457 * miscellaneous/isunix.m: New file. | |
8458 * miscellaneous/ispc.m: New file. | |
8459 | |
8460 * miscellaneous/computer.m: New file. | |
8461 | |
8462 * miscellaneous/delete.m: New file. | |
8463 | |
4689 | 8464 2004-01-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
8465 | |
8466 * statistics/tests/kolmogorov_smirnov_test_2.m: Fix test for ties. | |
8467 | |
8468 2004-01-07 John W. Eaton <jwe@bevo.che.wisc.edu> | |
8469 | |
8470 * miscellaneous/path.m: Handle DEFAULT_LOADPATH substitution. | |
8471 Always return substituted version of LOADPATH if nargout != 0. | |
8472 | |
4685 | 8473 2003-12-21 Schloegl Alois <alois.schloegl@tugraz.at> |
8474 | |
8475 * miscellaneous/fullfile.m: If filename is empty, set it to "." | |
8476 before continuing. | |
8477 | |
8478 * miscellaneous/fileparts.m: Allow name to start with ".". | |
8479 | |
4677 | 8480 2003-12-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
8481 | |
8482 * general/ind2sub.m: New file. | |
8483 * general/sub2ind.m: New file. | |
8484 | |
4675 | 8485 2003-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8486 | |
8487 * control/system/zp2ss.m: Don't save and restore | |
8488 warn_empty_list_elements. | |
8489 | |
8490 2003-12-15 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> | |
8491 | |
6778 | 8492 * control/system/zp2ss.m: Correct definition of pure gain system. |
4675 | 8493 |
4673 | 8494 2003-12-10 Quentin Spencer <qspencer@ieee.org> |
8495 | |
8496 * statistics/base/mean.m: Remove special case for row vectors. | |
8497 | |
4637 | 8498 2003-11-19 Quentin Spencer <qspencer@ieee.org> |
8499 | |
8500 * signal/freqz_plot.m: Save and restore automatic_replot too. | |
8501 | |
4631 | 8502 2003-11-18 Danilo Piazzalunga <danilopiazza@libero.it> |
8503 | |
8504 * statistics/base/iqr.m: Handle matrices. | |
8505 | |
4630 | 8506 2003-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8507 | |
8508 * general/issymmetric.m: Don't fail if norm (x) == 0. | |
8509 | |
4629 | 8510 2003-11-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
8511 | |
8512 * miscellaneous/path.m: Fix thinko in previous change. | |
8513 | |
4609 | 8514 2003-11-14 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
8515 | |
4629 | 8516 * control/base/dare.m: Check positive (semi)definiteness and |
8517 dimensions of r (and q). | |
8518 * control/base/dlqr.m: Check stabilizability of (A,B), | |
8519 detectability of (A,Q), and whether (A,Q) has non minimal modes | |
8520 near unit circle. | |
4611 | 8521 |
8522 * control/system/is_detectable.m: Use Hautus Lemma. | |
8523 Correct the behavior for discrete-time systems. | |
8524 * control/system/is_stabilizable.m: Likewise. | |
8525 | |
4609 | 8526 * linear-algebra/krylov.m: Return H = [] in Vnrm == 0 case. |
8527 | |
8528 * linear-algebra/krylovb.m: Fix typo in usage message. | |
8529 | |
4610 | 8530 * general/isdefinite.m: New function. |
8531 | |
4567 | 8532 2003-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
8533 | |
8534 * general/reshape: Delete. | |
8535 | |
4559 | 8536 2003-10-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
8537 | |
8538 * general/numel.m: Delete. | |
8539 | |
4535 | 8540 2003-10-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8541 | |
4536 | 8542 * miscellaneous/horzcat.m, miscellaneous/vartcat.m: New files. |
8543 | |
8544 * deprecated/isstr.m: New file. | |
4535 | 8545 |
4529 | 8546 2003-10-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
8547 | |
8548 * plot/__axis_label__.m, plot/xlabel.m, plot/ylabel.m, | |
8549 plot/zlabel.m, plot/title.m: Return a value if nargout > 0. | |
8550 | |
4525 | 8551 2003-10-02 Quentin Spencer <qspencer@ieee.org> |
8552 | |
8553 * statistics/base/mean.m: Fix missing semicolon problem. | |
8554 | |
4503 | 8555 2003-09-08 Al Niessner <Al.Niessner@jpl.nasa.gov> |
8556 | |
8557 * plot/subplot.m: New global variable, __multiplot_scale__. | |
8558 | |
4492 | 8559 2003-08-29 David Castelow <DCastelow@Airspan.com> |
8560 | |
8561 * strings/dec2base.m, strings/dec2bin.m, strings/dec2hex.m: | |
8562 Allow optional length argument. | |
8563 | |
4491 | 8564 2003-08-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
8565 | |
8566 * polynomial/polyfit.m: Avoid calling flipud. | |
8567 From Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be>. | |
8568 Return structure as second output value for improved Matlab | |
8569 compatibility. | |
8570 | |
4476 | 8571 2003-07-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
8572 | |
4478 | 8573 * linear-algebra/cond.m: Behave as though old built-in variable |
8574 propagate_empty_matrices is always 1. Also handle empty matrices | |
8575 with one non-zero dimension. | |
8576 | |
4476 | 8577 * miscellaneous/dump_prefs.m: Add warn_separator_insert and |
8578 warn_single_quote_string to the list. | |
4478 | 8579 Delete whitespace_in_literal_matrix and propagate_empty_matrices |
8580 from the list. | |
4476 | 8581 |
5095 | 8582 2003-07-25 Paul Kienzle <pkienzle@users.sf.net> |
4469 | 8583 |
8584 * signal/autocov.m: Transpose result of conj because diag returns | |
8585 a column vector, not a row vector. | |
8586 | |
8587 * audio/playaudio.m, audio/record.m, image/image.m, | |
8588 miscellaneous/bug_report.m: Protect spaces in filenames | |
8589 with quotes. | |
8590 | |
4466 | 8591 2003-07-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8592 | |
4468 | 8593 * io/printf.m, io/puts.m: Delete. |
8594 | |
4466 | 8595 * miscellaneous/dump_prefs.m: Delete define_all_return_values and |
8596 default_return_value from the list. | |
8597 Add warn_undefined_return_values to the list. | |
8598 | |
8599 | |
4464 | 8600 2003-07-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
8601 | |
8602 * miscellaneous/dump_prefs.m: Delete default_global_variable_value | |
8603 and initialize_global_variables from the list. | |
8604 | |
4460 | 8605 2003-07-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
8606 | |
4463 | 8607 * image/colormap.m: Don't save and restore default_eval_print_flag. |
8608 | |
8609 * miscellaneous/dump_prefs.m: Delete default_eval_print_flag. | |
8610 | |
8611 * control/util/zgshsr.m: Use x OP= y instead of x = x OP y. | |
8612 * control/system/sys2fir.m: Likewise. | |
8613 | |
8614 * control/system/is_siso.m: Use && instead of & where appropriate. | |
8615 * control/system/__tf2sysl__.m: Likewise. | |
8616 | |
8617 * control/system/__tf2sysl__.m: Use end instead of length(X). | |
8618 | |
8619 * control/freqchkw.m: Use %-escapes for error instead of num2str | |
8620 and [] concatenation. | |
8621 * control/system/sys2fir.m: Likewise. | |
8622 | |
8623 * control/base/dgram.m, control/base/freqchkw.m, | |
8624 control/base/gram.m, control/system/__abcddims__.m, | |
8625 control/system/__sysdefstname__.m, control/system/__tf2sysl__.m, | |
8626 control/system/is_sample.m, control/system/is_signal_list.m, | |
8627 control/system/is_siso.m, control/system/sys2fir.m, | |
8628 control/system/syschtsam.m, control/system/sysgettsam.m, | |
8629 control/system/sysgettype.m, control/system/tf2zp.m, | |
8630 control/system/ugain.m, control/util/prompt.m, | |
8631 control/util/run_cmd.m, control/util/zgrownorm.m, | |
8632 control/util/zgshsr.m: | |
8633 Improve conformance to Octave coding style. | |
8634 | |
4461 | 8635 * miscellaneous/dump_prefs.m: Add warn_resize_on_reange_error to |
8636 the list. | |
8637 Delete resize_on_range_error from the list. | |
8638 | |
4460 | 8639 * control/base/pzmap.m, control/base/place.m, |
8640 control/base/__freqresp__.m, control/system/sysappend.m, | |
8641 control/system/syscont.m, control/system/sysdisc.m, | |
8642 control/system/sysgroup.m, control/system/tfout.m, | |
8643 control/system/zp2ss.m, control/system/zpout.m, | |
8644 control/util/__outlist__.m, signal/arma_rnd.m, general/shift.m, | |
8645 strings/strcat.m: Save and restore warn_empty_list_elements, not | |
8646 empty_list_elements_ok. | |
8647 | |
8648 * miscellaneous/dump_prefs.m: Add warn_empty_list_elements to the list. | |
8649 Delete empty_list_elements_ok from the list. | |
8650 | |
4457 | 8651 2003-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8652 | |
8653 * miscellaneous/dump_prefs.m: Include warn_neg_dim_as_zero in the | |
8654 list. | |
8655 Delete treat_neg_dim_as_zero from the list. | |
8656 | |
8657 * strings/blanks.m: Don't check treat_neg_dim_as_zero. | |
8658 | |
4451 | 8659 2003-07-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8660 | |
4455 | 8661 * general/reshape.m: Omit do_fortran_indexing from doc string (it |
8662 was not used in the code in any case). | |
8663 | |
8664 * strings/strjust.m: Temporarily set warn_fortran_indexing, not | |
8665 do_fortran_indexing. | |
8666 | |
4452 | 8667 * statistics/base/moment.m: Temporarily set warn_str_to_num, not |
8668 implict_str_to_num_ok. Use unwind_protect block to do it. | |
8669 | |
4451 | 8670 * miscellaneous/dump_prefs.m: Include DEFAULT_EXEC_PATH, |
8671 DEFAULT_LOAD_PATH, crash_dumps_octave_core, | |
4452 | 8672 sighup_dumps_octave_core, sigterm_dumps_octave_core, |
4455 | 8673 warn_imag_to_real, warn_num_to_str, warn_str_to_num, and |
8674 warn_fortran_indexing in the list. | |
8675 Delete ok_to_lose_imaginary_part, implicit_num_to_str_ok, | |
8676 implicit_str_to_num_ok, do_fortran_indexing, and | |
8677 prefer_column_vectors from list. | |
4451 | 8678 |
4440 | 8679 2003-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
8680 | |
8681 * Makefile.in (distclean, maintainer-clean): Also remove | |
8682 gethelp$(BUILD_EXEEXT), $(DOCSTRINGS), and autom4te.cache | |
8683 directory. | |
8684 | |
5095 | 8685 2003-06-17 Aaron A. King <king@quercus.tiem.utk.edu> |
4430 | 8686 |
8687 * plot/hist.m: Don't forget to define n if x is a vector. | |
8688 | |
5095 | 8689 2003-06-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4424 | 8690 |
8691 * miscellaneous/fileparts.m: For compatibility with Matlab, | |
8692 return "." with extension. | |
8693 | |
4422 | 8694 2003-06-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
8695 | |
8696 * control/base/__stepimp__.m, control/base/nichols.m, | |
8697 control/base/nyquist.m, miscellaneous/dump_prefs.m, | |
8698 plot/bottom_title.m, plot/mplot.m, plot/multiplot.m, | |
8699 plot/oneplot.m, plot/plot_border.m, plot/subplot.m, | |
8700 plot/subwindow.m, plot/top_title.m, signal/freqz_plot.m: | |
8701 Eliminate gnuplot_has_multiplot (assume it is always true). | |
8702 | |
4413 | 8703 2003-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
8704 | |
8705 * Makefile.in, image/Makefile.in, startup/Makefile.in: Handle DESTDIR. | |
8706 | |
5095 | 8707 2003-05-05 Andy Adler <adler@site.uottawa.ca> |
4407 | 8708 |
8709 * plot/hist.m: Improve performance by using different algorithms | |
8710 depending on number of bins. | |
8711 | |
4404 | 8712 2003-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8713 | |
8714 * control/system/sysadd.m: If systems are not "tf", convert before | |
8715 adding. | |
8716 | |
5095 | 8717 2003-05-01 Paul Kienzle <pkienzle@users.sf.net> |
4403 | 8718 |
8719 * image/imagesc.m: Accept data limits parameter for colormap. | |
8720 | |
5095 | 8721 2003-04-11 Doug Stewart <dastew@sympatico.ca> |
4375 | 8722 |
8723 * control/base/__stepimp__.m: If digital impulse, reduce gain of | |
8724 the impulse by t_step. | |
8725 | |
4373 | 8726 2003-04-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
8727 | |
8728 * control/base/__bodquist__.m: Don't convert pdbig and fdbig to | |
8729 column vectors. | |
8730 | |
5095 | 8731 2003-03-24 Quentin Spencer <qspencer@ieee.org> |
4371 | 8732 |
8733 * linear-algebra/null.m: Handle empty matrix arg. | |
8734 | |
4369 | 8735 2003-03-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8736 | |
8737 * general/shift.m: Force empty_list_elements_ok to 1. | |
8738 | |
4358 | 8739 2003-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8740 | |
8741 * deprecated/struct_contains.m, deprecated/struct_elements.m: | |
8742 New files. | |
8743 | |
4348 | 8744 2003-02-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
8745 | |
8746 * statistics/tests/kolmogorov_smirnov_test.m: Use str2func to make | |
8747 function handle to pass to feval. | |
8748 * statistics/base/qqplot.m: Likewise. | |
8749 * statistics/base/ppplot.m: Likewise. | |
8750 * signal/spectral_xdf.m: Likewise. | |
8751 * signal/spectral_adf.m: Likewise. | |
8752 | |
4340 | 8753 2003-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
8754 | |
8755 * plot/axis.m: Avoid whitespace in literal matrix problem. | |
8756 | |
4334 | 8757 2003-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8758 | |
8759 * linear-algebra/logm.m: New file. | |
8760 | |
5095 | 8761 2003-02-18 David Bateman <dbateman@free.fr> |
4329 | 8762 |
8763 * mkpkgadd: Scan C++ files as well | |
8764 | |
5095 | 8765 2003-02-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4321 | 8766 |
8767 * strings/findstr.m: Return empty set for zero-length target. | |
8768 | |
5095 | 8769 2003-02-11 Paul Kienzle <pkienzle@users.sf.net> |
4317 | 8770 |
8771 * set/union.m: Preserve the orientation of inputs. | |
8772 | |
4305 | 8773 2003-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
8774 | |
8775 * general/int2str.m: Eliminate leading spaces. | |
8776 | |
4303 | 8777 2003-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
8778 | |
8779 * general/int2str.m: Do a better job with 0, Inf, and NaN, | |
8780 | |
5095 | 8781 2003-01-11 Paul Kienzle <pkienzle@users.sf.net> |
4298 | 8782 |
8783 * Makefile.in (gethelp$(BUILD_EXEEXT)): Pass $(BUILD_CXXFLAGS) and | |
8784 $(BUILD_LDFLAGS) to compiler. | |
8785 | |
4295 | 8786 2003-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8787 | |
8788 * general/num2str.m: Don't specify field width for scalars. | |
8789 | |
4292 | 8790 2003-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
8791 | |
8792 * Makefile.in (DISTFILES): Don't forget mkpkgadd. | |
8793 | |
4265 | 8794 2003-01-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
8795 | |
4279 | 8796 * gethelp.cc: Define __USE_STD_IOSTREAM if using Compaq C++. |
8797 | |
4266 | 8798 * miscellaneous/tempname.m: New file. |
8799 | |
8800 * miscellaneous/tempdir.m: New file. | |
8801 | |
4265 | 8802 * miscellaneous/fullfile.m: New file. |
8803 | |
4259 | 8804 2003-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
8805 | |
4264 | 8806 * miscellaneous/fileparts.m: New file. |
8807 | |
8808 * io/beep.m: New file. | |
8809 | |
4260 | 8810 * plot/__pltopt1__.m: Call undo_string_escapes for title part of |
8811 format only. | |
4259 | 8812 |
4257 | 8813 2003-01-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8814 | |
8815 * strings/strcmp.m: Handle cell arrays of strings. | |
8816 | |
4229 | 8817 2002-12-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
8818 | |
8819 * general/int2str.m: Handle matrices. | |
8820 * general/num2str.m: Likewise. | |
8821 Also handle optional precision, and format args. | |
8822 | |
4225 | 8823 2002-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
8824 | |
8825 * audio/Makefile.in, control/base/Makefile.in, | |
8826 control/hinf/Makefile.in, control/obsolete/Makefile.in, | |
8827 control/system/Makefile.in, elfun/Makefile.in, | |
8828 finance/Makefile.in, general/Makefile.in, image/Makefile.in, | |
8829 io/Makefile.in, linear-algebra/Makefile.in, | |
8830 miscellaneous/Makefile.in, polynomial/Makefile.in, | |
8831 quaternion/Makefile.in, set/Makefile.in, signal/Makefile.in, | |
8832 specfun/Makefile.in, special-matrix/Makefile.in, | |
8833 statistics/base/Makefile.in, statistics/distributions/Makefile.in, | |
8834 statistics/models/Makefile.in, statistics/tests/Makefile.in, | |
8835 strings/Makefile.in, time/Makefile.in, plot/Makefile.in, | |
8836 deprecated/Makefile.in: Use new do-script-install and | |
8837 do-script-uninstall macros. | |
8838 | |
8839 * mkpkgadd: New script. | |
8840 | |
8841 * plot/close.m: New file. | |
8842 | |
4184 | 8843 2002-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
8844 | |
8845 * image/image.m: Use -raw option for xv. | |
8846 From Remy Bruno <remy.bruno@libertysurf.fr> | |
8847 | |
4172 | 8848 2002-11-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
8849 | |
4174 | 8850 * control/base/lsim.m: Use approximate test for step size change. |
8851 | |
4172 | 8852 * signal/bartlett.m: Avoid row/column mismatch error. |
8853 | |
5095 | 8854 2002-11-12 Paul Kienzle <pkienzle@users.sf.net> |
4171 | 8855 |
8856 * statistics/base/var.m: Use better formula for improved accuracy. | |
8857 | |
5095 | 8858 2002-11-04 Nicholas Piper <nick-octave@nickpiper.co.uk> |
4150 | 8859 |
8860 * control/base/lsim.m: Correct doc string. | |
8861 | |
5095 | 8862 2002-11-04 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
4150 | 8863 |
8864 * control/system/syssub.m: Call tf2sys with Gnum-Hnum, not Gnum+Hnum. | |
8865 | |
4148 | 8866 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8867 | |
8868 * plot/contour.m: Handle x and y as matrices too. | |
8869 | |
5095 | 8870 2002-11-01 Joseph P. Skudlarek <jskud@jskud.com> |
4148 | 8871 |
8872 * plot/contour.m: Fix error and usage messages. | |
8873 | |
4146 | 8874 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8875 | |
8876 * plot/contour.m: Correct orientation of plot. | |
8877 | |
4139 | 8878 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
8879 | |
8880 * control/base/analdemo.m: Fix typo. | |
8881 | |
5095 | 8882 2002-10-31 Francesco Potorti` <pot@gnu.org> |
4137 | 8883 |
8884 * statistics/distributions/discrete_pdf.m: Fix typo. | |
8885 | |
4098 | 8886 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8887 | |
8888 * mkdoc: Exit immediately on errors. | |
8889 Exit with error if gethelp does not exist. | |
8890 | |
8891 * Makefile.in: Use $(BUILD_EXEEXT) as appropriate. | |
8892 | |
4093 | 8893 2002-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
8894 | |
8895 * Makefile.in (gethelp): Use $(BUILD_CXX), not $(CXX). | |
8896 | |
5095 | 8897 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4079 | 8898 |
8899 * statistics/distributions/normal_cdf.m: Handle variance == 0. | |
8900 * statistics/distributions/normal_pdf.m: Likewise. | |
8901 * statistics/distributions/normal_inv.m: Likewise. | |
8902 | |
5095 | 8903 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4077 | 8904 |
8905 * specfun/erfinv.m: Return NaN for NaN inputs. | |
8906 | |
5095 | 8907 2002-09-26 Jeff Cunningham <jeffrey@cunningham.net> |
4068 | 8908 |
8909 * statistics/base/var.m: Handle complex values. | |
8910 | |
4031 | 8911 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8912 | |
8913 * configure.in (AC_CONFIG_FILES): Add deprecated/Makefile to the | |
8914 list. | |
8915 * deprecated/Makefile.in: New file. | |
8916 | |
5095 | 8917 2002-08-09 Paul Kienzle <pkienzle@users.sf.net> |
4031 | 8918 |
8919 * statistics/distributions/beta_cdf.m: Replace betai with betainc. | |
8920 * statistics/distributions/binomial_cdf.m: Likewise. | |
8921 * statistics/distributions/f_cdf.m: Likewise. | |
8922 * statistics/distributions/t_cdf.m: Likewise. | |
8923 | |
8924 * miscellaneous/bincoeff.m: Replace lgamma with gammaln. | |
8925 * specfun/beta.m: Likewise. | |
8926 * special-matrix/invhilb.m: Likewise (but it is only in a comment). | |
8927 * statistics/distributions/gamma_pdf.m: Likewise. | |
8928 * statistics/distributions/poisson_pdf.m: Likewise. | |
8929 | |
8930 * statistics/distributions/gamma_cdf.m: replace gammai with gammainc | |
8931 * statistics/distributions/poisson_cdf.m: Likewise. | |
8932 | |
4026 | 8933 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
8934 | |
4028 | 8935 * deprecated/is_bool.m: New file. |
8936 * deprecated/is_complex.m: New file. | |
8937 * deprecated/is_global.m: New file. | |
8938 * deprecated/is_list.m: New file. | |
8939 * deprecated/is_matrix.m: New file. | |
8940 * deprecated/is_scalar.m: New file. | |
8941 * deprecated/is_square.m: New file. | |
8942 * deprecated/is_stream.m: New file. | |
8943 * deprecated/is_struct.m: New file. | |
8944 * deprecated/is_symmetric.m: New file. | |
8945 * deprecated/is_vector.m: New file. | |
4030 | 8946 * Change all callers of these functions to use the new names. |
4028 | 8947 |
4029 | 8948 * deprecated: New directory. |
8949 * Makefile.in (SUBDIRS): Add it to the list. | |
8950 | |
4026 | 8951 * general/isscalar.m: Rename from is_scalar.m. |
8952 * general/issquare.m: Rename from is_square.m. | |
8953 * general/issymmetric.m: Rename from is_symmetric.m. | |
8954 * general/isvector.m: Rename from is_vector.m. | |
8955 | |
4022 | 8956 2002-08-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
8957 | |
8958 * statistics/base/mean.m: Allow empty matrices. | |
8959 Handle DIM arg. | |
8960 | |
5095 | 8961 2002-08-05 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4020 | 8962 |
8963 * plot/__errcomm__.m: If format is not specified, default to error | |
8964 bar format. | |
8965 | |
4011 | 8966 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
8967 | |
8968 * miscellaneous/popen2.m: Use F_SETFL and O_NONBLOCK, not | |
8969 __F_SETFL__ and __O_NONBLOCK__. | |
8970 | |
8971 * image/saveimage.m: Use OCTAVE_VERSION, not __OCTAVE_VERSION__. | |
8972 * miscellaneous/bug_report.m: Likewise. | |
8973 | |
4007 | 8974 2002-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
8975 | |
4008 | 8976 * general/mod.m: Use isreal (x), not any (any (imag (x))). |
8977 * general/rem.m: Likewise. | |
8978 | |
8979 * plot/loglogerr.m: Use varargin instead of old style varargs. | |
8980 * plot/semilogxerr.m: Likewise. | |
4007 | 8981 * plot/semilogyerr.m: Likewise. |
8982 | |
5095 | 8983 2002-07-25 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4006 | 8984 |
8985 * plot/__errcomm__.m: New file. Common functionality for error plots. | |
8986 * plot/loglogerr.m: New file. Double logarithm plots with errorbars. | |
8987 * plot/semilogxerr.m: New file. Semilogarithm plots with errorbars. | |
8988 * plot/semilogyerr.m: New file. Semilogarithm plots with errorbars | |
8989 | |
8990 * plot/errorbar.m: Use __errcomm__.m. | |
8991 * plot/__errplot__.m: Minor cleanups. | |
8992 * plot/__pltopt__.m: Handle boxxyerrorbars plot style. | |
8993 * plot/__pltopt1__.m: Likewise. | |
8994 | |
3980 | 8995 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
8996 | |
3981 | 8997 * general/rem.m: Delete redundant call to usage. |
8998 | |
3980 | 8999 * general/mod.m: Additional error checks, Texinfoize doc string. |
9000 | |
5095 | 9001 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3980 | 9002 |
9003 * general/mod.m: New function. | |
9004 | |
3979 | 9005 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
9006 | |
9007 * control/system/sysmult.m: Use varargin instead of old style varargs. | |
9008 * control/system/sysadd.m: Likewise. | |
9009 * control/system/sysgroup.m: Likewise. | |
9010 * control/system/syssub.m: Likewise. | |
9011 * elfun/gcd.m: Likewise. | |
9012 * elfun/lcm.m: Likewise. | |
9013 * general/common_size.m: Likewise. | |
9014 * io/printf.m: Likewise. | |
9015 * miscellaneous/menu.m: Likewise. | |
9016 * miscellaneous/path.m: Likewise. | |
9017 * plot/__errplot__.m: Likewise. | |
9018 * plot/__plt__.m: Likewise. | |
9019 * plot/axis.m: Likewise. | |
9020 * plot/errorbar.m: Likewise. | |
9021 * plot/mplot.m: Likewise. | |
9022 * plot/loglog.m: Likewise. | |
9023 * plot/plot.m: Likewise. | |
9024 * plot/plot_border.m: Likewise. | |
9025 * plot/semilogx.m: Likewise. | |
9026 * plot/semilogy.m: Likewise. | |
9027 * plot/xlabel.m: Likewise. | |
9028 * plot/ylabel.m: Likewise. | |
9029 * plot/zlabel.m: Likewise. | |
9030 * statistics/base/ppplot.m: Likewise. | |
9031 * statistics/base/qqplot.m: Likewise. | |
9032 * statistics/tests/bartlett_test.m: Likewise. | |
9033 * statistics/tests/kolmogorov_smirnov_test.m: Likewise. | |
9034 * statistics/tests/kruskal_wallis_test.m: Likewise. | |
9035 * strings/str2mat.m: Likewise. | |
9036 * strings/strcat.m: Likewise. | |
9037 | |
5095 | 9038 2002-06-27 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
3962 | 9039 |
9040 * statistics/distributions/gamma_pdf.m: Avoid overflow in more cases. | |
9041 | |
3924 | 9042 2002-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
9043 | |
9044 * skip-autoheader: New file, for autogen.sh. | |
3925 | 9045 * Makefile.in (DISTFILES): Add it to the list. |
3924 | 9046 |
5095 | 9047 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3914 | 9048 |
9049 * general/repmat.m: New function. | |
9050 | |
5095 | 9051 2002-04-25 Paul Kienzle <pkienzle@users.sf.net> |
3911 | 9052 |
9053 * audio/lin2mu.m: Accept matrices and [-1,1] normalized audio. | |
9054 Use optional parameter to specify the number of bits in the input. | |
9055 * audio/mu2lin.m: Accept matrices, return n-bit integers or | |
9056 floats in the range [-1,1], 2x speedup. | |
9057 | |
9058 * strings/index.m, strings/rindex.m: Vectorize for speed. | |
9059 | |
3910 | 9060 2002-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
9061 | |
9062 * linear-algebra/kron.m: Delete. | |
9063 | |
5095 | 9064 2002-04-24 Paul Kienzle <pkienzle@users.sf.net> |
3907 | 9065 |
9066 * signal/freqz.m: If nargout is zero, plot results instead of | |
9067 returning them. | |
9068 * signal/freqz_plot.m: New file. | |
9069 | |
5095 | 9070 2002-04-24 Bill Lash <lash@tellabs.com> |
3906 | 9071 |
5378 | 9072 * signal/unwrap.m: New file. |
3906 | 9073 |
5095 | 9074 2002-04-23 Paul Kienzle <pkienzle@users.sf.net> |
3904 | 9075 |
9076 * image/rgb2hsv.m: Faster, more accurate, remove the | |
9077 divide by zero warning. | |
9078 | |
5095 | 9079 2002-04-09 Paul Kienzle <pkienzle@users.sf.net> |
3893 | 9080 |
3894 | 9081 * strings/deblank.m: Trim \0 as well as blank. |
9082 | |
5378 | 9083 * freqz.m: Evaluate a specific range of frequencies |
3893 | 9084 expressed in radians or Hz relative to a supplied sample rate. |
9085 | |
5095 | 9086 2002-04-04 Paul Kienzle <pkienzle@users.sf.net> |
3890 | 9087 |
9088 * signal/fftfilt.m: Filter columns if called with a matrix. | |
9089 | |
3891 | 9090 * strings/findstr.m: Vectorize as much as possible. |
9091 | |
5095 | 9092 2002-04-04 Dirk Laurie <dirk@calvyn.puk.ac.za> |
3889 | 9093 |
9094 * special-matrix/invhilb.m: New version that is faster and more | |
9095 accurate. | |
9096 | |
5095 | 9097 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
3887 | 9098 |
9099 * configure.in: Update for autoconf 2.5x. | |
9100 | |
5095 | 9101 2002-04-03 Paul Kienzle <pkienzle@users.sf.net> |
3885 | 9102 |
9103 * special-matrix/vander.m: Code tidy and vectorize. | |
9104 | |
5095 | 9105 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
3882 | 9106 |
3883 | 9107 * linear-algebra/cross.m: Accept nx3 and 3xn matrices, in addition |
9108 to vectors. Issue a warning in the case x matches y' but return a | |
9109 column vector as Octave currently does. | |
9110 | |
3882 | 9111 * plot/contour.m: Set default number of levels for contour(x,y,z). |
9112 | |
9113 * control/system/starp.m: Leave more of the documentation | |
9114 processing to texinfo and less to the @format block. | |
9115 | |
9116 * image/imagesc.m: Only display image if no output is requested. | |
9117 Code tidying. | |
9118 | |
3876 | 9119 2002-03-07 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
9120 | |
9121 * statistics/base/center.m: Accept and return empty matrix. | |
9122 | |
3872 | 9123 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
9124 | |
9125 * specfun/erfinv.m: Fix usage message. | |
9126 | |
3869 | 9127 2002-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
9128 | |
9129 * elfun/coth.m: Use 1 ./ tanh(z) instead of cosh(z) ./ sinh(z). | |
9130 From "Michael O'Brien" <mobrien@kento.unm.edu>. | |
9131 | |
3837 | 9132 2001-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
9133 | |
9134 * statistics/distributions/discrete_cdf.m: Downcase incorrectly | |
9135 capitalized variable names. | |
9136 | |
3836 | 9137 2001-05-30 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
9138 | |
9139 * m/image/saveimage.m: fix saving an image to Postscript format. | |
9140 | |
5095 | 9141 2001-04-18 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3814 | 9142 |
9143 * control/system/is_stabilizable.m: Pass a to sys2ss, not sys. | |
9144 | |
3803 | 9145 2001-02-28 Kai Habel <kai.habel@gmx.de> |
9146 | |
3833 | 9147 * general/cart2pol.m: New file. |
9148 * general/pol2cart.m: New file. | |
9149 * general/cart2sph.m: New file. | |
9150 * general/sph2cart.m: New file. | |
9151 * image/rgb2hsv.m: New file. | |
9152 * image/hsv2rgb.m: New file. | |
3803 | 9153 |
9154 2001-02-26 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> | |
9155 | |
9156 * plot/meshgrid.m: Avoid for loops. | |
9157 * plot/meshdom.m: Likewise. | |
9158 | |
3801 | 9159 2001-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
9160 | |
9161 * linear-algebra/norm.m: Use sqrt instead of ^0.5. | |
9162 | |
9163 2001-02-22 Heinz Bauschke <bauschke@cecm.sfu.ca> | |
9164 | |
9165 * linear-algebra/norm.m: Use more efficient method for Frobenius | |
9166 norm. | |
9167 | |
3792 | 9168 2001-02-09 David Livings <david.livings@asa.co.uk> |
9169 | |
9170 * statistics/tests/welch_test.m: Fix typo. | |
9171 | |
9172 * statistics/distributions/chisquare_cdf.m: | |
9173 Don't restrict inputs to be only positive integers. | |
9174 * statistics/distributions/chisquare_inv.m: Likewise. | |
9175 * statistics/distributions/chisquare_pdf.m: Likewise. | |
9176 * statistics/distributions/chisquare_rnd.m: Likewise. | |
9177 * statistics/distributions/f_cdf.m: Likewise. | |
9178 * statistics/distributions/f_inv.m: Likewise. | |
9179 * statistics/distributions/f_pdf.m: Likewise. | |
9180 * statistics/distributions/f_rnd.m: Likewise. | |
9181 * statistics/distributions/t_cdf.m: Likewise. | |
9182 * statistics/distributions/t_inv.m: Likewise. | |
9183 * statistics/distributions/t_pdf.m: Likewise. | |
9184 * statistics/distributions/t_rnd.m: Likewise. | |
9185 | |
3790 | 9186 2001-02-08 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
9187 | |
9188 * strings/dec2base.m: New file. | |
9189 * strings/base2dec.m: New file. | |
9190 * strings/strjust.m: New file. | |
9191 * strings/dec2hex.m: Replace with version that just calls 2dec2base. | |
9192 * strings/dec2bin.m: Likewise. | |
9193 * strings/hex2dec.m: Replace with version that just calls base2dec. | |
9194 * strings/bin2dec.m: Likewise. | |
9195 | |
5095 | 9196 2001-02-07 David Livings <david.livings@asa.co.uk> |
3787 | 9197 |
9198 * statistics/base/ppplot.m: Use gset, not set. | |
9199 * statistics/base/qqplot.m: Likewise. | |
9200 | |
5095 | 9201 2001-02-05 Ondrej Popp <ondrej@geocities.com> |
3775 | 9202 |
9203 * control/system/c2d.m: Add missing endif. | |
9204 | |
3759 | 9205 2000-12-15 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
9206 | |
9207 * strings/index.m: Return 0 if either string is empty. | |
9208 | |
9209 2000-12-15 Ben Sapp <bsapp@lanl.gov> | |
9210 | |
9211 * control/system/c2d.m: Allow option of matched pole/zero | |
9212 equivalent for conversion. | |
9213 | |
9214 2000-12-15 Matthew W. Roberts <matt@lehi.tamu.edu> | |
9215 | |
9216 * strings/findstr.m: Return empty matrix if search string is empty. | |
9217 | |
3757 | 9218 2000-12-15 Kai Habel <kai.habel@gmx.de> |
9219 | |
9220 * saveimage.m: Do create rawbit image for black and white images, | |
9221 but do it correctly. | |
9222 | |
3754 | 9223 2000-12-13 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
9224 | |
6778 | 9225 * polynomial/deconv.m: For compatibility with Matlab, don't reduce |
9226 result polynomials. | |
3754 | 9227 |
3748 | 9228 2000-12-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
9229 | |
9230 * image/saveimage.m: Don't try to create rawbit image. | |
9231 | |
3740 | 9232 2000-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
9233 | |
9234 * Makefile.in (bin-dist): Pass -C to $(MAKE), not -c. | |
9235 | |
5095 | 9236 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3737 | 9237 |
9238 * plot/contour.m: Reorder args for Matlab compatibility. | |
9239 | |
3727 | 9240 2000-10-27 Mats Jansson <mats.e.jansson@home.se> |
9241 | |
9242 * set/create_set.m: Avoid empty matrix in matrix list warning. | |
9243 | |
3717 | 9244 2000-09-08 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
9245 | |
3718 | 9246 * plot/errorbar.m, plot/__errplot__.m: New functions. |
9247 | |
3717 | 9248 * plot/mesh.m: Also set nologscale before plotting. |
9249 * plot/__pltopt1__.m: Handle xerrorbars, yerrorbars, and | |
9250 xyerrorbars instead of just errorbars. | |
9251 | |
3714 | 9252 2000-08-25 Thomas Walter <walter@pctc.chemie.uni-erlangen.de> |
9253 | |
9254 * image/image.m: Try display (from ImageMagick) first. | |
9255 | |
3709 | 9256 2000-08-01 Rolf Fabian <fabian@tu-cottbus.de> |
9257 | |
9258 * plot/meshgrid.m: Use transpose to reorient vectors, not complex | |
9259 conjugate transpose. | |
9260 | |
3705 | 9261 2000-07-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
9262 | |
9263 * strings/str2mat.m: Apply setstr to each argument. | |
9264 | |
3696 | 9265 2000-07-17 Gabriele Pannocchia <pannocchia@ing.unipi.it> |
9266 | |
9267 * control/base/dkalman.m: New file. | |
9268 * control/base/dlqe.m: Handle singular A matrix. | |
9269 * control/base/dlqr.m: Likewise. | |
9270 | |
3695 | 9271 2000-07-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
9272 | |
9273 * strings/strcmp.m: Return 0 instead of an error if row and column | |
9274 dimensions don't match. | |
9275 | |
3690 | 9276 2000-06-30 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
9277 | |
9278 * plot/hist.m: Allow 3 argument form to work. | |
9279 | |
5095 | 9280 2000-06-27 Matthew W. Roberts <matt@lehi.tamu.edu> |
3683 | 9281 |
9282 * plot/plot.m: Add examples in doc string. | |
9283 | |
5095 | 9284 2000-06-08 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3679 | 9285 |
9286 * control/base/__stepimp__.m: Reset multiplot state when done. | |
9287 Do the right thing even if automatic_replot is not zero. | |
9288 Avoid failure if system has pure imaginary poles. | |
9289 | |
3674 | 9290 2000-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
9291 | |
9292 * general/logical.m: Return arg if it is empty. Better error | |
9293 message for non-numeric types. | |
9294 | |
5095 | 9295 2000-05-31 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3672 | 9296 |
9297 * control/base/dlqe.m: Update documentation. Fix typo. Warn | |
9298 about difference with Matlab dlqe function. | |
9299 | |
9300 * control/system/sysmult.m: Fix typo in argument dimensions checking. | |
9301 | |
5095 | 9302 2000-05-24 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3670 | 9303 |
9304 * strings/strrep.m: Fix typo. | |
9305 | |
3666 | 9306 2000-05-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
9307 | |
9308 * strings/strrep.m: Don't transpose result for case of jump > 0. | |
9309 | |
5095 | 9310 2000-05-13 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3666 | 9311 |
9312 * strings/strrep.m: Avoid for loop for speed. | |
3667 | 9313 * plot/axis.m: Handle string options for Matlab compatibility. |
3666 | 9314 |
5095 | 9315 2000-04-04 John Smith <john@arrows.demon.co.uk> |
3656 | 9316 |
9317 * statistics/distributions/beta_inv.m: Provide better(?) initial | |
9318 guess for iteration. | |
9319 | |
3651 | 9320 2000-03-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
9321 | |
9322 * image/image.m: Allow image (A) or image (x, y, A). | |
9323 * image/imagesc.m: Likewise. | |
9324 | |
9325 * image/image.m: If zoom is not supplied, or if it is an empty | |
9326 matrix, autoscale the image. | |
9327 | |
3618 | 9328 2000-03-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
9329 | |
3619 | 9330 * plot/title.m, plot/bottom_title.m, plot/top_title.m: |
9331 Undo string escapes in text twice(!) before sending to gnuplot. | |
9332 | |
3618 | 9333 * image/saveimage.m: Add comment to file saying who created it and |
9334 when it was created. Suggested by Stephen Eglen | |
9335 <stephen@cogsci.ed.ac.uk>. | |
9336 | |
5095 | 9337 2000-03-21 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3617 | 9338 |
9339 * polynomial/polyreduce.m: Simplify by looking for the first | |
9340 non-zero element rather than the last of the first set of zero | |
9341 elements. | |
9342 | |
9343 * plot/__pltopt1__.m: Accept "--", "-.", and ":" line styles. | |
9344 | |
5095 | 9345 2000-03-21 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
3616 | 9346 |
9347 * image/saveimage.m: Swap black and white colormaps so zero is | |
9348 displayed as black and 1 is displayed as white. | |
9349 Fix indexing bug in ppm case. | |
9350 | |
3604 | 9351 2000-03-06 Stephen Eglen <stephen@anc.ed.ac.uk> |
9352 | |
9353 * statistics/tests/kolmogorov_smirnov_test_2.m: Account for ties | |
9354 between the two distributions (took same approach as ks.test() in R.) | |
9355 | |
3603 | 9356 2000-02-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
9357 | |
9358 * control/base/bode.m: Temporarily disable automatic_replot. | |
9359 | |
3599 | 9360 2000-02-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
9361 | |
3601 | 9362 * Makefile.in (clean): Also remove gethelp. |
9363 | |
3599 | 9364 * specfun/erfinv.m: Use z_new in convergence test, not z_old. |
9365 | |
5095 | 9366 2000-02-11 Georg Thimm <mgeorg@SGraphicsWS1.mpe.ntu.edu.sg> |
3597 | 9367 |
9368 * set/create_set.m: Use find to avoid while loop. | |
9369 | |
5095 | 9370 2000-02-11 Stephen Eglen <stephen@cogsci.ed.ac.uk> |
3597 | 9371 |
9372 * plot/hist.m: New optional third argument. | |
9373 | |
9374 2000-02-10 John W. Eaton <jwe@bevo.che.wisc.edu> | |
9375 | |
9376 * miscellaneous/bug_report.m: Use octave-bug script with version | |
9377 number appended. | |
9378 | |
3575 | 9379 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
9380 | |
9381 * gethelp.cc: Sprinkle with std:: qualifier. | |
9382 | |
3498 | 9383 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
9384 | |
9385 * image/saveimage.m: Delete some debugging code. | |
9386 | |
3486 | 9387 2000-01-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
9388 | |
9389 * signal/sinc.m: Avoid reshaping. | |
9390 | |
9391 * image/rgb2ind.m: No longer needs to reset do_fortran_indexing. | |
9392 * image/ind2rgb.m: Ditto. | |
9393 * image/ind2gray.m: Ditto. | |
9394 * general/reshape.m: Ditto. Also no longer needs to reset | |
9395 implicit_str_to_num_ok. | |
9396 | |
3483 | 9397 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
9398 | |
9399 * miscellaneous/popen2.m: Deal with the fact that pipe now returns | |
9400 a list of file structures, not a vector of numeric file ids. | |
9401 | |
3474 | 9402 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
9403 | |
3476 | 9404 * plot/__axis_label__.m: New function. |
9405 Undo string escapes in text twice(!) before sending to gnuplot. | |
9406 * plot/xlabel.m: Use it. | |
9407 * plot/ylabel.m: Ditto. | |
9408 * plot/zlabel.m: Ditto. | |
9409 | |
3474 | 9410 * plot/mesh.m: Fix error message to reflect reality. |
9411 | |
5095 | 9412 2000-01-24 Cyril Humbert <humbert@phobos.univ-mlv.fr> |
3473 | 9413 |
9414 * statistics/distributions/weibull_pdf.m: Use correct formula. | |
9415 | |
5095 | 9416 2000-01-22 Michael Reifenberger <mike@Plaut.de> |
3471 | 9417 |
9418 * audio/saveaudio.m: Also accept files with .ul extension. | |
9419 * audio/loadaudio.m: Ditto. | |
9420 * audio/playaudio.m: Ditto. | |
9421 | |
3456 | 9422 2000-01-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
9423 | |
9424 * statistics/distributions/beta_cdf.m: Texinfoize doc string. | |
9425 * statistics/distributions/beta_inv.m: Ditto. | |
9426 * statistics/distributions/beta_pdf.m: Ditto. | |
9427 * statistics/distributions/beta_rnd.m: Ditto. | |
9428 * statistics/distributions/binomial_cdf.m: Ditto. | |
9429 * statistics/distributions/binomial_inv.m: Ditto. | |
9430 * statistics/distributions/binomial_pdf.m: Ditto. | |
9431 * statistics/distributions/binomial_rnd.m: Ditto. | |
9432 * statistics/distributions/cauchy_cdf.m: Ditto. | |
9433 * statistics/distributions/cauchy_inv.m: Ditto. | |
9434 * statistics/distributions/cauchy_pdf.m: Ditto. | |
9435 * statistics/distributions/cauchy_rnd.m: Ditto. | |
9436 * statistics/distributions/chisquare_cdf.m: Ditto. | |
9437 * statistics/distributions/chisquare_inv.m: Ditto. | |
9438 * statistics/distributions/chisquare_pdf.m: Ditto. | |
9439 * statistics/distributions/chisquare_rnd.m: Ditto. | |
9440 * statistics/distributions/discrete_cdf.m: Ditto. | |
9441 * statistics/distributions/discrete_inv.m: Ditto. | |
9442 * statistics/distributions/discrete_pdf.m: Ditto. | |
9443 * statistics/distributions/discrete_rnd.m: Ditto. | |
9444 * statistics/distributions/empirical_cdf.m: Ditto. | |
9445 * statistics/distributions/empirical_inv.m: Ditto. | |
9446 * statistics/distributions/empirical_pdf.m: Ditto. | |
9447 * statistics/distributions/empirical_rnd.m: Ditto. | |
9448 * statistics/distributions/exponential_cdf.m: Ditto. | |
9449 * statistics/distributions/exponential_inv.m: Ditto. | |
9450 * statistics/distributions/exponential_pdf.m: Ditto. | |
9451 * statistics/distributions/exponential_rnd.m: Ditto. | |
9452 * statistics/distributions/f_cdf.m: Ditto. | |
9453 * statistics/distributions/f_inv.m: Ditto. | |
9454 * statistics/distributions/f_pdf.m: Ditto. | |
9455 * statistics/distributions/f_rnd.m: Ditto. | |
9456 * statistics/distributions/gamma_cdf.m: Ditto. | |
9457 * statistics/distributions/gamma_inv.m: Ditto. | |
9458 * statistics/distributions/gamma_pdf.m: Ditto. | |
9459 * statistics/distributions/gamma_rnd.m: Ditto. | |
9460 * statistics/distributions/geometric_cdf.m: Ditto. | |
9461 * statistics/distributions/geometric_inv.m: Ditto. | |
9462 * statistics/distributions/geometric_pdf.m: Ditto. | |
9463 * statistics/distributions/geometric_rnd.m: Ditto. | |
9464 * statistics/distributions/hypergeometric_cdf.m: Ditto. | |
9465 * statistics/distributions/hypergeometric_inv.m: Ditto. | |
9466 * statistics/distributions/hypergeometric_pdf.m: Ditto. | |
9467 * statistics/distributions/hypergeometric_rnd.m: Ditto. | |
9468 * statistics/distributions/kolmogorov_smirnov_cdf.m: Ditto. | |
9469 * statistics/distributions/laplace_cdf.m: Ditto. | |
9470 * statistics/distributions/laplace_inv.m: Ditto. | |
9471 * statistics/distributions/laplace_pdf.m: Ditto. | |
9472 * statistics/distributions/laplace_rnd.m: Ditto. | |
9473 * statistics/distributions/logistic_cdf.m: Ditto. | |
9474 * statistics/distributions/logistic_inv.m: Ditto. | |
9475 * statistics/distributions/logistic_pdf.m: Ditto. | |
9476 * statistics/distributions/logistic_rnd.m: Ditto. | |
9477 * statistics/distributions/lognormal_cdf.m: Ditto. | |
9478 * statistics/distributions/lognormal_inv.m: Ditto. | |
9479 * statistics/distributions/lognormal_pdf.m: Ditto. | |
9480 * statistics/distributions/lognormal_rnd.m: Ditto. | |
9481 * statistics/distributions/normal_cdf.m: Ditto. | |
9482 * statistics/distributions/normal_inv.m: Ditto. | |
9483 * statistics/distributions/normal_pdf.m: Ditto. | |
9484 * statistics/distributions/normal_rnd.m: Ditto. | |
9485 * statistics/distributions/pascal_cdf.m: Ditto. | |
9486 * statistics/distributions/pascal_inv.m: Ditto. | |
9487 * statistics/distributions/pascal_pdf.m: Ditto. | |
9488 * statistics/distributions/pascal_rnd.m: Ditto. | |
9489 * statistics/distributions/poisson_cdf.m: Ditto. | |
9490 * statistics/distributions/poisson_inv.m: Ditto. | |
9491 * statistics/distributions/poisson_pdf.m: Ditto. | |
9492 * statistics/distributions/poisson_rnd.m: Ditto. | |
9493 * statistics/distributions/stdnormal_cdf.m: Ditto. | |
9494 * statistics/distributions/stdnormal_inv.m: Ditto. | |
9495 * statistics/distributions/stdnormal_pdf.m: Ditto. | |
9496 * statistics/distributions/stdnormal_rnd.m: Ditto. | |
9497 * statistics/distributions/t_cdf.m: Ditto. | |
9498 * statistics/distributions/t_inv.m: Ditto. | |
9499 * statistics/distributions/t_pdf.m: Ditto. | |
9500 * statistics/distributions/t_rnd.m: Ditto. | |
9501 * statistics/distributions/uniform_cdf.m: Ditto. | |
9502 * statistics/distributions/uniform_inv.m: Ditto. | |
9503 * statistics/distributions/uniform_pdf.m: Ditto. | |
9504 * statistics/distributions/uniform_rnd.m: Ditto. | |
9505 * statistics/distributions/weibull_cdf.m: Ditto. | |
9506 * statistics/distributions/weibull_inv.m: Ditto. | |
9507 * statistics/distributions/weibull_pdf.m: Ditto. | |
9508 * statistics/distributions/weibull_rnd.m: Ditto. | |
9509 * statistics/distributions/wiener_rnd.m: Ditto. | |
9510 | |
3453 | 9511 2000-01-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
9512 | |
9513 * statistics/base/values.m: Texinfoize doc string. | |
9514 * statistics/base/var.m: Ditto. | |
9515 * statistics/base/table.m: Ditto. | |
9516 * statistics/base/studentize.m: Ditto. | |
9517 * statistics/base/statistics.m: Ditto. | |
9518 * statistics/base/spearman.m: Ditto. | |
9519 * statistics/base/run_count.m: Ditto. | |
9520 * statistics/base/ranks.m: Ditto. | |
9521 * statistics/base/range.m: Ditto. | |
9522 * statistics/base/qqplot.m: Ditto. | |
9523 * statistics/base/probit.m: Ditto. | |
9524 * statistics/base/ppplot.m: Ditto. | |
9525 * statistics/base/moment.m: Ditto. | |
9526 * statistics/base/meansq.m: Ditto. | |
9527 * statistics/base/logit.m: Ditto. | |
9528 * statistics/base/kendall.m: Ditto. | |
9529 * statistics/base/iqr.m: Ditto. | |
9530 * statistics/base/cut.m: Ditto. | |
9531 * statistics/base/cor.m: Ditto. | |
9532 * statistics/base/cloglog.m: Ditto. | |
9533 * statistics/base/center.m: Ditto. | |
3454 | 9534 * statistics/models/logistic_regression.m: Ditto. |
9535 * statistics/models/logistic_regression_derivative.m: Ditto. | |
9536 * statistics/models/logistic_regression_likelihood.m: Ditto. | |
9537 * statistics/tests/anova.m: Ditto. | |
9538 * statistics/tests/bartlett_test.m: Ditto. | |
9539 * statistics/tests/chisquare_test_homogeneity.m: Ditto. | |
9540 * statistics/tests/chisquare_test_independence.m: Ditto. | |
9541 * statistics/tests/cor_test.m: Ditto. | |
9542 * statistics/tests/f_test_regression.m: Ditto. | |
9543 * statistics/tests/hotelling_test.m: Ditto. | |
9544 * statistics/tests/hotelling_test_2.m: Ditto. | |
9545 * statistics/tests/kolmogorov_smirnov_test.m: Ditto. | |
9546 * statistics/tests/kolmogorov_smirnov_test_2.m: Ditto. | |
9547 * statistics/tests/kruskal_wallis_test.m: Ditto. | |
9548 * statistics/tests/manova.m: Ditto. | |
9549 * statistics/tests/mcnemar_test.m: Ditto. | |
9550 * statistics/tests/prop_test_2.m: Ditto. | |
9551 * statistics/tests/run_test.m: Ditto. | |
9552 * statistics/tests/sign_test.m: Ditto. | |
9553 * statistics/tests/t_test.m: Ditto. | |
9554 * statistics/tests/t_test_2.m: Ditto. | |
9555 * statistics/tests/t_test_regression.m: Ditto. | |
9556 * statistics/tests/u_test.m: Ditto. | |
9557 * statistics/tests/var_test.m: Ditto. | |
9558 * statistics/tests/welch_test.m: Ditto. | |
9559 * statistics/tests/wilcoxon_test.m: Ditto. | |
9560 * statistics/tests/z_test.m: Ditto. | |
9561 * statistics/tests/z_test_2.m: Ditto. | |
3453 | 9562 |
3446 | 9563 2000-01-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
9564 | |
9565 * strings/bin2dec.m: Texinfoize doc string. | |
3449 | 9566 * plot/__plr1__.m: Ditto. |
9567 * plot/__pltopt__.m: Ditto. | |
9568 * plot/__plt__.m: Ditto. | |
9569 * plot/__plt2vv__.m: Ditto. | |
9570 * plot/__plr2__.m: Ditto. | |
9571 * plot/__plr__.m: Ditto. | |
9572 * plot/__plt1__.m: Ditto. | |
9573 * plot/__plt2__.m: Ditto. | |
9574 * plot/__plt2mm__.m: Ditto. | |
9575 * plot/__plt2mv__.m: Ditto. | |
9576 * plot/__plt2ss__.m: Ditto. | |
9577 * miscellaneous/paren.m: Ditto. | |
9578 * miscellaneous/comma.m: Ditto. | |
9579 * miscellaneous/semicolon.m: Ditto. | |
9580 * miscellaneous/path.m: Ditto. | |
9581 * miscellaneous/list_primes.m: Ditto. | |
9582 * miscellaneous/flops.m: Ditto. | |
9583 * miscellaneous/dump_prefs.m: Ditto. | |
9584 * miscellaneous/bug_report.m: Ditto. | |
9585 * linear-algebra/dot.m: Ditto | |
9586 * linear-algebra/dmult.m: Ditto. | |
9587 * general/randperm.m: Ditto. | |
9588 * general/logical.m: Ditto. | |
9589 * general/is_duplicate_entry.m: Ditto. | |
9590 * signal/arch_fit.m: Ditto. | |
9591 * signal/arch_rnd.m: Ditto. | |
9592 * signal/arch_test.m: Ditto. | |
9593 * signal/arma_rnd.m: Ditto. | |
9594 * signal/autocor.m: Ditto. | |
9595 * signal/autocov.m: Ditto. | |
9596 * signal/autoreg_matrix.m: Ditto. | |
9597 * signal/bartlett.m: Ditto. | |
9598 * signal/blackman.m: Ditto. | |
9599 * signal/detrend.m: Ditto. | |
9600 * signal/diffpara.m: Ditto. | |
9601 * signal/durbinlevinson.m: Ditto. | |
9602 * signal/fftconv.m: Ditto. | |
9603 * signal/fftfilt.m: Ditto. | |
9604 * signal/fftshift.m: Ditto. | |
9605 * signal/fractdiff.m: Ditto. | |
9606 * signal/freqz.m: Ditto. | |
9607 * signal/hamming.m: Ditto. | |
9608 * signal/hanning.m: Ditto. | |
9609 * signal/hurst.m: Ditto. | |
9610 * signal/periodogram.m: Ditto. | |
9611 * signal/rectangle_lw.m: Ditto. | |
9612 * signal/rectangle_sw.m: Ditto. | |
9613 * signal/sinc.m: Ditto. | |
9614 * signal/sinetone.m: Ditto. | |
9615 * signal/sinewave.m: Ditto. | |
9616 * signal/spectral_adf.m: Ditto. | |
9617 * signal/spectral_xdf.m: Ditto. | |
9618 * signal/spencer.m: Ditto. | |
9619 * signal/stft.m: Ditto. | |
9620 * signal/synthesis.m: Ditto. | |
9621 * signal/triangle_lw.m: Ditto. | |
9622 * signal/triangle_sw.m: Ditto. | |
9623 * signal/yulewalker.m: Ditto. | |
3450 | 9624 * control/util/strappend.m: Ditto. |
3451 | 9625 * control/base/nichols.m: Ditto. |
3452 | 9626 * control/system/is_signal_list.m: Ditto. |
9627 * control/system/listidx.m: Ditto. | |
9628 * control/system/sysgettsam.m: Ditto. | |
9629 * control/system/sysidx.m: Ditto. | |
3446 | 9630 |
3438 | 9631 2000-01-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
9632 | |
9633 * control/system/__abcddims__.m: Rename from | |
9634 control/system/abcddims.m, change all callers. | |
9635 * control/base/__bodquist__.m: Likewise. | |
9636 * control/base/__freqresp__.m: Likewise. | |
9637 * control/util/__outlist__.m: Likewise. | |
9638 * control/base/__stepimp__.m: Likewise. | |
9639 * control/system/__syschnamesl__.m: Likewise. | |
9640 * control/system/__syscont_disc__.m: Likewise. | |
9641 * control/system/__sysdefioname__.m: Likewise. | |
9642 * control/system/__sysdefstname__.m: Likewise. | |
9643 * control/system/__sysgroupn__.m: Likewise. | |
9644 * control/system/__tf2sysl__.m: Likewise. | |
9645 * control/util/__zgpbal__.m: Likewise. | |
9646 * control/system/__zp2ssg2__.m: Likewise. | |
3495 | 9647 |
9648 * quaternion/demoquat.m: Add copyright notice, Texinfoize doc string. | |
3452 | 9649 * quaternion/qconj.m: Ditto. |
9650 * quaternion/qcoordinate_plot.m: Ditto. | |
9651 * quaternion/qderiv.m: Ditto. | |
9652 * quaternion/qderivmat.m: Ditto. | |
9653 * quaternion/qinv.m: Ditto. | |
9654 * quaternion/qmult.m: Ditto. | |
9655 * quaternion/qtrans.m: Ditto. | |
9656 * quaternion/qtransv.m: Ditto. | |
9657 * quaternion/qtransvmat.m: Ditto. | |
9658 * quaternion/quaternion.m: Ditto. | |
3438 | 9659 |
3436 | 9660 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
9661 | |
9662 * control/base/Makefile.in: Ditto. | |
9663 * control/hinf/Makefile.in: New file. | |
9664 * control/marsyas/Makefile.in: Ditto. | |
9665 * control/obsolete/Makefile.in: Ditto. | |
9666 * control/system/Makefile.in: Ditto. | |
9667 * control/util/Makefile.in: Ditto. | |
9668 | |
9669 * strings/com2str.m: Move here from control directory. | |
9670 | |
9671 * control/base: New directory. | |
9672 * control/base/DEMOcontrol.m: Move here from control directory. | |
9673 * control/base/analdemo.m: Ditto. | |
9674 * control/base/are.m: Ditto. | |
9675 * control/base/bddemo.m: Ditto. | |
9676 * control/base/bode.m: Ditto. | |
9677 * control/base/bode_bounds.m: Ditto. | |
9678 * control/base/bodquist.m: Ditto. | |
9679 * control/base/controldemo.m: Ditto. | |
9680 * control/base/ctrb.m: Ditto. | |
9681 * control/base/damp.m: Ditto. | |
9682 * control/base/dare.m: Ditto. | |
9683 * control/base/dcgain.m: Ditto. | |
9684 * control/base/dgram.m: Ditto. | |
9685 * control/base/dlqe.m: Ditto. | |
9686 * control/base/dlqr.m: Ditto. | |
9687 * control/base/dlyap.m: Ditto. | |
9688 * control/base/dre.m: Ditto. | |
9689 * control/base/frdemo.m: Ditto. | |
9690 * control/base/freqchkw.m: Ditto. | |
9691 * control/base/freqresp.m: Ditto. | |
9692 * control/base/gram.m: Ditto. | |
9693 * control/base/impulse.m: Ditto. | |
9694 * control/base/lqe.m: Ditto. | |
9695 * control/base/lqg.m: Ditto. | |
9696 * control/base/lqr.m: Ditto. | |
9697 * control/base/lsim.m: Ditto. | |
9698 * control/base/ltifr.m: Ditto. | |
9699 * control/base/lyap.m: Ditto. | |
9700 * control/base/nichols.m: Ditto. | |
9701 * control/base/nyquist.m: Ditto. | |
9702 * control/base/obsv.m: Ditto. | |
9703 * control/base/place.m: Ditto. | |
9704 * control/base/pzmap.m: Ditto. | |
9705 * control/base/rldemo.m: Ditto. | |
9706 * control/base/rlocus.m: Ditto. | |
9707 * control/base/step.m: Ditto. | |
9708 * control/base/stepimp.m: Ditto. | |
9709 * control/base/tzero.m: Ditto. | |
9710 * control/base/tzero2.m: Ditto. | |
9711 | |
9712 * control/hinf: New directory. | |
9713 * control/hinf/dhinfdemo.m: Move here from control directory. | |
9714 * control/hinf/h2norm.m: Ditto. | |
9715 * control/hinf/h2syn.m: Ditto. | |
9716 * control/hinf/hinf_ctr.m: Ditto. | |
9717 * control/hinf/hinfdemo.m: Ditto. | |
9718 * control/hinf/hinfnorm.m: Ditto. | |
9719 * control/hinf/hinfsyn.m: Ditto. | |
9720 * control/hinf/hinfsyn_chk.m: Ditto. | |
9721 * control/hinf/hinfsyn_ric.m: Ditto. | |
9722 * control/hinf/wgt1o.m: Ditto. | |
3441 | 9723 * control/hinf/dgkfdemo.m: Ditto. |
9724 * control/hinf/is_dgkf.m: Ditto. | |
3436 | 9725 |
9726 * control/marsyas: New directory. | |
9727 * control/marsyas/demomarsyas.m: Move here from control directory. | |
9728 * control/marsyas/susball.m: Ditto. | |
9729 | |
9730 * control/obsolete/dezero.m: Move here from control directory. | |
9731 * control/obsolete/rotg.m: Ditto. | |
9732 | |
9733 * control/system: New directory. | |
9734 * control/system/abcddim.m: Move here from control directory. | |
9735 * control/system/abcddims.m: Ditto. | |
9736 * control/system/buildssic.m: Ditto. | |
9737 * control/system/c2d.m: Ditto. | |
9738 * control/system/d2c.m: Ditto. | |
9739 * control/system/dmr2d.m: Ditto. | |
9740 * control/system/fir2sys.m: Ditto. | |
9741 * control/system/is_abcd.m: Ditto. | |
9742 * control/system/is_digital.m: Ditto. | |
9743 * control/system/is_sample.m: Ditto. | |
9744 * control/system/is_signal_list.m: Ditto. | |
9745 * control/system/is_siso.m: Ditto. | |
3441 | 9746 * control/system/is_controllable.m: Ditto. |
9747 * control/system/is_detectable.m: Ditto. | |
9748 * control/system/is_observable.m: Ditto. | |
9749 * control/system/is_stabilizable.m: Ditto. | |
9750 * control/system/is_stable.m: Ditto. | |
3436 | 9751 * control/system/jet707.m: Ditto. |
9752 * control/system/listidx.m: Ditto. | |
9753 * control/system/moddemo.m: Ditto. | |
9754 * control/system/ord2.m: Ditto. | |
9755 * control/system/packedform.m: Ditto. | |
9756 * control/system/parallel.m: Ditto. | |
9757 * control/system/ss2sys.m: Ditto. | |
9758 * control/system/ss2tf.m: Ditto. | |
9759 * control/system/ss2zp.m: Ditto. | |
9760 * control/system/starp.m: Ditto. | |
9761 * control/system/sys2fir.m: Ditto. | |
9762 * control/system/sys2ss.m: Ditto. | |
9763 * control/system/sys2tf.m: Ditto. | |
9764 * control/system/sys2zp.m: Ditto. | |
9765 * control/system/sysadd.m: Ditto. | |
9766 * control/system/sysappend.m: Ditto. | |
9767 * control/system/syschnamesl.m: Ditto. | |
9768 * control/system/syschtsam.m: Ditto. | |
9769 * control/system/sysconnect.m: Ditto. | |
9770 * control/system/syscont.m: Ditto. | |
9771 * control/system/syscont_disc.m: Ditto. | |
9772 * control/system/sysdefioname.m: Ditto. | |
9773 * control/system/sysdefstname.m: Ditto. | |
9774 * control/system/sysdimensions.m: Ditto. | |
9775 * control/system/sysdisc.m: Ditto. | |
9776 * control/system/sysdup.m: Ditto. | |
9777 * control/system/sysgetsignals.m: Ditto. | |
9778 * control/system/sysgettsam.m: Ditto. | |
9779 * control/system/sysgettype.m: Ditto. | |
9780 * control/system/sysgroup.m: Ditto. | |
9781 * control/system/sysgroupn.m: Ditto. | |
9782 * control/system/sysidx.m: Ditto. | |
9783 * control/system/sysmin.m: Ditto. | |
9784 * control/system/sysmult.m: Ditto. | |
9785 * control/system/sysout.m: Ditto. | |
9786 * control/system/sysprune.m: Ditto. | |
9787 * control/system/sysreorder.m: Ditto. | |
9788 * control/system/sysrepdemo.m: Ditto. | |
9789 * control/system/sysscale.m: Ditto. | |
9790 * control/system/syssetsignals.m: Ditto. | |
9791 * control/system/syssub.m: Ditto. | |
9792 * control/system/sysupdate.m: Ditto. | |
9793 * control/system/tf2ss.m: Ditto. | |
9794 * control/system/tf2sys.m: Ditto. | |
9795 * control/system/tf2sysl.m: Ditto. | |
9796 * control/system/tf2zp.m: Ditto. | |
9797 * control/system/tfout.m: Ditto. | |
9798 * control/system/ugain.m: Ditto. | |
9799 * control/system/zp2ss.m: Ditto. | |
9800 * control/system/zp2ssg2.m: Ditto. | |
9801 * control/system/zp2sys.m: Ditto. | |
9802 * control/system/zp2tf.m: Ditto. | |
9803 * control/system/zpout.m: Ditto. | |
9804 | |
9805 * control/util: New directory. | |
9806 * control/util/axis2dlim.m: Move here from control directory. | |
9807 * control/util/outlist.m: Ditto. | |
9808 * control/util/prompt.m: Ditto. | |
9809 * control/util/run_cmd.m: Ditto. | |
9810 * control/util/sortcom.m: Ditto. | |
9811 * control/util/strappend.m: Ditto. | |
9812 * control/util/swap.m: Ditto. | |
9813 * control/util/zgfmul.m: Ditto. | |
9814 * control/util/zgfslv.m: Ditto. | |
9815 * control/util/zginit.m: Ditto. | |
9816 * control/util/zgpbal.m: Ditto. | |
9817 * control/util/zgreduce.m: Ditto. | |
9818 * control/util/zgrownorm.m: Ditto. | |
9819 * control/util/zgscal.m: Ditto. | |
9820 * control/util/zgsgiv.m: Ditto. | |
9821 * control/util/zgshsr.m: Ditto. | |
9822 | |
3427 | 9823 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
9824 | |
9825 * gethelp.cc (extract_help_text): Discard first space character | |
9826 after consecutive comment characters. | |
9827 | |
3422 | 9828 Thu Jan 13 00:56:57 2000 John W. Eaton <jwe@bahaha.che.wisc.edu> |
9829 | |
9830 * control/obsolete: New directory | |
9831 * control/obsolete/swaprows.m: Move here from control directory. | |
3436 | 9832 * control/obsolete/swapcols.m: Ditto. |
9833 * control/obsolete/dlqg.m: Ditto. | |
9834 * control/obsolete/minfo.m: Ditto. | |
9835 * control/obsolete/packsys.m: Ditto. | |
9836 * control/obsolete/qzval.m: Ditto. | |
9837 * control/obsolete/unpacksys.m: Ditto. | |
9838 * control/obsolete/series.m: Ditto. | |
9839 * control/obsolete/syschnames.m: Ditto. | |
9840 * polynomial/polyout.m: Ditto. | |
3422 | 9841 |
3420 | 9842 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
9843 | |
9844 * general/fliplr.m: Eliminate useless copy of arg. | |
9845 * general/flipud.m: Ditto. | |
9846 | |
3418 | 9847 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
9848 | |
9849 * linear-algebra/cross.m: Only return a row vector if both args | |
9850 are row vectors. | |
9851 * polynomial/polyfit.m: Likewise. | |
9852 | |
9853 * signal/autocov.m: Don't reset prefer_column_vectors. | |
9854 | |
9855 * statistics/distributions/discrete_rnd.m: | |
9856 Always generate a row vector. | |
9857 * statistics/distributions/hypergeometric_rnd.m: Likewise. | |
9858 | |
5095 | 9859 2000-01-11 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3416 | 9860 |
9861 * strings/upper.m: Add missing `-*- texinfo -*-' tag to doc string. | |
9862 | |
9863 * audio/setaudio.m: Texinfoize doc string. | |
9864 * control/com2str.m: Likewise. | |
9865 * control/controldemo.m: Likewise. | |
9866 * control/DEMOcontrol.m: Likewise. | |
9867 * control/dezero.m: Likewise. | |
9868 * control/dre.m: Likewise. | |
9869 * control/hinfsyn_ric.m: Likewise. | |
9870 | |
5095 | 9871 2000-01-05 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3407 | 9872 |
9873 * io/printf.m: Add @seealso{...} to doc string. | |
9874 * io/puts.m: Likewise. | |
9875 * plot/semilogx.m: Likewise. | |
9876 * plot/semilogy.m: Likewise. | |
9877 * plot/__pltopt__.m: Likewise. | |
9878 * plot/bar.m: Likewise. | |
9879 * plot/xlabel.m: Likewise. | |
9880 * plot/grid.m: Likewise. | |
9881 * plot/shg.m: Likewise. | |
9882 * plot/title.m: Likewise. | |
9883 * plot/mesh.m: Likewise. | |
9884 * plot/__pltopt1__.m: Likewise. | |
9885 * plot/contour.m: Likewise. | |
9886 * plot/hist.m: Likewise. | |
9887 * plot/stairs.m: Likewise. | |
9888 * plot/meshgrid.m: Likewise. | |
9889 * plot/polar.m: Likewise. | |
9890 * plot/loglog.m: Likewise. | |
9891 * plot/plot.m: Likewise. | |
9892 * miscellaneous/semicolon.m: Likewise. | |
9893 * miscellaneous/menu.m: Likewise. | |
9894 * miscellaneous/etime.m: Likewise. | |
9895 * miscellaneous/texas_lotto.m: Likewise. | |
9896 * miscellaneous/comma.m: Likewise. | |
9897 * audio/lin2mu.m: Likewise. | |
9898 * audio/playaudio.m: Likewise. | |
9899 * audio/loadaudio.m: Likewise. | |
9900 * audio/saveaudio.m: Likewise. | |
9901 * audio/mu2lin.m: Likewise. | |
9902 * audio/record.m: Likewise. | |
9903 * strings/isletter.m: Likewise. | |
9904 * strings/lower.m: Likewise. | |
9905 * strings/lower.m: Likewise. | |
9906 * strings/upper.m: Likewise. | |
9907 * specfun/erfinv.m: Likewise. | |
9908 * specfun/gammai.m: Likewise. | |
9909 * specfun/log2.m: Likewise. | |
9910 * specfun/pow2.m: Likewise. | |
9911 * elfun/gcd.m: Likewise. | |
9912 * elfun/lcm.m: Likewise. | |
9913 * special-matrix/vander.m: Likewise. | |
9914 * special-matrix/sylvester_matrix.m: Likewise. | |
9915 * special-matrix/hilb.m: Likewise. | |
9916 * special-matrix/hankel.m: Likewise. | |
9917 * special-matrix/toeplitz.m: Likewise. | |
9918 * special-matrix/invhilb.m: Likewise. | |
9919 * statistics/base/std.m: Likewise. | |
9920 * statistics/base/median.m: Likewise. | |
9921 * linear-algebra/cond.m: Likewise. | |
9922 * linear-algebra/norm.m: Likewise. | |
9923 * finance/nper.m: Likewise. | |
9924 * finance/pmt.m: Likewise. | |
9925 * finance/pv.m: Likewise. | |
9926 * finance/rate.m: Likewise. | |
9927 * finance/npv.m: Likewise. | |
9928 * general/fliplr.m: Likewise. | |
9929 * general/flipud.m: Likewise. | |
9930 * general/is_scalar.m: Likewise. | |
9931 * general/rem.m: Likewise. | |
9932 * general/perror.m: Likewise. | |
9933 * general/tril.m: Likewise. | |
9934 * general/rot90.m: Likewise. | |
9935 * general/num2str.m: Likewise. | |
9936 * general/int2str.m: Likewise. | |
9937 * general/reshape.m: Likewise. | |
9938 * general/logspace.m: Likewise. | |
9939 * general/is_symmetric.m: Likewise. | |
9940 * general/is_vector.m: Likewise. | |
9941 * general/nextpow2.m: Likewise. | |
9942 * general/columns.m: Likewise. | |
9943 * general/is_square.m: Likewise. | |
9944 * general/rows.m: Likewise. | |
9945 * control/ugain.m: Likewise. | |
9946 * control/damp.m: Likewise. | |
9947 * control/dare.m: Likewise. | |
9948 * control/are.m: Likewise. | |
9949 * control/sys2fir.m: Likewise. | |
9950 * control/abcddim.m: Likewise. | |
9951 * control/is_abcd.m: Likewise. | |
9952 * control/step.m: Likewise. | |
9953 * control/is_observable.m: Likewise. | |
9954 * control/is_controllable.m: Likewise. | |
9955 * control/jet707.m: Likewise. | |
9956 * control/polyout.m: Likewise. | |
9957 * control/impulse.m: Likewise. | |
9958 * control/lqg.m: Likewise. | |
9959 * control/is_detectable.m: Likewise. | |
9960 * control/sysdimensions.m: Likewise. | |
9961 * control/sysupdate.m: Likewise. | |
9962 * control/stepimp.m: Likewise. | |
9963 * control/is_stable.m: Likewise. | |
9964 * control/tfout.m: Likewise. | |
9965 * control/zpout.m: Likewise. | |
9966 | |
3405 | 9967 2000-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
9968 | |
9969 * set/complement.m: Add @seealso{} stuff. | |
9970 * set/create_set.m: Likewise. | |
9971 * set/intersection.m: Likewise. | |
9972 * set/union.m: Likewise. | |
9973 | |
3399 | 9974 1999-12-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
9975 | |
3400 | 9976 * control/d2c.m: Use double quotes instead of single quotes for |
9977 string constants. | |
9978 * control/dgkfdemo.m: Likewise. | |
9979 * control/fir2sys.m: Likewise. | |
9980 * control/frdemo.m: Likewise. | |
9981 * control/moddemo.m: Likewise. | |
9982 * control/minfo.m: Likewise. | |
9983 * control/is_stabilizable.m: Likewise. | |
9984 * control/is_dgkf.m: Likewise. | |
9985 * control/polyout.m: Likewise. | |
9986 * control/sysconnect.m: Likewise. | |
9987 * control/sysrepdemo.m: Likewise. | |
9988 * control/tf2sys.m: Likewise. | |
9989 * control/tfout.m: Likewise. | |
9990 * control/zp2sys.m: Likewise. | |
9991 * control/zpout.m: Likewise. | |
9992 * control/tzero.m: Likewise. | |
9993 | |
9994 * control/DEMOcontrol.m: Handle moddemo case too. | |
9995 | |
9996 * image/loadimage.m: Use double quotes instead of single quotes | |
9997 for string constants. Use sprintf instead of square brackets to | |
9998 construct string. | |
9999 | |
3399 | 10000 * control/DEMOcontrol.m: Formatting tweaks. |
3400 | 10001 * control/fir2sys.m: Likewise. |
3399 | 10002 |
3390 | 10003 1999-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
10004 | |
10005 * mkdoc: Only delete spaces before @ characters at the beginning | |
10006 of a line. | |
10007 | |
3383 | 10008 1999-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
10009 | |
3388 | 10010 * control/bddemo.m: Make it more likely to work with any value of |
10011 whitespace_in_literal_matrix. | |
3386 | 10012 * control/analdemo.m: Ditto. |
10013 * control/dgkfdemo.m: Ditto. | |
10014 * control/frdemo.m: Ditto. | |
10015 * control/sysrepdemo.m: Ditto. | |
10016 * control/moddemo.m: Ditto. | |
3388 | 10017 * control/zp2ss.m: Ditto. |
3387 | 10018 * control/zp2tf.m: Ditto. |
3388 | 10019 * control/syssub.m: Ditto. |
10020 * finance/npv.m: Ditto. | |
10021 * statistics/base/studentize.m: Ditto. | |
10022 * statistics/base/values.m: Ditto. | |
10023 * statistics/distributions/exponential_cdf.m: Ditto. | |
10024 * statistics/distributions/poisson_cdf.m: Ditto. | |
3386 | 10025 |
3384 | 10026 * control/dezero.m: Use toascii to convert string to ASCII value |
10027 instead of multiplying it by 1. | |
10028 | |
3383 | 10029 * control/zp2sys.m: Don't save and restore implicit_str_to_num_ok. |
10030 * control/zpout.m: Ditto. | |
10031 * control/tfout.m: Ditto. | |
10032 * control/tf2sys.m: Ditto. | |
10033 * control/syssub.m: Ditto. | |
10034 * control/syssetsignals.m: Ditto. | |
10035 * control/sysout.m: Ditto. | |
10036 * control/sysmult.m: Ditto. | |
10037 * control/sysgroup.m: Ditto. | |
10038 * control/sysdup.m: Ditto. | |
10039 * control/sysdisc.m: Ditto. | |
10040 * control/syscont.m: Ditto. | |
10041 * control/sysconnect.m: Ditto. | |
10042 * control/sysappend.m: Ditto. | |
10043 * control/sysadd.m: Ditto. | |
10044 * control/ss2sys.m: Ditto. | |
10045 * control/nyquist.m: Ditto. | |
10046 * control/lqg.m: Ditto. | |
10047 * control/fir2sys.m: Ditto. | |
10048 * control/dmr2d.m: Ditto. | |
10049 * control/dezero.m: Ditto. | |
10050 * control/d2c.m: Ditto. | |
10051 * control/c2d.m: Ditto. | |
10052 * control/bddemo.m: Ditto. | |
10053 * control/pzmap.m: Ditto. | |
10054 | |
5095 | 10055 1999-12-08 Daniel Calvelo <dcalvelo@pharion.univ-lille2.fr> |
3374 | 10056 |
10057 * signal/spectral_adf.m: Fix typo. | |
10058 | |
3372 | 10059 1999-11-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
10060 | |
10061 * linear-algebra/cond.m: Texinfoize doc string. | |
10062 * linear-algebra/kron.m: Ditto. | |
10063 * linear-algebra/norm.m: Ditto. | |
10064 * linear-algebra/null.m: Ditto. | |
10065 * linear-algebra/orth.m: Ditto. | |
10066 * linear-algebra/rank.m: Ditto. | |
10067 * linear-algebra/trace.m: Ditto. | |
10068 * linear-algebra/qzhess.m: Ditto. | |
10069 * miscellaneous/menu.m: Ditto. | |
3373 | 10070 * general/perror.m: Ditto. |
10071 * general/strerror.m: Ditto. | |
10072 * general/columns.m: Ditto. | |
10073 * general/rows.m: Ditto. | |
10074 * image/colormap.m: Ditto. | |
10075 * image/gray.m: Ditto. | |
10076 * image/gray2ind.m: Ditto. | |
10077 * image/image.m: Ditto. | |
10078 * image/imagesc.m: Ditto. | |
10079 * image/imshow.m: Ditto. | |
10080 * image/ind2gray.m: Ditto. | |
10081 * image/ind2rgb.m: Ditto. | |
10082 * image/loadimage.m: Ditto. | |
10083 * image/rgb2ntsc.m: Ditto. | |
10084 * image/ntsc2rgb.m: Ditto. | |
10085 * image/ocean.m: Ditto. | |
10086 * image/rgb2ind.m: Ditto. | |
10087 * image/saveimage.m: Ditto. | |
3372 | 10088 * io/printf.m: Ditto. |
10089 * io/puts.m: Ditto. | |
10090 | |
3369 | 10091 1999-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
10092 | |
10093 * special-matrix/hankel.m: Texinfoize doc string. | |
10094 * special-matrix/hilb.m: Ditto. | |
10095 * special-matrix/invhilb.m: Ditto. | |
10096 * special-matrix/sylvester_matrix.m: Ditto. | |
10097 * special-matrix/toeplitz.m: Ditto. | |
10098 * special-matrix/vander.m: Ditto. | |
10099 * linear-algebra/vec.m: Ditto. | |
10100 * linear-algebra/vech.m: Ditto. | |
10101 * general/common_size.m: Ditto. | |
10102 * general/diff.m: Ditto. | |
10103 * general/fliplr.m: Ditto. | |
10104 * general/flipud.m: Ditto. | |
10105 * general/rot90.m: Ditto. | |
10106 * general/reshape.m: Ditto. | |
10107 * general/shift.m: Ditto. | |
10108 * general/tril.m: Ditto. | |
10109 * general/triu.m: Ditto. | |
10110 * general/logspace.m: Ditto. | |
3371 | 10111 * general/nargchk.m: Ditto. |
3369 | 10112 |
3367 | 10113 1999-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
10114 | |
10115 * statistics/base/mean: Texinfoize doc string. | |
10116 * statistics/base/median: Ditto. | |
10117 * statistics/base/std: Ditto. | |
10118 * statistics/base/cov: Ditto. | |
10119 * statistics/base/corrcoef: Ditto. | |
10120 * statistics/base/kurtosis: Ditto. | |
10121 * statistics/base/mahalanobis: Ditto. | |
10122 * statistics/base/skewness: Ditto. | |
3368 | 10123 * statistics/base/gls.m: Ditto. |
10124 * statistics/base/ols.m: Ditto. | |
3367 | 10125 * signal/detrend.m: Ditto. |
10126 * signal/freqz.m: Ditto. | |
10127 * signal/sinc.m: Ditto. | |
10128 * signal/fftconv.m: Ditto. | |
10129 * signal/fftfilt.m: Ditto. | |
3368 | 10130 * set/create_set.m: Ditto. |
10131 * set/union.m: Ditto. | |
10132 * set/intersection.m: Ditto. | |
10133 * set/complement.m: Ditto. | |
10134 * poly/compan.m: Ditto. | |
10135 * poly/conv: Ditto. | |
10136 * poly/deconv: Ditto. | |
10137 * poly/poly: Ditto. | |
10138 * poly/polyderiv: Ditto. | |
10139 * poly/polyfit: Ditto. | |
10140 * poly/polyinteg: Ditto. | |
10141 * poly/polyreduce: Ditto. | |
10142 * poly/polyval: Ditto. | |
10143 * poly/polyvalm: Ditto. | |
10144 * poly/residue: Ditto. | |
10145 * poly/roots: Ditto. | |
10146 * plot/top_title.m: Ditto | |
10147 * plot/subwindow.m: Ditto | |
10148 * plot/subplot.m: Ditto | |
10149 * plot/plot_border.m: Ditto | |
10150 * plot/oneplot.m: Ditto | |
10151 * plot/multiplot.m: Ditto | |
10152 * plot/mplot.m: Ditto | |
10153 * plot/xlabel.m: Ditto | |
10154 * plot/figure.m: Ditto | |
10155 * plot/meshdom.m: Ditto | |
10156 * plot/mesh.m: Ditto | |
10157 * plot/stairs.m: Ditto | |
10158 * plot/polar.m: Ditto | |
10159 * plot/loglog.m: Ditto | |
10160 * plot/hist.m: Ditto | |
10161 * plot/contour.m: Ditto | |
10162 * plot/bar.m: Ditto | |
10163 * plot/axis.m: Ditto | |
10164 * plot/plot.m: Ditto. | |
3367 | 10165 |
3361 | 10166 1999-11-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
10167 | |
3365 | 10168 * control/pinv.m: Delete. |
10169 | |
3364 | 10170 * Makefile.in (DOCSTRINGS): Don't echo $(ALL_M_FILES). |
10171 | |
3361 | 10172 * strings/blanks.m: Texinfoize doc string. |
10173 * strings/strcat.m: Ditto. | |
10174 * strings/str2mat.m: Ditto. | |
10175 * strings/deblank.m: Ditto. | |
10176 * strings/findstr.m: Ditto. | |
10177 * strings/index.m: Ditto. | |
10178 * strings/rindex.m: Ditto. | |
10179 * strings/split.m: Ditto. | |
10180 * strings/strcmp.m: Ditto. | |
10181 * strings/strrep.m: Ditto. | |
10182 * strings/substr.m: Ditto. | |
10183 * general/int2str.m: Ditto. | |
10184 * general/num2str.m: Ditto. | |
10185 * strings/dec2bin.m: Ditto. | |
10186 * strings/bin2dec: Ditto. | |
10187 * strings/dec2bin: Ditto. | |
10188 * strings/dec2hex: Ditto. | |
10189 * strings/hex2dec: Ditto. | |
10190 * strings/str2num: Ditto. | |
10191 | |
3347 | 10192 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
10193 | |
10194 * Makefile.in (DISTFILES): Include DOCSTRINGS. | |
10195 | |
5095 | 10196 1999-11-09 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3361 | 10197 |
10198 * control/DEMOcontrol.m: Texinfoize doc string. | |
10199 * control/abcddim.m: Ditto. | |
10200 * control/abcddims.m: Ditto. | |
10201 * control/analdemo.m: Ditto. | |
10202 * control/are.m: Ditto. | |
10203 * control/axis2dlim.m: Ditto. | |
10204 * control/bddemo.m: Ditto. | |
10205 * control/bode.m: Ditto. | |
10206 * control/bode_bounds.m: Ditto. | |
10207 * control/bodquist.m: Ditto. | |
10208 * control/buildssic.m: Ditto. | |
10209 * control/c2d.m: Ditto. | |
10210 * control/ctrb.m: Ditto. | |
10211 * control/d2c.m: Ditto. | |
10212 * control/damp.m: Ditto. | |
10213 * control/dare.m: Ditto. | |
10214 * control/dcgain.m: Ditto. | |
10215 * control/dgkfdemo.m: Ditto. | |
10216 * control/dgram.m: Ditto. | |
10217 * control/dlqe.m: Ditto. | |
10218 * control/dlqr.m: Ditto. | |
10219 * control/dlyap.m: Ditto. | |
10220 * control/dmr2d.m: Ditto. | |
10221 * control/fir2sys.m: Ditto. | |
10222 * control/frdemo.m: Ditto. | |
10223 * control/freqchkw.m: Ditto. | |
10224 * control/freqresp.m: Ditto. | |
10225 * control/gram.m: Ditto. | |
10226 * control/h2norm.m: Ditto. | |
10227 * control/h2syn.m: Ditto. | |
10228 * control/hinf_ctr.m: Ditto. | |
10229 * control/hinfdemo.m: Ditto. | |
10230 * control/hinfnorm.m: Ditto. | |
10231 * control/hinfsyn.m: Ditto. | |
10232 * control/hinfsyn_chk.m: Ditto. | |
10233 * control/impulse.m: Ditto. | |
10234 * control/is_abcd.m: Ditto. | |
10235 * control/is_controllable.m: Ditto. | |
10236 * control/is_detectable.m: Ditto. | |
10237 * control/is_dgkf.m: Ditto. | |
10238 * control/is_digital.m: Ditto. | |
10239 * control/is_observable.m: Ditto. | |
10240 * control/is_sample.m: Ditto. | |
10241 * control/is_signal_list.m: Ditto. | |
10242 * control/is_siso.m: Ditto. | |
10243 * control/is_stabilizable.m: Ditto. | |
10244 * control/is_stable.m: Ditto. | |
10245 * control/jet707.m: Ditto. | |
10246 * control/lqe.m: Ditto. | |
10247 * control/lqg.m: Ditto. | |
10248 * control/lqr.m: Ditto. | |
10249 * control/lsim.m: Ditto. | |
10250 * control/ltifr.m: Ditto. | |
10251 * control/lyap.m: Ditto. | |
10252 * control/moddemo.m: Ditto. | |
10253 * control/nyquist.m: Ditto. | |
10254 * control/obsv.m: Ditto. | |
10255 * control/ord2.m: Ditto. | |
10256 * control/outlist.m: Ditto. | |
10257 * control/pinv.m: Ditto. | |
10258 * control/place.m: Ditto. | |
10259 * control/polyout.m: Ditto. | |
10260 * control/prompt.m: Ditto. | |
10261 * control/pzmap.m: Ditto. | |
10262 * control/qzval.m: Ditto. | |
10263 * control/rldemo.m: Ditto. | |
10264 * control/rlocus.m: Ditto. | |
10265 * control/sortcom.m: Ditto. | |
10266 * control/ss2sys.m: Ditto. | |
10267 * control/ss2tf.m: Ditto. | |
10268 * control/ss2zp.m: Ditto. | |
10269 * control/starp.m: Ditto. | |
10270 * control/step.m: Ditto. | |
10271 * control/stepimp.m: Ditto. | |
10272 * control/susball.m: Ditto. | |
10273 * control/sys2fir.m: Ditto. | |
10274 * control/sys2ss.m: Ditto. | |
10275 * control/sys2tf.m: Ditto. | |
10276 * control/sys2zp.m: Ditto. | |
10277 * control/sysadd.m: Ditto. | |
10278 * control/sysappend.m: Ditto. | |
10279 * control/syschnames.m: Ditto. | |
10280 * control/syschnamesl.m: Ditto. | |
10281 * control/syschtsam.m: Ditto. | |
10282 * control/sysconnect.m: Ditto. | |
10283 * control/syscont.m: Ditto. | |
10284 * control/syscont_disc.m: Ditto. | |
10285 * control/sysdefioname.m: Ditto. | |
10286 * control/sysdefstname.m: Ditto. | |
10287 * control/sysdimensions.m: Ditto. | |
10288 * control/sysdisc.m: Ditto. | |
10289 * control/sysdup.m: Ditto. | |
10290 * control/sysgetsignals.m: Ditto. | |
10291 * control/sysgettype.m: Ditto. | |
10292 * control/sysgroup.m: Ditto. | |
10293 * control/sysgroupn.m: Ditto. | |
10294 * control/sysmult.m: Ditto. | |
10295 * control/sysout.m: Ditto. | |
10296 * control/sysprune.m: Ditto. | |
10297 * control/sysreorder.m: Ditto. | |
10298 * control/sysrepdemo.m: Ditto. | |
10299 * control/sysscale.m: Ditto. | |
10300 * control/syssetsignals.m: Ditto. | |
10301 * control/syssub.m: Ditto. | |
10302 * control/sysupdate.m: Ditto. | |
10303 * control/tf2ss.m: Ditto. | |
10304 * control/tf2sys.m: Ditto. | |
10305 * control/tf2sysl.m: Ditto. | |
10306 * control/tf2zp.m: Ditto. | |
10307 * control/tfout.m: Ditto. | |
10308 * control/tzero.m: Ditto. | |
10309 * control/tzero2.m: Ditto. | |
10310 * control/ugain.m: Ditto. | |
10311 * control/wgt1o.m: Ditto. | |
10312 * control/zgfmul.m: Ditto. | |
10313 * control/zgfslv.m: Ditto. | |
10314 * control/zginit.m: Ditto. | |
10315 * control/zgpbal.m: Ditto. | |
10316 * control/zgreduce.m: Ditto. | |
10317 * control/zgrownorm.m: Ditto. | |
10318 * control/zgscal.m: Ditto. | |
10319 * control/zgsgiv.m: Ditto. | |
10320 * control/zgshsr.m: Ditto. | |
10321 * control/zp2ss.m: Ditto. | |
10322 * control/zp2ssg2.m: Ditto. | |
10323 * control/zp2sys.m: Ditto. | |
10324 * control/zp2tf.m: Ditto. | |
10325 * control/zpout.m: Ditto. | |
10326 | |
5095 | 10327 1999-11-02 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3332 | 10328 |
5378 | 10329 * audio/lin2mu.m: Texinfoize doc string. |
10330 * audio/loadaudio.m: Ditto. | |
10331 * audio/mu2lin.m: Ditto. | |
10332 * audio/playaudio.m: Ditto. | |
10333 * audio/record.m: Ditto. | |
10334 * audio/saveaudio.m: Ditto. | |
3332 | 10335 |
5095 | 10336 1999-10-26 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321 | 10337 |
10338 * elfun/acot.m: Texinfoize doc string. | |
10339 * elfun/acsc.m: Ditto. | |
10340 * elfun/acsch.m: Ditto. | |
10341 * elfun/asec.m: Ditto. | |
10342 * elfun/asech.m: Ditto. | |
10343 * elfun/cot.m: Ditto. | |
10344 * elfun/coth.m: Ditto. | |
10345 * elfun/csc.m: Ditto. | |
10346 * elfun/csch.m: Ditto. | |
10347 * elfun/gcd.m: Ditto. | |
10348 * elfun/lcm.m: Ditto. | |
10349 * elfun/sec.m: Ditto. | |
10350 * elfun/sech.m: Ditto. | |
10351 * general/nextpow2.m: Ditto. | |
10352 * general/rem.m: Ditto. | |
10353 * linear-algebra/commutation_matrix.m: Ditto. | |
10354 * linear-algebra/cross.m: Ditto. | |
10355 * linear-algebra/duplication_matrix.m: Ditto. | |
10356 * miscellaneous/bincoeff.m: Ditto. | |
10357 * miscellaneous/xor.m: Ditto. | |
10358 * specfun/bessel.m: Ditto. | |
10359 * specfun/beta.m: Ditto. | |
10360 * specfun/betai.m: Ditto. | |
10361 * specfun/erfinv.m: Ditto. | |
10362 * specfun/gammai.m: Ditto. | |
10363 * specfun/log2.m: Ditto. | |
10364 * specfun/pow2.m: Ditto. | |
10365 | |
5095 | 10366 1999-10-23 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321 | 10367 |
10368 * general/is_scalar.m: Texinfoize help text. | |
10369 * general/is_square.m: Ditto. | |
10370 * general/is_symmetric.m: Ditto. | |
10371 | |
3320 | 10372 1999-10-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
10373 | |
10374 * strings/split.m: If the string to be split is empty, just return | |
10375 an empty string. | |
10376 | |
3319 | 10377 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
10378 | |
10379 * Makefile.in (ALL_M_FILES): New macro. | |
10380 (DOCSTRINGS): No longer .PHONY; depend on $(ALL_M_FILES). | |
10381 | |
3306 | 10382 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
10383 | |
10384 * control/bode.m: Don't return anything if nargout == 0. | |
10385 | |
10386 1999-10-20 James B. Rawlings <jbraw@bevo.che.wisc.edu> | |
10387 | |
10388 * control/bode.m: Don't do axis scaling for magnitude plots. | |
10389 | |
3305 | 10390 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
10391 | |
10392 * Makefile.in (DISTFILES): Add move-if-change, mkdoc, and | |
10393 gethelp.cc to the list. | |
10394 | |
3296 | 10395 1999-10-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
10396 | |
3301 | 10397 * time/asctime.m: Texinfoize help text. |
10398 * time/clock.m: Ditto. | |
10399 * time/date.m: Ditto. | |
10400 * miscellaneous/cputime.m: Ditto. | |
10401 * miscellaneous/etime.m: Ditto. | |
10402 * miscellaneous/is_leap_year.m: Ditto. | |
10403 * miscellaneous/popen2.m: Ditto. | |
10404 * miscellaneous/version.m: Ditto. | |
10405 * miscellaneous/tic.m: Ditto. | |
10406 * miscellaneous/toc.m: Just refer to tic.m. | |
10407 | |
3297 | 10408 * Makefile.in (dist, bin-dist): Use `$(MAKE) -C dir' instead of |
10409 `cd dir; $(MAKE); cd ..'. | |
10410 ($(SUBDIRS)): Likewise. | |
10411 | |
10412 * statistics/Makefile.in ($(SUBDIRS)): Likewise. | |
10413 | |
10414 * statistics/Makefile.in (bin-dist): Use `$(MAKE) -C dir' instead | |
10415 of `cd dir; $(MAKE)'. | |
10416 | |
3296 | 10417 * gethelp.cc, mkdoc: New files. |
10418 * Makefile.in: Use them to create DOCSTRINGS file from .m file | |
10419 sources. | |
10420 | |
3291 | 10421 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
10422 | |
10423 * linear-algebra/kron.m: Fix typo in previous change | |
10424 | |
3282 | 10425 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
10426 | |
10427 * control/bode.m: Allow optional 5th arg to specify plot style. | |
10428 | |
5095 | 10429 Wed Sep 22 22:12:03 1999 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3273 | 10430 |
10431 * linear-algebra/krylov.m: Correctly handle case of V having full | |
10432 rank when V has more columns than rows. | |
10433 | |
10434 Mon Sep 20 23:04:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10435 | |
10436 * general/linspace.m, linear-algebra/pinv.m: Delete. | |
10437 | |
10438 * statistics/tests/manova.m: Avoid problems if | |
10439 whitespace_in_literal_matrix is set to "traditional". | |
10440 * statistics/tests/t_test_regression.m: Likewise. | |
10441 * statistics/tests/u_test.m: Likewise. | |
10442 * statistics/tests/chisquare_test_homogeneity.m: Likewise. | |
10443 * statistics/tests/anova.m: Likewise. | |
10444 * statistics/tests/kruskal_wallis_test.m: Likewise. | |
10445 * statistics/base/statistics.m: Likewise. | |
10446 * image/saveimage.m: Likewise. | |
10447 * signal/arch_fit.m: Likewise. | |
10448 * signal/autoreg_matrix.m: Likewise. | |
10449 * signal/triangle_lw.m: Likewise. | |
10450 * strings/dec2hex.m: Likewise. | |
10451 | |
3268 | 10452 Thu Sep 9 19:31:58 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10453 | |
10454 * image/saveimage.m: Initialize scale. | |
10455 | |
10456 Sun Sep 5 22:13:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10457 | |
10458 * general/reshape.m: Allow reshape (a, size (b)). | |
10459 | |
3266 | 10460 Fri Sep 3 00:01:38 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10461 | |
10462 * specfun/erfinv.m: Improve stopping criterion. | |
10463 Add iteration count as second return value. | |
10464 | |
3265 | 10465 Mon Aug 30 12:07:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10466 | |
10467 * statistics/base/mean.m: Use .', not ' to reorient row vectors. | |
10468 | |
3263 | 10469 Tue Aug 17 11:11:27 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10470 | |
10471 * miscellaneous/pack.m: New function. | |
10472 | |
10473 Mon Aug 16 07:46:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10474 | |
10475 * plot/figure.m: Always return figure number. With no args, | |
10476 figure now creates a new figure window and returns its number. | |
10477 Accept figure (property, value) syntax, but do nothing. | |
10478 | |
5095 | 10479 Thu Aug 12 09:28:01 PDT 1999 Tom Poage <tfpoage@ucdavis.edu> |
3263 | 10480 |
10481 * general/shift.m: Avoid printing temporary value for backward shift. | |
10482 | |
3260 | 10483 Mon Aug 2 16:39:04 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10484 | |
10485 * plot/bar.m: Compute bar widths correctly when x-values are not | |
10486 evenly spaced. | |
10487 | |
3250 | 10488 Mon Jul 12 22:48:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10489 | |
10490 * linear-algebra/cond.m: Avoid returning NaN for matrices that | |
10491 contain only zeros. | |
10492 | |
5095 | 10493 Sun Jun 20 22:24:27 1999 Eduardo Gallestey <eduardo@faceng.anu.edu.au> |
3250 | 10494 |
10495 * linear-algebra/kron.m: Create result matrix and insert blocks | |
10496 instead of appending them. | |
10497 | |
10498 Sat Jun 19 01:52:18 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10499 | |
10500 * control/bodquist.m, control/buildssic.m, control/is_digital.m, | |
10501 control/stepimp.m, control/sysmin.m, control/syssetsignals.m: | |
10502 Update from A. S. Hodel. | |
10503 | |
3246 | 10504 Fri Jun 18 12:19:22 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10505 | |
10506 * polynomial/polyfit.m: Correct previous change. | |
10507 | |
3243 | 10508 Wed Apr 7 13:57:26 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10509 | |
10510 * linear-algebra/qrhouse.m, linear-algebra/krygetq.m: Delete. | |
10511 | |
5095 | 10512 Wed Apr 7 13:22:43 1999 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
3240 | 10513 |
10514 * control/is_controllable.m, control/zgscal.m: Accomodate new | |
10515 version of krylov and krylovb. | |
10516 | |
10517 * control/outlist.m, control/sysout.m: Fix typos. | |
10518 | |
10519 * control/sysdimensions.m: Add option for total number of states. | |
10520 | |
10521 * linear-algebra/krylov.m: Improve robustness by row-pivoting. | |
10522 * linear-algebra/krylovb.m: Just call krylov with appropriate | |
10523 arguments. | |
10524 | |
10525 Tue Mar 30 00:43:09 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10526 | |
10527 * strings/index.m: Fail with meaningful error message if either | |
10528 arg is a string array. | |
10529 | |
3238 | 10530 Wed Mar 24 20:34:48 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10531 | |
10532 * linear-algebra/norm.m: Do the right thing for 1- and | |
10533 infinity-norms of complex matrices. From Sven Khatri | |
10534 <khatri@saturn.vocalpoint.com>. | |
10535 | |
5095 | 10536 Tue Mar 16 13:36:36 1999 A. Scottedward Hodel" <scotte@eng.auburn.edu> |
3238 | 10537 |
10538 * linear-algebra/qrhouse.m: Handle default args correctly. | |
10539 | |
10540 Thu Mar 11 12:52:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10541 | |
10542 * strings/split.m: Avoid problems when splitting strings that have | |
10543 \ in them. | |
10544 | |
5095 | 10545 Thu Mar 11 12:36:13 1999 Massimo Lorenzin <maxlorenzin@tin.it> |
3238 | 10546 |
10547 * image/colormap.m: Do better arg checking, handle string args | |
10548 that name the colormap function to call (e.g., colormap ("ocean")). | |
10549 | |
5095 | 10550 Mon Mar 8 22:23:24 1999 Rolf Fabian <fabian@TU-Cottbus.De> |
3238 | 10551 |
10552 * polynomial/polyfit.m: Use .' transpose operator, not '. | |
10553 * linear-algebra/dot.m: Likewise. | |
10554 * linear-algebra/cross.m: Likewise. | |
10555 * general/rot90.m: Likewise. | |
10556 | |
5095 | 10557 Sat Mar 6 01:45:00 1999 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3238 | 10558 |
10559 * linear-algebra/qrhouse.m: Permute columns at each iteration so | |
10560 that the leading column is not all zeros. | |
10561 | |
10562 Fri Mar 5 00:37:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10563 | |
10564 * general/shift.m: Fix potential problems with | |
10565 whitespace_in_literal_matrix. | |
10566 * signal/arch_rnd.m: Ditto. | |
10567 * signal/autocov.m: Ditto. | |
10568 * signal/diffpara.m: Ditto. | |
10569 * signal/hurst.m: Ditto. | |
10570 * signal/periodogram.m: Ditto. | |
10571 * signal/spectral_adf.m: Ditto. | |
10572 * signal/spectral_xdf.m: Ditto. | |
10573 * signal/spencer.m: Ditto. | |
10574 * signal/synthesis.m: Ditto. | |
10575 * statistics/distributions/wiener_rnd.m: Ditto. | |
10576 * statistics/models/logistic_regression_likelihood.m: Ditto. | |
10577 * statistics/models/logistic_regression.m: Ditto. | |
10578 * statistics/models/logistic_regression_derivatives.m: Ditto. | |
10579 * statistics/tests/run_test.m: Ditto. | |
10580 * statistics/tests/chisquare_test_independence.m: Ditto. | |
10581 | |
5095 | 10582 Wed Mar 3 02:25:00 1999 Joao Cardoso <jcardoso@inescn.pt> |
3238 | 10583 |
10584 * plot/__plr2__.m: Fix typo. | |
10585 | |
3233 | 10586 Tue Jan 12 10:31:15 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
10587 | |
10588 * plot/__pltopt1__.m: Accept "k" to mean black. | |
10589 | |
5095 | 10590 Fri Dec 11 10:43:19 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233 | 10591 |
10592 * linear-algebra/krylov.m: Force empty_list_elements_ok for this | |
10593 function. | |
10594 | |
5095 | 10595 Thu Dec 10 11:07:00 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233 | 10596 |
10597 * control/ss2sys.m: Fix typo. | |
10598 | |
10599 Wed Dec 9 12:42:19 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10600 | |
10601 * plot/subplot.m, plot/oneplot.m: Don't call clearplot. | |
10602 | |
10603 * control: Update from A. S. Hodel <a.s.hodel@eng.auburn.edu> for | |
10604 signal names as lists of strings instead of string arrays. | |
10605 | |
3225 | 10606 Fri Dec 4 16:08:42 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10607 | |
3233 | 10608 * quaternion: New directory of functions from A. S. Hodel |
3225 | 10609 <a.s.hodel@eng.auburn.edu>. |
10610 * Makefile.in (SUBDIRS): Add it to the list. | |
3226 | 10611 * quaternion/Makefile.in: New file. |
10612 * configure.in (AC_OUTPUT): Add quaternion/Makefile. | |
3225 | 10613 |
10614 Tue Nov 24 21:41:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10615 | |
10616 * image/saveimage.m: Make it work again for black and white colormaps. | |
10617 | |
10618 * image/imagesc.m: Use rows (colormap), not length (colormap), | |
10619 since there can be fewer rows than columns. Round values to | |
10620 nearest position in colormap instead of truncating. Correct usage | |
10621 message. | |
10622 | |
5095 | 10623 Tue Nov 24 14:50:52 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3225 | 10624 |
10625 * linear-algebra/krylov.m: New arg pflg. If nonzero, avoid using | |
10626 zero rows of [A,v] as householder pivots; this avoids spurious | |
10627 non-zero entries in returned orthogonal matrix U, but destroys the | |
10628 Householder matrix structure of H. | |
10629 | |
10630 Fri Nov 20 12:46:46 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10631 | |
10632 * general/logical.m: Just copy input to output if argument is | |
10633 already a logical object. | |
10634 | |
3215 | 10635 Fri Nov 6 10:17:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10636 | |
10637 * New files from OCST, in control subdiretory: | |
10638 | |
10639 DEMOcontrol.m is_siso.m syschnames.m | |
10640 abcddim.m is_stabilizable.m syschnamesl.m | |
10641 abcddims.m is_stable.m syschtsam.m | |
10642 analdemo.m jet707.m sysconnect.m | |
10643 are.m lqe.m syscont.m | |
10644 axis2dlim.m lqg.m syscont_disc.m | |
10645 bddemo.m lqr.m sysdefioname.m | |
10646 bode.m lsim.m sysdefstname.m | |
10647 bode_bounds.m ltifr.m sysdimensions.m | |
10648 bodquist.m lyap.m sysdisc.m | |
10649 buildssic.m mb.m sysdup.m | |
10650 c2d.m minfo.m sysgetsignals.m | |
6302 | 10651 com2str.m moddemo.m sysgettsam.m |
3215 | 10652 controldemo.m nichols.m sysgettype.m |
10653 ctrb.m nyquist.m sysgroup.m | |
10654 d2c.m obsv.m sysgroupn.m | |
10655 damp.m ord2.m sysmult.m | |
10656 dare.m outlist.m sysout.m | |
10657 dcgain.m packedform.m sysprune.m | |
10658 demomarsyas.m packsys.m sysreorder.m | |
10659 dezero.m; parallel.m sysrepdemo.m | |
10660 dgkfdemo.m place.m sysscale.m | |
10661 dgram.m polyout.m syssub.m | |
10662 dhinfdemo.m prompt.m sysupdate.m | |
10663 dlqe.m pzmap.m tf2ss.m | |
10664 dlqg.m qzval.m tf2sys.m | |
10665 dlqr.m rldemo.m tf2sysl.m | |
10666 dlyap.m rlocus.m tf2zp.m | |
10667 dmr2d.m rotg.m tfout.m | |
10668 fir2sys.m run_cmd.m; tzero.m | |
10669 frdemo.m series.m tzero2.m | |
10670 freqchkw.m sortcom.m ugain.m | |
10671 freqresp.m ss2sys.m unpacksys.m | |
10672 gram.m ss2tf.m wgt1o.m | |
10673 h2norm.m ss2zp.m zgfmul.m | |
10674 h2syn.m starp.m zgfslv.m | |
10675 hinf_ctr.m step.m zginit.m | |
10676 hinfdemo.m stepimp.m zgpbal.m | |
10677 hinfnorm.m strappend.m; zgreduce.m | |
10678 hinfsyn.m susball.m zgrownorm.m | |
10679 hinfsyn_chk.m swap.m zgscal.m | |
10680 impulse.m swapcols.m zgsgiv.m | |
10681 is_abcd.m swaprows.m zgshsr.m | |
10682 is_controllable.m sys2fir.m zp2ss.m | |
10683 is_detectable.m sys2ss.m zp2ssg2.m | |
10684 is_dgkf.m sys2tf.m zp2sys.m | |
10685 is_digital.m sys2zp.m zp2tf.m | |
10686 is_observable.m sysadd.m zpout.m | |
10687 is_sample.m sysappend.m | |
10688 | |
10689 Thu Nov 5 13:28:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10690 | |
10691 * configure.in (AC_OUTPUT): Escape newlinew in macro call with \. | |
10692 | |
10693 * strings/deblank.m: Make it work for string arrays too. | |
10694 | |
3211 | 10695 Wed Nov 4 21:51:13 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10696 | |
10697 * linear-algebra/housh.m: New file from the OCST. | |
10698 * linear-algebra/krygetq.m: Ditto. | |
10699 * linear-algebra/krylov.m: Ditto. | |
10700 * linear-algebra/krylovb.m: Ditto. | |
10701 * linear-algebra/qrhouse.m: Ditto. | |
10702 * general/is_duplicate_entry.m: Ditto. | |
10703 | |
10704 * general/is_symmetric.m: Call is_square instead of doing that | |
10705 check in line. | |
10706 | |
3196 | 10707 Wed Oct 28 11:51:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10708 | |
3202 | 10709 * general/is_square.m: |
10710 | |
10711 * general/isempty.m, general/is_matrix.m: Delete. | |
10712 | |
10713 * general/is_symmetric: Delete special case for strings. Whether | |
10714 the conversion is valid should depend on implicit_str_to_num_ok. | |
10715 | |
10716 * general/is_square.m: If arg is not a matrix, don't check size, | |
10717 just return 0. | |
10718 * general/is_symmetric: Likewise. | |
10719 * general/is_vector.m: Likewise. | |
10720 * general/is_scalar.m: Likewise. | |
10721 | |
3196 | 10722 * general/length.m: Delete. |
10723 | |
3191 | 10724 Fri Oct 23 00:21:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10725 | |
10726 * configure.in: Add finance/Makefile, statistics/base/Makefile, | |
10727 statistics/distributions/Makefile, statistics/models/Makefile, | |
10728 and statistics/tests/Makefile to the list of files to create. | |
10729 | |
10730 * finance/Makefile.in, statistics/base/Makefile.in, | |
10731 statistics/distributions/Makefile.in, statistics/models/Makefile.in, | |
10732 statistics/tests/Makefile.in: New files. | |
10733 * statistics/Makefile.in: Delete file lists. Now only handle | |
10734 subdirectories. | |
10735 * Makefile.in (SUBDIRS): Add finance. | |
10736 | |
10737 * Move the following files from statistics to statistics/base: | |
10738 | |
10739 corrcoef.m | |
10740 kurtosis.m | |
10741 mahalanobis.m | |
10742 median.m | |
10743 ols.m | |
10744 skewness.m | |
10745 std.m | |
10746 | |
10747 New files, from Kurt Hornik's octave-ci package: | |
10748 | |
10749 * finance (new directory): | |
10750 | |
10751 fv.m | |
10752 fvl.m | |
10753 irr.m | |
10754 nper.m | |
10755 npv.m | |
10756 pmt.m | |
10757 pv.m | |
10758 pvl.m | |
10759 rate.m | |
10760 vol.m | |
10761 | |
10762 * linear-algebra/dmult.m | |
10763 | |
10764 * signal: | |
10765 | |
10766 arch_fit.m | |
10767 arch_rnd.m | |
10768 arch_test.m | |
10769 arma_rnd.m | |
10770 autocor.m | |
10771 autocov.m | |
10772 autoreg_matrix.m | |
10773 bartlett.m | |
10774 blackman.m | |
10775 diffpara.m | |
10776 durbinlevinson.m | |
10777 fractdiff.m | |
10778 hamming.m | |
10779 hanning.m | |
10780 hurst.m | |
10781 periodogram.m | |
10782 rectangle_lw.m | |
10783 rectangle_sw.m | |
10784 sinetone.m | |
10785 sinewave.m | |
10786 spectral_adf.m | |
10787 spectral_xdf.m | |
10788 spencer.m | |
10789 stft.m | |
10790 synthesis.m | |
10791 triangle_lw.m | |
10792 triangle_sw.m | |
10793 yulewalker.m | |
10794 | |
10795 * statistics/base (new directory): | |
10796 | |
10797 center.m | |
10798 cloglog.m | |
10799 cor.m | |
10800 cov.m | |
10801 cut.m | |
10802 iqr.m | |
10803 kendall.m | |
10804 logit.m | |
10805 mean.m | |
10806 meansq.m | |
10807 moment.m | |
10808 ppplot.m | |
10809 probit.m | |
10810 qqplot.m | |
10811 range.m | |
10812 ranks.m | |
10813 run_count.m | |
10814 spearman.m | |
10815 statistics.m | |
10816 studentize.m | |
10817 table.m | |
10818 values.m | |
10819 var.m | |
10820 | |
10821 (Replaces cov.m and mean.m with new versions.) | |
10822 | |
10823 * statistics/distributions (new directory): | |
10824 | |
10825 beta_cdf.m | |
10826 beta_inv.m | |
10827 beta_pdf.m | |
10828 beta_rnd.m | |
10829 binomial_cdf.m | |
10830 binomial_inv.m | |
10831 binomial_pdf.m | |
10832 binomial_rnd.m | |
10833 cauchy_cdf.m | |
10834 cauchy_inv.m | |
10835 cauchy_pdf.m | |
10836 cauchy_rnd.m | |
10837 chisquare_cdf.m | |
10838 chisquare_inv.m | |
10839 chisquare_pdf.m | |
10840 chisquare_rnd.m | |
10841 discrete_cdf.m | |
10842 discrete_inv.m | |
10843 discrete_pdf.m | |
10844 discrete_rnd.m | |
10845 empirical_cdf.m | |
10846 empirical_inv.m | |
10847 empirical_pdf.m | |
10848 empirical_rnd.m | |
10849 exponential_cdf.m | |
10850 exponential_inv.m | |
10851 exponential_pdf.m | |
10852 exponential_rnd.m | |
10853 f_cdf.m | |
10854 f_inv.m | |
10855 f_pdf.m | |
10856 f_rnd.m | |
10857 gamma_cdf.m | |
10858 gamma_inv.m | |
10859 gamma_pdf.m | |
10860 gamma_rnd.m | |
10861 geometric_cdf.m | |
10862 geometric_inv.m | |
10863 geometric_pdf.m | |
10864 geometric_rnd.m | |
10865 hypergeometric_cdf.m | |
10866 hypergeometric_inv.m | |
10867 hypergeometric_pdf.m | |
10868 hypergeometric_rnd.m | |
10869 kolmogorov_smirnov_cdf.m | |
10870 laplace_cdf.m | |
10871 laplace_inv.m | |
10872 laplace_pdf.m | |
10873 laplace_rnd.m | |
10874 logistic_cdf.m | |
10875 logistic_inv.m | |
10876 logistic_pdf.m | |
10877 logistic_rnd.m | |
10878 lognormal_cdf.m | |
10879 lognormal_inv.m | |
10880 lognormal_pdf.m | |
10881 lognormal_rnd.m | |
10882 normal_cdf.m | |
10883 normal_inv.m | |
10884 normal_pdf.m | |
10885 normal_rnd.m | |
10886 pascal_cdf.m | |
10887 pascal_inv.m | |
10888 pascal_pdf.m | |
10889 pascal_rnd.m | |
10890 poisson_cdf.m | |
10891 poisson_inv.m | |
10892 poisson_pdf.m | |
10893 poisson_rnd.m | |
10894 stdnormal_cdf.m | |
10895 stdnormal_inv.m | |
10896 stdnormal_pdf.m | |
10897 stdnormal_rnd.m | |
10898 t_cdf.m | |
10899 t_inv.m | |
10900 t_pdf.m | |
10901 t_rnd.m | |
10902 uniform_cdf.m | |
10903 uniform_inv.m | |
10904 uniform_pdf.m | |
10905 uniform_rnd.m | |
10906 weibull_cdf.m | |
10907 weibull_inv.m | |
10908 weibull_pdf.m | |
10909 weibull_rnd.m | |
10910 wiener_rnd.m | |
10911 | |
10912 * statistics/models (new directory): | |
10913 | |
10914 logistic_regression.m | |
10915 logistic_regression_derivatives.m | |
10916 logistic_regression_likelihood.m | |
10917 | |
10918 * statistics/tests (new directory): | |
10919 | |
10920 anova.m | |
10921 bartlett_test.m | |
10922 chisquare_test_homogeneity.m | |
10923 chisquare_test_independence.m | |
10924 cor_test.m | |
10925 f_test_regression.m | |
10926 hotelling_test.m | |
10927 hotelling_test_2.m | |
10928 kolmogorov_smirnov_test.m | |
10929 kolmogorov_smirnov_test_2.m | |
10930 kruskal_wallis_test.m | |
10931 manova.m | |
10932 mcnemar_test.m | |
10933 prop_test_2.m | |
10934 run_test.m | |
10935 sign_test.m | |
10936 t_test.m | |
10937 t_test_2.m | |
10938 t_test_regression.m | |
10939 u_test.m | |
10940 var_test.m | |
10941 welch_test.m | |
10942 wilcoxon_test.m | |
10943 z_test.m | |
10944 z_test_2.m | |
10945 | |
10946 Thu Oct 22 12:25:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10947 | |
10948 * time/date.m: Use %Y, not %y in format string, for Matlab 5 | |
10949 compatibility and to avoid Y2K problems. | |
10950 | |
3190 | 10951 Mon Oct 19 17:26:35 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10952 | |
10953 * polynomial/polyfit.m: Just use the \ operator to handle the | |
10954 least-squares solution. | |
10955 | |
3180 | 10956 Thu Sep 3 12:40:47 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10957 | |
10958 * strings/str2num.m: If eval returns a string, return an empty matrix. | |
10959 | |
10960 * strings/strrep.m: Don't convert args to numeric values. | |
10961 Prevent warnings for empty string args. | |
10962 From Georg Thimm <thimm@idiap.ch>. | |
10963 | |
10964 * strings/strcat.m: Prevent warnings for empty string args. | |
10965 | |
10966 Wed Sep 2 17:20:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10967 | |
10968 * miscellaneous/menu.m: Remove special case for empty string | |
10969 returned from input(). Add second arg to eval() to catch errors. | |
10970 | |
3178 | 10971 Thu Jun 18 16:32:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10972 | |
10973 * plot/__plt__.m: Don't call usleep. | |
10974 | |
3175 | 10975 Mon May 18 11:42:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10976 | |
10977 * linear-algebra/dot.m: New function. | |
10978 | |
10979 * strings/lower.m, strings/upper.m: New functions, for Matlab | |
10980 compatibility. | |
10981 | |
10982 Fri May 15 01:16:53 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10983 | |
10984 * plot/hist.m: Also allow just one output argument. | |
10985 | |
10986 Sun May 10 23:00:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10987 | |
10988 * strings/deblank.m: Make it work if the string is only blanks. | |
10989 | |
10990 Tue May 5 00:53:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10991 | |
10992 * plot/__plt2mv__.m: Delete calls to keyboard. | |
10993 | |
10994 Mon May 4 11:43:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
10995 | |
10996 * plot/oneplot.m: Fix typo. | |
10997 | |
3174 | 10998 Wed Apr 22 12:11:27 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
10999 | |
11000 * miscellaneous/flops.m: Allow a single argument too. | |
11001 | |
11002 Tue Apr 21 10:18:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11003 | |
11004 * strings/str2mat.m: Also handle case when there are no empty | |
11005 strings correctly. | |
11006 | |
11007 Mon Apr 20 22:14:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11008 | |
11009 * strings/isletter.m: New function, for Matlab compatibility. | |
11010 | |
3168 | 11011 Fri Apr 17 10:53:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
11012 | |
11013 * strings/str2mat.m: Handle string matrices too. | |
11014 | |
3167 | 11015 Wed Apr 15 11:16:01 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
11016 | |
11017 * audio/loadaudio.m: Accept "pcm" as another file extension for | |
11018 linear encoding. | |
11019 | |
11020 * audio/saveaudio.m, audio/loadaudio.m, audio/playaudio.m, | |
11021 audio/record.m: Open files in binary mode. | |
11022 | |
3164 | 11023 Fri Apr 10 10:46:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
11024 | |
11025 * miscellaneous/dump_prefs.m: Use string array for list of values. | |
11026 Move functionality of dump_1_pref here, but use built-in function | |
11027 type to extract value, and put it inside try/catch block. | |
11028 * miscellaneous/dump_1_pref.m: Delete unused function. | |
11029 | |
3162 | 11030 Wed Apr 8 13:17:58 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
11031 | |
11032 * plot/__pltopt1.m__: New file. | |
11033 * plot/__pltopt.m__: Handle opt as a string array by calling | |
11034 __pltopt1__ multiple times and returning a string array with rows | |
11035 corresponding to the rows of opt. | |
11036 * plot/__plt2ss__.m, plot/__plt2vv__.m, plot/__plt2vm__.m, | |
11037 plot/__plt2mv__.m, plot/__plt2mm__.m: Handle fmt as a string | |
11038 array. | |
11039 | |
11040 Fri Mar 27 03:00:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11041 | |
11042 * plot/mplot.m: Fix misspellings of global variables. | |
11043 Don't call clearplot. | |
11044 | |
11045 Tue Mar 17 17:45:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11046 | |
11047 * plot/subplot.m, plot/multiplot.m: Set gnuplot_command_replot to | |
11048 "cle;rep" when going in ot multiplot mode. | |
11049 * plot/oneplot.m: Reset gnuplot_command_replot to "rep" when | |
11050 switching out of multiplot mode. | |
11051 | |
3156 | 11052 Fri Feb 20 01:31:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
3148 | 11053 |
3156 | 11054 * plot/mplot.m, plot/subplot.m, plot/oneplot.m, plot/multiplot.m, |
11055 plot/subwindow.m: Call clearplot after setting up multiplot mode. | |
3148 | 11056 |
3141 | 11057 Tue Feb 3 00:18:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
11058 | |
11059 * special-matrix/sylvester_matrix.m: Rename from hadamard.m | |
11060 | |
11061 * miscellaneous/bug_report.m: Don't try to get smart with | |
11062 OCTAVE_HOME. Assume octave-bug can be found in EXEC_PATH. | |
11063 | |
11064 * Makefile.in (install): Create separate ls-R files for | |
11065 $(datadir) and $(libexecdir). | |
11066 (uninstall): Remove both ls-R files. | |
11067 | |
3136 | 11068 Sat Jan 31 01:09:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
11069 | |
11070 * signal/fftshift.m: New file. | |
11071 | |
11072 * plot/contour.m: Fix for non-square case. | |
11073 | |
11074 * general/randperm.m: New file. | |
11075 | |
11076 Fri Jan 30 15:20:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11077 | |
11078 * specfun/betai.m: Restore file for compatibility with previous | |
11079 versions. Call betainc with reordered args. | |
11080 * specfun/gammai.m: Likewise, call gammainc with reordered args. | |
11081 | |
3131 | 11082 Wed Jan 28 22:44:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
11083 | |
11084 * plot/contour.m: Handle discrete contour levels. | |
11085 | |
11086 Tue Jan 27 04:31:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11087 | |
11088 * control/lyap.m: For compatibility with Matlab, solve | |
11089 A*X + X*A' + C = 0 instead of A'*X + X*A + C = 0. | |
11090 | |
3124 | 11091 Wed Dec 10 00:14:29 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11092 | |
11093 * specfun/bessel.m: New file. | |
11094 | |
11095 * specfun/betai.m, specfun/betainc.m, specfun/gammai.m, | |
11096 specfun/gammainc.m: Delete. | |
11097 | |
3106 | 11098 Wed Nov 19 00:19:18 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11099 | |
11100 * image/colormap.m: Initialize __current_color_map__ in global | |
11101 statement. | |
11102 * miscellaneous/toc.m: Initialize __tic_toc_timestamp__ in global | |
11103 statement. | |
11104 * plot/axis.m: Initialize __current_axis__ in global statement. | |
11105 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, | |
11106 plot/subwindow.m: Initialize __multiplot_mode__ in global statement. | |
11107 | |
3103 | 11108 Tue Nov 18 01:35:50 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11109 | |
11110 * time/tic.m: Rename _time_tic_called to __tic_toc_timestamp__. | |
11111 * time/toc.m: Likewise. | |
11112 | |
11113 * image/colormap.m: Rename CURRENT_COLOR_MAP to __current_color_map__. | |
11114 | |
11115 * plot/mplot.m, plot/multiplot.m, plot/subplot.m: Don't do | |
11116 anything special for automatic_replot when in multiplot mode -- | |
11117 recent 3.6beta releases handle this correctly. | |
11118 | |
11119 * plot/figure.m: Ensure that we are not in multiplot mode before | |
11120 setting the terminal type. | |
11121 | |
11122 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, | |
11123 plot/subwindow.m: Use leading and trailing underscores for | |
11124 `private' globals. | |
11125 | |
11126 * plot/oneplot.m: Don't do anything if gnuplot_has_multiplot is false. | |
11127 | |
3101 | 11128 Fri Nov 14 10:53:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11129 | |
11130 * plot/__pltopt__.m: Use sprintf instead of strcat when adding TITLE. | |
11131 | |
3091 | 11132 Fri Oct 10 11:18:10 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11133 | |
3092 | 11134 * specfun/gammai.m: Avoid problems with whitespace when |
11135 constructing matrices. | |
11136 | |
3091 | 11137 * polynomial/polyfit.m: Compute yf correctly. From Seung Lee |
11138 <SJL@nrc.gov>. Also return yf in the same orientation as the | |
11139 original y vector. | |
11140 | |
3085 | 11141 Fri Sep 19 17:04:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11142 | |
11143 * linear-algebra/cross.m: Use direct formula instead of calling | |
11144 det three times in a loop. If both args are column (row) vectors, | |
11145 return a column (row) vector. If they don't match, pay attention | |
11146 to the value of prefer_column_vectors. | |
11147 | |
5095 | 11148 Thu Aug 28 15:31:20 1997 Rolf Fabian <fabian@olymp.Umwelt.TU-Cottbus.de> |
3085 | 11149 |
11150 * polynomial/polyvalm.m: Don't assume orthogonal eigenvectors for | |
11151 nonsymmetric matrices. | |
11152 | |
11153 * general/tril.m: Fix usage message. | |
11154 | |
11155 * polynomial/polyvalm.m: Fix error messages. | |
11156 * polynomial/polyderiv.m: Likewise. | |
11157 * polynomial/polyval.m: Likewise. | |
11158 | |
3081 | 11159 Wed Aug 13 14:14:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11160 | |
11161 * strings/blanks.m: Allow blanks(0) to return empty string. | |
11162 Allow negative arguments if treat_neg_dim_as_zero is true. | |
11163 | |
3063 | 11164 Wed Jun 25 21:26:24 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11165 | |
11166 * plot/mesh.m: Set noparametric plot mode after plotting. | |
11167 | |
5095 | 11168 Wed Jun 25 21:06:10 1997 Rick Niles <niles@axp745.gsfc.nasa.gov> |
3062 | 11169 |
11170 * plot/__pltopt__.m: Handle key/legend names. | |
11171 Correctly set colors, line styles, and point styles. | |
11172 | |
3061 | 11173 Wed Jun 25 13:34:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11174 | |
11175 * polynomial/polyfit.m: Return fit y values as second output. | |
11176 Don't use QR factorization to solve least squares problem. | |
11177 | |
11178 Wed Jun 18 10:24:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11179 | |
11180 * control/dlqr.m: Use ao, not a, to compute k. | |
11181 | |
3024 | 11182 Tue Jun 3 12:16:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11183 | |
11184 * miscellaneous/path.m: New file. | |
11185 | |
2993 | 11186 Wed May 21 11:45:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11187 | |
11188 * miscellaneous/bug_report.m: Pass file id to dump_prefs, not file | |
11189 name. | |
11190 | |
2968 | 11191 Mon May 12 02:04:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11192 | |
11193 * specfun/erfinv.m: Add missing semicolon. | |
11194 | |
2870 | 11195 Wed Apr 2 22:04:03 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11196 | |
11197 * miscellaneous/xor.m: Make type of return value logical. | |
11198 | |
2853 | 11199 Fri Mar 28 16:19:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11200 | |
11201 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for | |
11202 warn_comma_in_global_decl. | |
11203 | |
2831 | 11204 Tue Mar 25 22:00:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11205 | |
11206 * miscellaneous/bug_report.m: Use __OCTAVE_HOME__ to find | |
11207 octave-bug script. | |
11208 | |
2823 | 11209 Mon Mar 24 16:49:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11210 | |
2824 | 11211 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
11212 prefer_zero_one_indexing. | |
11213 | |
2823 | 11214 * general/logical.m: New file. |
11215 | |
2816 | 11216 Sat Mar 15 15:07:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11217 | |
11218 * general/nextpow2.m: Correctly handle new meaning of is_scalar() | |
11219 and is_vector(). | |
11220 | |
5095 | 11221 Thu Mar 13 16:36:35 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
2813 | 11222 |
11223 * specfun/erfinv.m: Scale update by sqrt (pi) / 2. | |
11224 Use tolerance of 2 * eps. | |
11225 | |
2811 | 11226 Wed Mar 12 16:57:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11227 | |
11228 * Makefile.in (install-strip): New target. | |
11229 * audio/Makefile.in: Ditto. | |
11230 * control/Makefile.in: Ditto. | |
11231 * elfun/Makefile.in: Ditto. | |
11232 * general/Makefile.in: Ditto. | |
11233 * image/Makefile.in: Ditto. | |
11234 * io/Makefile.in: Ditto. | |
11235 * linear-algebra/Makefile.in: Ditto. | |
11236 * miscellaneous/Makefile.in: Ditto. | |
11237 * plot/Makefile.in: Ditto. | |
11238 * polynomial/Makefile.in: Ditto. | |
11239 * set/Makefile.in: Ditto. | |
11240 * signal/Makefile.in: Ditto. | |
11241 * specfun/Makefile.in: Ditto. | |
11242 * special-matrix/Makefile.in: Ditto. | |
11243 * startup/Makefile.in: Ditto. | |
11244 * statistics/Makefile.in: Ditto. | |
11245 * strings/Makefile.in: Ditto. | |
11246 | |
2809 | 11247 Tue Mar 11 10:14:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11248 | |
11249 * elfun/coth.m: Write as cosh(x) ./ sinh(x) instead of 1 ./ tanh(x). | |
11250 | |
2798 | 11251 Fri Mar 7 23:06:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11252 | |
11253 * statistics/corrcoef.m: Make it actually work. | |
11254 | |
2795 | 11255 Thu Mar 6 12:36:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11256 | |
2798 | 11257 * statistics/corrcoef.m: Don't fail if single argument is a matrix. |
2795 | 11258 |
2779 | 11259 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775 | 11260 |
11261 * Version 2.0.5 released. | |
11262 | |
2745 | 11263 Wed Feb 26 01:48:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11264 | |
2749 | 11265 * Makefile.in (maintainer-clean): Also remove configure. |
11266 | |
2746 | 11267 * signal/fftconv.m: Check inputs with is_vector(), not is_matrix(). |
11268 | |
2745 | 11269 * general/is_matrix.m: Return zero for empty matrices. |
11270 | |
11271 Tue Feb 25 15:16:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11272 | |
11273 * linear-algebra/vech.m: Size result just once. | |
11274 | |
2726 | 11275 Sun Feb 23 00:15:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11276 | |
11277 * general/is_square.m: Handle empty matrices correctly. | |
11278 * general/is_symmetric.m: Handle empty matrices and strings. | |
11279 | |
2716 | 11280 Sat Feb 22 01:06:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11281 | |
11282 * polynomial/conv.m: Check inputs with is_vector(), not is_matrix(). | |
11283 * polynomial/deconv.m: Likewise. | |
11284 * polynomial/polyderiv.m: Likewise. | |
11285 * polynomial/polyinteg.m: Likewise. | |
11286 * polynomial/polyreduce.m: Likewise. | |
11287 * polynomial/polyval.m: Likewise. | |
11288 * polynomial/polyvalm.m: Likewise. | |
11289 * general/postpad.m: Likewise. | |
11290 * general/prepad.m: Likewise. | |
11291 | |
11292 * polynomial/compan.m: Check input with is_vector(), not | |
11293 is_matrix(). Handle scalar case. | |
11294 | |
2711 | 11295 Fri Feb 21 13:36:58 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11296 | |
2715 | 11297 * plot/contour.m: Order data so that it is consistent with |
11298 meshgrid and mesh. | |
11299 | |
2711 | 11300 * plot/meshdom.m, plot/meshgrid.m: Change help message. |
11301 * plot/sombrero.m: Use meshgrid, not meshdom. | |
11302 | |
2709 | 11303 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702 | 11304 |
11305 * Version 2.0.4 released. | |
11306 | |
2706 | 11307 Wed Feb 19 10:30:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11308 | |
2702 | 11309 * miscellaneous/paren.m: New file. |
11310 | |
2693 | 11311 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690 | 11312 |
11313 * Version 2.0.3 released. | |
11314 | |
2676 | 11315 Thu Feb 13 19:06:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11316 | |
11317 * image/saveimage.m: Only clip image data that is actually out of | |
11318 range. | |
11319 | |
2667 | 11320 Sun Feb 9 19:52:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11321 | |
11322 * general/is_matrix.m: Scalars, vectors, and empty matrices may | |
11323 also be considered to be matrices. | |
11324 | |
11325 * general/is_vector.m: Scalars may also be considered to be vectors. | |
11326 | |
11327 * general/isempty.m: Use size(), not rows() and columns(). | |
11328 | |
11329 * plot/contour.m: Convert set to gset. | |
11330 Set view to 0, 0, 1, 1, not 0, 0, 1.9, 1. | |
11331 | |
2663 | 11332 Fri Feb 7 12:55:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11333 | |
11334 * specfun/erfinv.m: Fix typo in last change. | |
11335 | |
2650 | 11336 Fri Jan 31 09:30:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11337 | |
11338 * image/loadimage.m: Make it possible to load files with image | |
11339 data named X or img. | |
11340 | |
11341 * image/default.img: Change name of image from X to img to match | |
11342 what saveimage does now. | |
11343 | |
11344 * image/loadimage.m: Rename X to be img, to match what saveimage | |
11345 does now. | |
11346 | |
2632 | 11347 Mon Jan 27 13:48:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11348 | |
2634 | 11349 * Version 2.0.2 released. |
11350 | |
2632 | 11351 * plot/__plt__.m: Use usleep() instead of replot to try to avoid |
11352 weird missing-lines bug without creating extra plots unecessarily. | |
11353 | |
2624 | 11354 Sat Jan 25 22:37:07 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11355 | |
11356 * Makefile.in, audio/Makefile.in, control/Makefile.in, | |
11357 elfun/Makefile.in, general/Makefile.in, image/Makefile.in, | |
11358 io/Makefile.in, linear-algebra/Makefile.in, | |
11359 miscellaneous/Makefile.in, plot/Makefile.in, | |
11360 polynomial/Makefile.in, set/Makefile.in, signal/Makefile.in, | |
11361 specfun/Makefile.in, special-matrix/Makefile.in, | |
11362 startup/Makefile.in, statistics/Makefile.in, strings/Makefile.in, | |
11363 time/Makefile.in (bin-dist): New target. | |
11364 | |
2621 | 11365 Wed Jan 22 11:28:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11366 | |
11367 * specfun/erfinv.m: Avoid A([]) = X, X != [] error. | |
11368 | |
11369 Tue Jan 21 11:16:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11370 | |
11371 * miscellaneous/xor.m: Make it work. | |
11372 | |
2613 | 11373 Mon Jan 20 12:28:34 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11374 | |
11375 * plot/sombrero.m: Doc fix. | |
11376 | |
2602 | 11377 Tue Jan 7 00:16:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
11378 | |
11379 * Version 2.0.1 released. | |
11380 | |
2601 | 11381 Thu Dec 19 22:16:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11382 | |
11383 * elfun/lcm.m: Replace missing if statement. | |
11384 | |
11385 * elfun/gcd.m: Report error if no input args. | |
11386 * elfun/lcm.m: Likewise. | |
11387 | |
2597 | 11388 Mon Dec 16 15:23:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11389 | |
11390 * Makefile.in (install): Use ls -LR to create ls-R database. | |
11391 Also list contents of $libexecdir/octave in ls-R database. | |
11392 | |
2583 | 11393 Tue Dec 10 01:43:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11394 | |
11395 * Version 2.0 released. | |
11396 | |
2575 | 11397 Fri Dec 6 15:23:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11398 | |
11399 * Version 1.94. | |
11400 | |
2558 | 11401 Sun Dec 1 20:55:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11402 | |
11403 * strings/str2num.m: New file. | |
11404 | |
2554 | 11405 Wed Nov 20 01:00:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11406 | |
11407 * Version 1.93. | |
11408 | |
2540 | 11409 Tue Nov 19 15:13:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11410 | |
11411 * linear-algebra/commutation_matrix.m, linear-algebra/cross.m, | |
11412 linear-algebra/duplication_matrix.m, linear-algebra/vec.m, | |
11413 linear-algebra/vech.m: New files from Kurt Hornik. | |
11414 | |
11415 * general/nextpow2.m, general/shift.m, general/diff.m, | |
11416 general/common_size.m: New files from Kurt Hornik. | |
11417 | |
11418 * miscellaneous/bincoeff.m, miscellaneous/xor.m: | |
11419 New files from Kurt Hornik. | |
11420 | |
11421 * signal/detrend.m: New file from Kurt Hornik. | |
11422 | |
11423 * specfun/betai.m, specfun/gammai.m, specfun/erfinv.m, | |
11424 specfun/pow2.m, specfun/log2.m: | |
11425 New files and updates from Kurt Hornik. | |
11426 | |
2523 | 11427 Fri Nov 15 18:13:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11428 | |
11429 * plot/__plt__.m: Add explicit replot after last command is | |
11430 issued, to force all lines to be displayed. Hmm. | |
11431 | |
2512 | 11432 Thu Nov 14 00:06:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11433 | |
2520 | 11434 * plot/axis.m, plot/bottom_title.m, plot/contour.m, |
11435 plot/figure.m, plot/grid.m, plot/loglog.m, plot/mesh.m, | |
11436 plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/plot.m, | |
11437 plot/plot_border.m, plot/polar.m, plot/semilogx.m, | |
11438 plot/semilogy.m, plot/subplot.m, plot/subwindow.m, plot/title.m, | |
11439 plot/top_title.m, plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: | |
11440 Uset gset, not set. | |
11441 | |
2512 | 11442 * Version 1.92. |
11443 | |
2482 | 11444 Thu Nov 7 12:43:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11445 | |
2486 | 11446 * image/saveimage.m: When writing PostScript, name Octave as the |
11447 almighty Creator. Use single call to fprintf instead of looping. | |
11448 | |
11449 * image/Makefile.in: Delete references to octtopnm. | |
11450 | |
11451 * general/logspace.m: Doc fix. | |
11452 | |
2482 | 11453 * Version 1.91. |
11454 | |
2458 | 11455 Sat Nov 2 21:06:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11456 | |
11457 * image/image.m: Use tmpnam() instead of home-brew scheme. | |
11458 | |
11459 * audio/record.m, audio/playaudio.m: Use tmpnam() instead of | |
11460 octave_tmp_file_name(). Use unwind_protect to ensure tmp file is | |
11461 deleted. | |
11462 * miscellaneous/bug_report.m: Likewise. Also use unlink() instead | |
11463 of a system() command to delete the tmp file. | |
11464 | |
2452 | 11465 Wed Oct 30 17:19:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11466 | |
11467 * Version 1.90. | |
11468 | |
11469 * Makefile.in (DISTFILES): Add ChangeLog. | |
11470 | |
2360 | 11471 Thu Oct 10 17:31:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11472 | |
11473 * plot/subplot.m, plot/multiplot.m, plot/mplot.m: | |
11474 Don't check for string value of automatic_replot. | |
11475 | |
11476 * image/ind2ind.m, image/ind2rgb.m, image/ind2gray.m: | |
11477 Temporarily set do_fortran_indexing to 1, not "true". | |
11478 | |
11479 * miscellaneous/menu.m: Temporarily set page_screen_output to 0, | |
11480 not "false". | |
11481 | |
11482 * linear-algebra/cond.m: Don't compare propagate_empty_matrices to | |
11483 "false". | |
11484 | |
2355 | 11485 Tue Aug 20 18:27:36 1996 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
11486 | |
11487 * strings/substr.m: Allow negative OFFSET. LEN is now optional. | |
11488 | |
2330 | 11489 Mon Jul 15 16:15:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
11490 | |
11491 * miscellaneous/bug_report.m: Don't redirect output to /dev/tty in | |
11492 system command. | |
11493 | |
11494 Fri Jul 12 12:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11495 | |
11496 * __plr1__.m: Renamed from polar_int_1.m. | |
11497 * __plr2__.m: Renamed from polar_int_2.m. | |
11498 * __plr__.m: Renamed from polar_int.m. | |
11499 * __plt1__.m: Renamed from plot_int_1.m. | |
11500 * __plt2__.m: Renamed from plot_int_2.m. | |
11501 * __plt2mm__.m: Renamed from plot_2_m_m_.m. | |
11502 * __plt2mv__.m: Renamed from plot_2_m_v_.m. | |
11503 * __plt2ss__.m: Renamed from plot_2_s_s_.m. | |
11504 * __plt2vm__.m: Renamed from plot_2_v_m_.m. | |
11505 * __plt2vv__.m: Renamed from plot_2_v_v_.m. | |
11506 * __plt__.m: Renamed from plot_int.m. | |
11507 * __pltopt__.m: Renamed from plot_opt.m. | |
11508 Change all callers. | |
11509 | |
11510 Thu Jul 11 17:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11511 | |
11512 * All .m files: Add regular Author:, Created:, and Adapted-By: | |
11513 comments like those found in Emacs lisp files. | |
11514 | |
11515 Mon Jun 24 04:16:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11516 | |
11517 * All .m files: Change comment style. | |
11518 | |
11519 Fri Jun 14 01:42:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11520 | |
11521 * bottom_title.m, mplot.m, multiplot.m, oneplot.m, plot_border.m, | |
11522 subplot.m, subwindow.m, top_title.m: | |
11523 Print error message if gnuplot_has_multiplot is not true. | |
11524 | |
11525 Thu Jun 6 00:18:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11526 | |
11527 * plot/figure.m: New function. | |
11528 | |
11529 Wed Jun 5 18:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11530 | |
11531 * strings/strrep.m: New function. | |
11532 | |
11533 Thu May 23 15:04:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11534 | |
11535 * strings/bin2dec.m, strings/blanks.m, strings/deblank.m, | |
11536 strings/dec2bin.m, strings/dec2hex.m, strings/findstr.m, | |
11537 strings/hex2dec.m, strings/index.m, strings/rindex.m, | |
11538 strings/split.m, strings/str2mat.m, strings/substr.m: | |
11539 New functions from Kurt Hornik, heavily modified by jwe. | |
11540 | |
11541 * general/reshape.m: Allow strings to be reshaped too. | |
11542 | |
11543 * strings/strcmp.m: No longer need to set implicit_str_to_num_ok. | |
11544 Always return a scalar. | |
11545 | |
11546 Wed May 22 19:52:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11547 | |
11548 * polynomial/polyfit.m: Make orientation of result compatible with | |
11549 Matlab. | |
11550 | |
11551 Sat May 18 17:32:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11552 | |
11553 * polynomial/polyfit.m: Add missing close paren. | |
11554 | |
11555 Thu May 16 10:23:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11556 | |
11557 * plot/plot_opt.m: Set compatibility arg in call to sscanf. | |
11558 | |
11559 * io/scanf.m: Delete. | |
11560 | |
11561 Mon May 13 09:37:38 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11562 | |
11563 * statistics/median.m: Fix typo in usage message. | |
11564 | |
11565 Wed Apr 24 02:45:52 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11566 | |
11567 * miscellaneous/popen2.m: New file. | |
11568 | |
11569 Wed Apr 17 18:34:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11570 | |
11571 * configure.in (AC_OUTPUT): Add io/Makefile. | |
11572 | |
11573 * io: New directory. | |
11574 * Makefile.in (SUBDIRS): Add it to the list. | |
11575 | |
11576 * miscellaneous/flops.m: New file. | |
11577 | |
11578 Fri Mar 22 04:40:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11579 | |
11580 * miscellaneous/cputime.m: Return three arguments instead of a | |
11581 vector, for compatibility with previous versions and with Matlab | |
11582 (which only returns one scalar value). | |
11583 | |
11584 Wed Mar 20 05:09:48 1996 Kurt Hornik <Kurt.Hornik@tuwien.ac.at> | |
11585 | |
11586 * general/triu.m: Compute lower bound on loop index correctly. | |
11587 * general/tril.m: Likewise, for upper bound. | |
11588 | |
11589 Tue Feb 6 09:29:43 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11590 | |
11591 * image/saveimage.m: For color images, make sure indices into | |
11592 temporary colormap and result matrix have proper orientation. | |
11593 Set grey flag correctly. | |
11594 | |
11595 Tue Jan 9 00:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11596 | |
11597 * statistics/std.m: Use better formula (from Jim Van Zandt | |
11598 jrv@vanzandt.mv.com). | |
11599 | |
11600 Sun Jan 7 20:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11601 | |
11602 * meshgrid.m: New file (from Jim Van Zandt jrv@vanzandt.mv.com). | |
11603 * mesh.m: Transpose Z if only one arg. | |
11604 Handle case of all three args being matrices (from Jim Van Zandt | |
11605 jrv@vanzandt.mv.com). | |
11606 * meshdom.m: Undo previous change. | |
11607 | |
11608 Wed Dec 20 13:48:12 1995 John W. Eaton <jwe@bevo.che.wisc.edu> | |
11609 | |
11610 * configure.in (AC_OUTPUT): Add audio/Makefile | |
11611 | |
11612 Thu Nov 16 13:07:07 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11613 | |
11614 * audio: New directory of files from Kurt Hornik and Andreas | |
11615 Weingessel. | |
11616 * audio/Makefile.in: New file. | |
11617 * Makefile.in (SUBDIRS): Add audio to the list. | |
11618 | |
11619 Mon Nov 6 07:29:35 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11620 | |
11621 * polynomial/polyfit.m: Use `economy-stle' QR factorization. | |
11622 | |
11623 Fri Nov 3 00:38:46 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11624 | |
11625 * plot/mesh.m: Require, length (y) == rows (z) and length (x) == | |
11626 columns (z), not the other way around. | |
11627 * plot/meshdom.m: Don't reverse order of elements in y. | |
11628 | |
11629 Thu Nov 2 23:56:53 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11630 | |
11631 * plot/axis.m: Return current axis if nargin == 0. | |
11632 | |
11633 Tue Oct 31 04:11:28 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11634 | |
11635 * polynomial/roots.m: Updates from Kurt Hornik. | |
11636 | |
11637 * polynomial/polyder.m: New file. | |
11638 | |
11639 * polynomial/polyderiv.m: Give return value and arg different names. | |
11640 | |
11641 Mon Oct 30 23:27:02 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11642 | |
11643 * specfun/betainc.m: New file. | |
11644 * specfun/gammainc.m: New file. | |
11645 | |
11646 Wed Oct 18 23:45:52 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11647 | |
11648 * general/strerror.m: New file. | |
11649 * general/perror.m: Implement using strerror(). | |
11650 | |
11651 Thu Oct 5 03:21:36 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11652 | |
11653 * plot/bottom_title.m plot/mplot.m plot/multiplot.m plot/oneplot.m | |
11654 plot/plot_border.m plot/subplot.m plot/subwindow.m | |
11655 plot/top_title.m plot/zlabel.m: New files, from Vinayak Dutt. | |
11656 | |
11657 * image/saveimage.m: Round img values first. | |
11658 | |
11659 Tue Oct 3 03:55:18 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11660 | |
11661 * control/abcddim.m control/are.m general/tril.m general/triu.m | |
11662 image/saveimage.m linear-algebra/kron.m linear-algebra/norm.m | |
11663 linear-algebra/null.m miscellaneous/etime.m plot/contour.m | |
11664 plot/mesh.m plot/plot_int.m plot/polar_int.m | |
11665 special-matrix/hankel.m special-matrix/toeplitz.m | |
11666 tuwien/strfun/split.m: Add missing semicolons. | |
11667 | |
11668 * plot/polar_int.m: Use .', not ' to make vectors conform. | |
11669 | |
11670 * image/Makefile.in: Don't build or install octtoppm. | |
11671 | |
11672 * image/saveimage.m: Rewrite to avoid using octoppm and pbm | |
6653 | 11673 routines so that people who don't have the pbm stuff installed |
2330 | 11674 can still use this function. |
11675 | |
11676 Mon Oct 2 05:10:44 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11677 | |
11678 * image/saveimage.m: Better error checking, clean up a bit. | |
11679 | |
11680 Tue Sep 26 00:04:56 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11681 | |
11682 * plot/plot_opt.m: Change more to more_opts as a temporary fix to | |
11683 avoid conflict with new built-in text-style function more. | |
11684 | |
11685 * linear-algebra/norm.m: Also allow 2nd arg == "inf". | |
11686 | |
11687 * startup/Makefile.in (install): Also install octaverc in | |
11688 $localfcnfiledir/startup/octavrc. | |
11689 | |
11690 Wed Sep 20 00:01:30 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11691 | |
11692 * mkinstalldirs: New file. | |
11693 * Makefile.in (DISTFILES): Add it to the list. | |
11694 | |
11695 * Makefile.in (DISTFILES): Distribute configure.in and configure. | |
11696 | |
11697 Thu Sep 14 03:56:19 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11698 | |
11699 * special-matrix/hankel.m: Compatibility fix. Complain if | |
11700 r(1) != c(nr), not if r(1) != c(1). | |
11701 | |
11702 * signal/filter.m: Doc fix. | |
11703 | |
11704 Wed Sep 13 03:19:05 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11705 | |
11706 * miscellaneous/cputime.m: Use new resource structure names (no | |
11707 ru_ or tv_ prefixes). | |
11708 | |
11709 Tue Sep 12 02:20:44 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11710 | |
11711 * time/ctime.m: Fix doc string and usage message. | |
11712 | |
11713 Mon Sep 11 18:43:46 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11714 | |
11715 * time/clock.m: Use new time structure names (no tm_ prefix). | |
11716 | |
11717 Thu Aug 24 20:53:08 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
11718 | |
11719 * control/c2d.m: Make function work for any value of | |
11720 whitespace_in_literal_matrix. | |
11721 * control/dare.m: Likewise. | |
11722 * control/tzero.m: Likewise. | |
11723 * elfun/gcd.m: Likewise. | |
11724 * elfun/lcm.m: Likewise. | |
11725 * general/postpad.m: Likewise. | |
11726 * general/prepad.m: Likewise. | |
11727 * linear-algebra/kron.m: Likewise. | |
11728 * miscellaneous/etime.m: Likewise. | |
11729 * polynomial/conv.m: Likewise. | |
11730 * polynomial/deconv.m: Likewise. | |
11731 * polynomial/poly.m: Likewise. | |
11732 * polynomial/roots.m: Likewise. | |
11733 * signal/filter.m: Likewise. | |
11734 * signal/freqz.m: Likewise. | |
11735 * signal/fftfilt.m: Likewise. | |
11736 | |
11737 Tue Jun 6 22:34:04 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11738 | |
11739 * miscellaneous/is_leap_year.m: Make work for vector args. | |
11740 | |
11741 Tue May 2 16:18:33 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11742 | |
11743 * plot/polar_int_2.m: Add missing semicolons. | |
11744 Set theta = theta', not rho'. | |
11745 | |
11746 Sun Apr 30 11:19:11 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11747 | |
11748 * polynomial/roots.m: Make it work for any value of | |
11749 whitespace_in_literal_matrix. | |
11750 | |
11751 Mon Apr 10 09:37:17 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11752 | |
11753 * configure.in: New file. | |
11754 | |
11755 Thu Mar 30 13:29:35 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11756 | |
11757 * control/lyap.m: Add missing semicolon. | |
11758 | |
11759 * miscellaneous/cputime.m: New function file. | |
11760 | |
11761 Wed Mar 29 22:50:49 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11762 | |
11763 * time: New directory. | |
11764 * time/asctime.m, time/clock.m, time/ctime.m, time/date.m: | |
11765 New function files. | |
11766 * time/Makefile.in: New file. | |
11767 * Makefile.in (SUBDIRS): Add time. | |
11768 | |
11769 Thu Mar 23 15:42:26 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11770 | |
11771 * polynomial/polyreduce.m: Make sure initial index is not empty. | |
11772 | |
11773 Tue Mar 14 23:38:24 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11774 | |
11775 * plot/plot_int_1.m: Transpose data with .', not '. | |
11776 | |
11777 Fri Mar 10 10:40:13 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11778 | |
11779 * Makefile.in (install uninstall clean mostlyclean distclean | |
11780 realclean): Use SUBDIR_FOR_COMMAND. Combine actions. | |
11781 | |
11782 Sun Feb 26 22:18:22 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11783 | |
11784 * Makefile.in (install): Create ls-R database file. | |
11785 (uninstall): Delete it. | |
11786 | |
11787 Fri Feb 24 10:36:01 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
11788 | |
5378 | 11789 * image/saveimage.m: Fix typo. |
2330 | 11790 |
11791 See ChangeLog.1 in the top level directory for earlier changes. |