5821
|
1 2006-05-17 John W. Eaton <jwe@octave.org> |
|
2 |
|
3 * set/intersection.m: Delete |
|
4 * deprecated/intersection.m: New file. |
|
5 |
5820
|
6 2006-05-17 David Bateman <dbateman@free.fr> |
|
7 |
|
8 * general/cplxpair.m, general/trapz.m, general/cumtrapz.m, |
|
9 general/isdir.m, miscellaneous/dos.m, miscellaneous/getfield.m, |
|
10 miscellaneous/setfield.m, plot/fplot.m, set/intersect.m, |
|
11 signal/ifftshift.m, signal/filter2.m, specfun/betaln.m, |
|
12 specfun/factorial.m, strings/strvcat.m: New files from Octave |
|
13 Forge. |
|
14 |
5809
|
15 2006-05-11 John W. Eaton <jwe@octave.org> |
|
16 |
5815
|
17 * path/path.m: Delete (now a built-in function). |
|
18 |
5811
|
19 * pkg/Makefile.in: New file. |
|
20 * configure.in (AC_CONFIG_FILES): Add pkg/Makefile to the list. |
5812
|
21 * Makefile.in (SUBDIRS): Add pkg to the list. |
5809
|
22 |
5808
|
23 2006-05-10 John W. Eaton <jwe@octave.org> |
|
24 |
|
25 * tar.m, untar.m, unzip.m: Adapt to Octave coding style. |
|
26 * tar.m, untar.m: Only tar; don't compress or uncompress. |
|
27 |
5807
|
28 2006-05-10 Soren Hauberg <hauberg@gmail.com> |
|
29 |
|
30 * tar.m, untar.m, unzip.m: New files. |
|
31 |
5801
|
32 2006-05-10 John W. Eaton <jwe@octave.org> |
|
33 |
5804
|
34 * path/addpath.m, path/rmpath.m: Improve compatibility. |
|
35 * path/setpath.m: Delete. |
|
36 |
5801
|
37 * pkg/pkg.m: New file. |
|
38 |
5798
|
39 2006-05-09 Keith Goodman <kwgoodman@gmail.com> |
|
40 |
|
41 * plot/plot.m: Doc string fix. |
|
42 |
|
43 2006-05-09 Paul Kienzle <pkienzle@users.sf.net> |
|
44 |
|
45 * testfun/speeed.m: Use new interface to unique and assert. |
|
46 Improve documentation. Approximate time complexity from log-log |
|
47 plot. Return time complexity and raw times if requested. The |
|
48 mean ratio is no longer returned. Provide complete control over |
|
49 which n are computed. |
|
50 |
|
51 2006-05-09 John W. Eaton <jwe@octave.org> |
|
52 |
|
53 * path/path.m: Move here from miscellaneous. |
|
54 Adapt to new LOADPATH definition. |
|
55 |
5789
|
56 2006-05-03 David Bateman <dbateman@free.fr> |
|
57 |
|
58 * path/rmpath.m, path/addpath.m, miscellaneous/path.m: Replace all |
|
59 explicit uses of a path seperation character with pathsep(). |
|
60 |
5786
|
61 2006-05-03 Bob Weigel <rweigel@gmu.edu> |
|
62 |
|
63 * scripts/set/setdiff.m: New arg, byrows. New tests. |
|
64 |
5781
|
65 2006-04-29 John W. Eaton <jwe@octave.org> |
|
66 |
|
67 * startup/main-rcfile: Disable some warnings. |
|
68 |
5762
|
69 2006-04-14 Bill Denney <denney@seas.upenn.edu> |
|
70 |
|
71 * strings/strcmpi.m: Return false instead of error if args are not |
|
72 char or cellstr. |
|
73 |
5750
|
74 2006-04-10 John W. Eaton <jwe@octave.org> |
|
75 |
|
76 * miscellaneous/dir.m: Ensure that returned structure array is |
|
77 Nx1, not 1xN. |
|
78 |
5746
|
79 2006-04-06 Olli Saarela <olli.saarela@kcl.fi> |
|
80 |
|
81 * plot/hist.m: Ignore NaN in inputs. |
|
82 |
5745
|
83 2006-04-06 Keith Goodman <kwgoodman@gmail.com> |
|
84 |
|
85 * miscellaneous/mkoctfile.m: Doc string fix. |
|
86 |
5741
|
87 2006-04-05 John W. Eaton <jwe@octave.org> |
|
88 |
|
89 * plot/__plt2__.m: Return data = [] and fmtstr = "" if x1 and x2 |
|
90 are both empty. |
|
91 * plot/__plt__.m: Ignore empty data and format strings returned |
|
92 from __plt1__ or __plt2__. |
|
93 |
5737
|
94 2006-04-04 Bob Weigel <rweigel@gmu.edu> |
|
95 |
|
96 * scripts/set/unique.m: Properly handle single column input when |
|
97 "rows" is specified. |
|
98 |
5732
|
99 2006-04-04 John W. Eaton <jwe@octave.org> |
|
100 |
5736
|
101 * path/setpath.m: New file. |
|
102 * path/savepath.m: Use setpath to set path instead of assigning |
|
103 directly to LOADPATH. |
|
104 |
5732
|
105 * path/Makefile.in, path/addpath.m, path/rmpath.m, path/savepath.m: |
|
106 New files, adapted from Octave Forge by Keith Goodman |
|
107 <kwgoodman@gmail.com>. |
|
108 * path: New directory. |
|
109 * Makefile.in (SUBDIRS): Add it to the list. |
|
110 * configure.in (AC_CONFIG_FILES): Include path/Makefile here. |
|
111 |
5731
|
112 2006-04-02 David Bateman <dbateman@free.fr> |
|
113 |
|
114 * general/tril.m, general.triu.m: |
|
115 Use resize (resize (x, 0), nr, nc) rather than zeros (nr, nc) |
|
116 to allow user types to work correctly. |
|
117 * special-matrix/hankel.m, special-matrix/toeplitz.m: Ditto. |
|
118 |
5727
|
119 2006-04-03 David Bateman <dbateman@free.fr> |
|
120 |
|
121 * plot/grid.m: Cache the state of the grid to allow toggling. |
|
122 Accept keyword "minor" for minor grid. |
|
123 |
5721
|
124 2006-03-28 John W. Eaton <jwe@octave.org> |
|
125 |
|
126 * general/isscalar.m: Only require that all dimensions are 1 for |
|
127 compatiblity. |
|
128 |
|
129 2006-03-28 Bill Denney <bill@givebillmoney.com> |
|
130 |
|
131 * general/isvector.m: Allow non-numeric objects to be vectors for |
|
132 compatibility. |
|
133 |
5720
|
134 2006-03-28 Keith Goodman <kwgoodman@gmail.com> |
|
135 |
|
136 * plot/__errplot__.m: Doc string fix. |
|
137 |
|
138 * miscellaneous/doc.m: Mark as command. |
|
139 |
|
140 * general/isequal.m, general/__isequal__.m, general/cell2mat.m, |
|
141 general/isequalwithequalnans.m, general/blkdiag.m, |
|
142 strings/strfind.m, miscellaneous/doc.m: Update FSF address. |
|
143 |
5717
|
144 2006-03-27 Don Bindner <dbindner@truman.edu> |
|
145 |
|
146 * plot/meshgrid.m: If nargout == 3 and vectors are supplied, |
|
147 return 3d matrices. |
|
148 |
|
149 2006-03-27 Keith Goodman <kwgoodman@gmail.com> |
|
150 |
|
151 * time/toc.m: Don't print "Elapsed time..." if tic has not been set. |
|
152 |
5708
|
153 2006-03-22 John W. Eaton <jwe@octave.org> |
|
154 |
|
155 * plot/print.m: Don't replot after popping terminal setting. |
|
156 |
5696
|
157 2006-03-20 John W. Eaton <jwe@octave.org> |
|
158 |
|
159 * miscellaneous/mkoctfile.m: Use version-specific name of |
|
160 mkoctfile. Use fullfile to construct file name. |
|
161 |
5695
|
162 2006-03-20 Keith Goodman <kwgoodman@gmail.com> |
|
163 |
|
164 * miscellaneous/mkoctfile.m: Make it possible to call mkoctfile |
|
165 shell script from Octave prompt. |
|
166 |
5690
|
167 2006-03-17 John W. Eaton <jwe@octave.org> |
|
168 |
5693
|
169 * deprecated/weibcdf.m, deprecated/weibinv.m, |
|
170 deprecated/weibpdf.m, deprecated/weibrnd.m: New functions. |
|
171 |
|
172 * deprecated/weibull_cdf.m, deprecated/weibull_inv.m, |
|
173 deprecated/weibull_pdf.m, deprecated/weibull_rnd.m: |
|
174 Call new wbl functions to do the real work. |
|
175 Swap args and provide default values as necessary to preserve |
|
176 compatibility with old version of Octave. |
|
177 |
|
178 * statistics/distributions/wblcdf.m: Rename from weibcdf.m. |
|
179 statistics/distributions/wblinv.m: Rename from weibinv.m. |
|
180 statistics/distributions/wblpdf.m: Rename from weibpdf.m. |
|
181 statistics/distributions/wblrnd.m: Rename from weibrnd.m. |
|
182 Swap scale and shape args for compatibility. |
|
183 |
5692
|
184 * deprecated/lognormal_cdf.m, deprecated/lognormal_inv.m, |
|
185 deprecated/lognormal_pdf.m, deprecated/lognormal_rnd.m: |
|
186 Preserve compatibility with old versions of Octave given new |
|
187 definitions of logncdf, logninv, lognpdf, and lognrnd. |
5693
|
188 |
5692
|
189 * statistics/distributions/logncdf.m, |
|
190 statistics/distributions/logninv.m, |
|
191 statistics/distributions/lognpdf.m, |
|
192 statistics/distributions/lognrnd.m: Compatibility fixes. |
|
193 From Ben Barrowes <barrowes@alum.mit.edu> |
|
194 |
5691
|
195 * deprecated/hypergeometric_rnd.m: Update interface to match |
|
196 current 2.1.x version. |
|
197 |
|
198 * deprecated/t_rnd.m: Call trnd, not t_rnd. |
|
199 |
5690
|
200 * miscellaneous/dir.m: Use readdir instead of glob. |
|
201 Special case for "." to avoid globbing. Use list_in_columns. |
|
202 Eliminate unused variables len and finfo. |
|
203 |
5689
|
204 2006-03-16 Bill Denney <bill@givebillmoney.com> |
|
205 |
|
206 * miscellaneous/dir.m: Improve compatibility. |
|
207 |
5687
|
208 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
209 |
|
210 * time/calendar.m, time/datestr.m, time/datevec.m, time/eomday.m, |
|
211 time/now.m, time/weekday.m: New functions from Octave Forge. |
|
212 |
5686
|
213 2006-03-16 John W. Eaton <jwe@octave.org> |
|
214 |
|
215 * control/base/bode_bounds.m: Check for iip and iiz empty instead |
|
216 of looking at sum of max dimensions. |
|
217 |
5681
|
218 2006-03-16 David Bateman <dbateman@free.fr> |
|
219 |
|
220 * testfun/test.m: Clear last warning before warning test to avoid |
|
221 issues with previously set warnings. |
|
222 * build_sparse_test.sh: Tests for multiple RHS for rectanguar |
|
223 sparse matrices. Force matrix type from spqr solution to be |
|
224 singular to force QR solvers to be used for assert. |
|
225 |
5678
|
226 2006-03-16 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
227 |
|
228 * strings/strfind.m: New file. |
|
229 |
5677
|
230 2006-03-16 John W. Eaton <jwe@octave.org> |
|
231 |
|
232 * general/rows.m, general/columns.m: Delete. |
|
233 |
5674
|
234 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
235 |
|
236 * strings/strcmpi.m: Simplify. |
|
237 * strings/strncmpi.m: Import from octave-forge, simplify. |
5678
|
238 * strings/strtrunc.m: New file. |
5674
|
239 |
5676
|
240 * strings/lower.m, strings/upper.m: Handle cellstr arguments. |
|
241 |
5672
|
242 2006-03-15 John W. Eaton <jwe@octave.org> |
|
243 |
|
244 * miscellaneous/doc.m: New file. |
|
245 From Soren Hauberg <soren@hauberg.org>. |
|
246 |
5671
|
247 2006-03-15 Keith Goodman <kwgoodman@gmail.com> |
|
248 |
|
249 * miscellaneous/mkoctfile.m: New file. |
|
250 |
5670
|
251 2006-03-15 John W. Eaton <jwe@octave.org> |
|
252 |
|
253 * polynomial/residue.m: Use & instead of && to generate arg for find. |
|
254 |
5666
|
255 2006-03-14 Keith Goodman <kwgoodman@gmail.com> |
|
256 |
|
257 * strings/bin2dec.m: Doc fix. |
|
258 |
5661
|
259 2006-03-10 Paul Kienzle <pkienzle@users.sf.net> |
|
260 |
|
261 * time/etime.m: Use datenum to support times spanning year boundaries. |
|
262 * time/datenum.m: New function to compute day number from time. |
|
263 |
5659
|
264 2006-03-09 John W. Eaton <jwe@octave.org> |
|
265 |
|
266 * miscellaneous/unix.m, plot/print.m: |
|
267 Swap order of outputs from system. |
|
268 |
5642
|
269 2006-03-06 Keith Goodman <kwgoodman@gmail.com> |
|
270 |
|
271 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, |
|
272 audio/playaudio.m, audio/record.m, audio/saveaudio.m, |
|
273 audio/wavread.m, audio/wavwrite.m, control/base/DEMOcontrol.m, |
|
274 control/base/__stepimp__.m, control/base/are.m, |
|
275 control/base/controldemo.m, control/base/damp.m, |
|
276 control/base/dare.m, control/base/impulse.m, control/base/lqg.m, |
|
277 control/base/step.m, control/system/abcddim.m, |
|
278 control/system/is_abcd.m, control/system/is_controllable.m, |
|
279 control/system/is_detectable.m, control/system/is_observable.m, |
|
280 control/system/is_stabilizable.m, control/system/is_stable.m, |
|
281 control/system/jet707.m, control/system/sys2fir.m, |
|
282 control/system/sysdimensions.m, control/system/sysupdate.m, |
|
283 control/system/tfout.m, control/system/ugain.m, |
|
284 control/system/zpout.m, elfun/lcm.m, finance/irr.m, |
|
285 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, |
|
286 finance/rate.m, general/__isequal__.m, general/bitcmp.m, |
|
287 general/bitget.m, general/bitset.m, general/blkdiag.m, |
|
288 general/cart2pol.m, general/cart2sph.m, general/cell2mat.m, |
|
289 general/circshift.m, general/columns.m, general/flipdim.m, |
|
290 general/fliplr.m, general/flipud.m, general/ind2sub.m, |
|
291 general/int2str.m, general/isdefinite.m, general/isequal.m, |
|
292 general/isequalwithequalnans.m, general/isscalar.m, |
|
293 general/issquare.m, general/issymmetric.m, general/isvector.m, |
|
294 general/logspace.m, general/mod.m, general/nextpow2.m, |
|
295 general/num2str.m, general/perror.m, general/pol2cart.m, |
|
296 general/rem.m, general/rot90.m, general/rotdim.m, general/rows.m, |
|
297 general/shiftdim.m, general/sph2cart.m, general/sub2ind.m, |
|
298 general/tril.m, image/hsv2rgb.m, image/image.m, image/imagesc.m, |
|
299 image/imshow.m, image/ind2gray.m, image/ind2rgb.m, |
|
300 image/loadimage.m, image/rgb2hsv.m, image/rgb2ind.m, |
|
301 image/saveimage.m, io/beep.m, linear-algebra/cond.m, |
|
302 linear-algebra/norm.m, miscellaneous/comma.m, miscellaneous/dir.m, |
|
303 miscellaneous/license.m, miscellaneous/menu.m, |
|
304 miscellaneous/semicolon.m, miscellaneous/texas_lotto.m, |
|
305 miscellaneous/unix.m, miscellaneous/ver.m, optimization/sqp.m, |
|
306 plot/__errcomm__.m, plot/__errplot__.m, plot/__pltopt1__.m, |
|
307 plot/__pltopt__.m, plot/bar.m, plot/contour.m, plot/errorbar.m, |
|
308 plot/grid.m, plot/hist.m, plot/loglog.m, plot/loglogerr.m, |
|
309 plot/mesh.m, plot/meshgrid.m, plot/plot.m, plot/polar.m, |
|
310 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, |
|
311 plot/semilogyerr.m, plot/shg.m, plot/stairs.m, plot/title.m, |
|
312 plot/xlabel.m, polynomial/compan.m, polynomial/conv.m, |
|
313 polynomial/deconv.m, polynomial/polyderiv.m, polynomial/polygcd.m, |
|
314 polynomial/polyinteg.m, polynomial/polyout.m, |
|
315 polynomial/polyreduce.m, polynomial/polyval.m, |
|
316 polynomial/polyvalm.m, polynomial/residue.m, set/complement.m, |
|
317 set/create_set.m, set/intersection.m, set/ismember.m, |
|
318 set/setdiff.m, set/union.m, set/unique.m, sparse/etreeplot.m, |
|
319 sparse/gplot.m, sparse/spalloc.m, sparse/sphcat.m, |
|
320 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, |
|
321 sparse/spvcat.m, sparse/treeplot.m, specfun/erfinv.m, |
|
322 specfun/log2.m, specfun/pow2.m, special-matrix/hankel.m, |
|
323 special-matrix/hilb.m, special-matrix/invhilb.m, |
|
324 special-matrix/sylvester_matrix.m, special-matrix/toeplitz.m, |
|
325 special-matrix/vander.m, statistics/base/median.m, |
|
326 statistics/base/std.m, statistics/distributions/gamcdf.m, |
|
327 statistics/distributions/gaminv.m, |
|
328 statistics/distributions/gampdf.m, |
|
329 statistics/distributions/gamrnd.m, strings/base2dec.m, |
|
330 strings/bin2dec.m, strings/dec2base.m, strings/dec2bin.m, |
|
331 strings/dec2hex.m, strings/hex2dec.m, strings/isletter.m, |
|
332 strings/lower.m, strings/upper.m, testfun/assert.m, |
|
333 testfun/demo.m, testfun/example.m, testfun/test.m, time/etime.m: |
|
334 Move @seealso inside @defXXX macro. Remove "and" from @seealso. |
|
335 |
5633
|
336 2006-02-27 John W. Eaton <jwe@octave.org> |
|
337 |
|
338 * time/tic.m: Move here from miscellaneous/tic.m. |
|
339 * time/toc.m: Move here from miscellaneous/toc.m. |
|
340 |
|
341 2006-02-26 Keith Goodman <kwgoodman@gmail.com> |
|
342 |
|
343 * miscellaneous/toc.m: Display "Elapsed time is X seconds" if user |
|
344 does not assign output of toc to a variable. |
|
345 |
5627
|
346 2006-02-16 Bill Denney <denney@seas.upenn.edu> |
|
347 |
|
348 * axis.m: Catch limits that are the same and return an error. |
|
349 |
5625
|
350 2006-02-15 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
351 |
|
352 * plot/print.m: Accept emf device option to support Enhanced |
|
353 Metafile format. |
|
354 |
|
355 2006-02-15 A S Hodel <hodelas@auburn.edu> |
|
356 |
|
357 * control/base/lqe.m: Doc fix. |
|
358 |
5623
|
359 2006-02-15 Keith Goodman <kwgoodman@gmail.com> |
|
360 |
|
361 * statistics/distributions/gamcdf.m: Doc fix. |
|
362 * statistics/distributions/gaminv.m: Doc fix. |
|
363 * statistics/distributions/gampdf.m: Doc fix. |
|
364 * statistics/distributions/gamrnd.m: Doc fix. |
|
365 |
5610
|
366 2006-02-09 David Bateman <dbateman@free.fr> |
|
367 |
|
368 * general/triu.m: Minimum change to allow sparse matrix. More needed |
|
369 for arbitrary user type. |
|
370 * general/tril.m: ditto. |
5820
|
371 * sparse/sprand.m: Doc fix. |
5610
|
372 * sparse/sprandn.m: Ditto. |
|
373 * sparse/sprandsym.m: New function. |
|
374 * audio/setaudio.m, general/cart2pol.m, general/cart2sph.m, |
|
375 general/pol2cart.m, general/sph2cart.m, signal/freqz_plot.m: |
|
376 Update for syntax error for latest texinfo.tex file. |
|
377 |
5605
|
378 2006-02-02 John W. Eaton <jwe@octave.org> |
|
379 |
|
380 * plot/grid.m: Append ";\n" to "set grid" command. |
|
381 |
|
382 2006-02-02 A S Hodel <hodelas@auburn.edu> |
|
383 |
|
384 * control/base/rlocus.m: Don't atttempt to plot rlzer if it is empty. |
|
385 |
5597
|
386 2006-01-13 John W. Eaton <jwe@octave.org> |
|
387 |
|
388 * audio/Makefile.in, control/base/Makefile.in, |
|
389 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
390 control/system/Makefile.in, control/util/Makefile.in, |
|
391 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, |
|
392 general/Makefile.in, image/Makefile.in, io/Makefile.in, |
|
393 linear-algebra/Makefile.in, miscellaneous/Makefile.in, |
|
394 optimization/Makefile.in, plot/Makefile.in, |
|
395 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
396 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
397 special-matrix/Makefile.in, startup/Makefile.in, |
|
398 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
399 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
400 strings/Makefile.in, time/Makefile.in, testfun/Makefile.in: |
|
401 (all): Depend on PKG_ADD. |
|
402 (PKG_ADD): New target. |
|
403 |
|
404 2006-01-13 Bill Denney <bill@givebillmoney.com> |
|
405 |
|
406 * miscellaneous/dir.m: Add @seealso{} to docstring. |
|
407 |
5596
|
408 2006-01-13 John W. Eaton <jwe@octave.org> |
|
409 |
|
410 * time/etime.m: Move here from miscellaneous/etime.m. |
|
411 * time/is_leap_year.m: Move here from miscellaneous/is_leap_year.m. |
|
412 |
5595
|
413 2006-01-13 Bill Denney <bill@givebillmoney.com> |
|
414 |
|
415 * miscellaneous/dir.m: Use filesep instead of "/" where needed. |
|
416 * miscellaneous/fullfile.m: Likewise. |
|
417 |
5592
|
418 2006-01-12 David Bateman <dbateman@free.fr> |
|
419 |
|
420 * general/blkdiag.m: Compatible behavior for empty matrices |
|
421 * statistics/base/unidrnd.m: Documentation buglet. |
|
422 |
5583
|
423 2005-12-14 David Bateman <dbateman@free.fr> |
|
424 |
5589
|
425 * testfun/assert.m, testfun/fail.m, testfun/test.m, testfun/demo.m, |
|
426 testfun/speed.m, testfun/example.m, Makefile.in: New files. |
|
427 |
|
428 * Makefile.in (SUBDIRS): Include testfun. |
|
429 * configure.in (AC_CONFIG_FILES): Include testfun/Makefile. |
|
430 |
5583
|
431 * miscellaneous/dir.m: Transpose sub-assignment for cleanness. |
|
432 |
|
433 * general/__isequal__.m: Remove reference to getfield. |
|
434 |
|
435 * plot/hist.m: Update test code for row/column discrepencies. |
|
436 * signal/freqz.m: Alter output row/column for matlab compatibility. |
|
437 Update the test code for this. |
|
438 * sparse/spstats.m: Fix small bug in the dimension of output. |
|
439 |
5579
|
440 2005-12-13 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
441 |
|
442 * cell/cell2mat.m: New file, from octave-forge. |
|
443 |
5576
|
444 2005-12-13 Ivana Varekova <varekova@redhat.com> |
|
445 |
|
446 * sparse/treeplot.m, sparse/etreeplot.m, sparse/gplot.m: |
|
447 New graph theory functions. |
|
448 |
5574
|
449 2005-12-13 John W. Eaton <jwe@octave.org> |
|
450 |
|
451 * general/blkdiag.m: Use "isempty" instead of @isempty. |
|
452 |
|
453 * control/system/ss.m: Doc fix. |
|
454 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
455 |
5572
|
456 2005-12-12 Michael Zeising <michael@michaels-website.de> |
|
457 |
|
458 * audio/wavread.m, audio/wavwrite.m: |
|
459 Correct scaling for 8-bit linear pcm samples. |
|
460 Improve scaling for all other linear pcm resolutions. |
|
461 |
5568
|
462 2005-12-07 John W. Eaton <jwe@octave.org> |
|
463 |
|
464 * statistics/base/moment.m: Don't save and restore warn_str_to_num. |
|
465 |
|
466 * sparse/spdiags.m: Don't save and restore warn_fortran_indexing. |
|
467 * strings/strjust.m: Likewise. |
|
468 |
|
469 * general/shift.m: Don't save and restore warn_empty_list_elements. |
|
470 * signal/arma_rnd.m: Likewise. |
|
471 * strings/strcat.m: Likewise. |
|
472 * control/base/__freqresp__.m: Likewise. |
|
473 * control/base/place.m: Likewise. |
|
474 * control/base/pzmap.m: Likewise. |
|
475 * control/base/pzmap.m: Likewise. |
|
476 * control/system/sysappend.m: Likewise. |
|
477 * control/system/syscont.m: Likewise. |
|
478 * control/system/sysdisc.m: Likewise. |
|
479 * control/system/sysgroup.m: Likewise. |
|
480 * control/system/tfout.m: Likewise. |
|
481 * control/system/zpout.m: Likewise. |
|
482 * control/util/__outlist__.m: Likewise. |
|
483 |
5567
|
484 2005-12-06 John W. Eaton <jwe@octave.org> |
|
485 |
|
486 * audio/wavread.m, audio/wavwrite.m: Adapt to Octave coding style. |
|
487 Avoid for loop in interleave/deinterleave steps. |
|
488 |
5565
|
489 2005-12-06 Michael Zeising <michael@michaels-website.de> |
|
490 |
|
491 * audio/wavread.m, audio/wavwrite.m: New files. |
|
492 |
5563
|
493 2005-12-06 John W. Eaton <jwe@octave.org> |
|
494 |
|
495 * miscellaneous/dir.m: Return Nx1 instead of 1xN struct array. |
|
496 |
5560
|
497 2005-12-05 John W. Eaton <jwe@octave.org> |
|
498 |
5561
|
499 * plot/axis.m: Add "## PKG_ADD: mark_as_command axis" line. |
5560
|
500 |
5558
|
501 2005-12-02 John W. Eaton <jwe@octave.org> |
|
502 |
|
503 * miscellaneous/fileattrib.m: New function. |
|
504 |
5556
|
505 2005-12-01 John W. Eaton <jwe@octave.org> |
|
506 |
|
507 * general/columns.m: Use size (x, 2) instead of [nr, nc] = size (x). |
|
508 * general/rows.m: Use size (x, 1) instead of [nr, nc] = size (x). |
|
509 From William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com>. |
|
510 |
5555
|
511 2005-11-30 John W. Eaton <jwe@octave.org> |
|
512 |
|
513 * linear-algebra/krylov.m: Format doc string. |
|
514 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
515 |
5551
|
516 2005-11-23 William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com> |
|
517 |
|
518 * general/blkdiag.m: Import from octave-forge. |
|
519 Ignore empty matrices in the input. Add tests. |
5549
|
520 |
|
521 * general/isequal.m, general/isequalwithequalnans.m: |
|
522 New wrapper scripts for general/__isequal__.m. |
|
523 * general/__isequal__.m: Rename from general/isequal.m. |
|
524 New arg, nans_compare_equal. |
|
525 |
5548
|
526 2005-11-29 John W. Eaton <jwe@octave.org> |
|
527 |
|
528 * miscellaneous/ver.m: Use new uname built-in function instead of |
|
529 calling system. Only append octave_forge_string if |
|
530 OCTAVE_FORGE_VERSION exists. Use puts instead of disp. |
|
531 Call license instead of hard-coding license info here. |
|
532 |
|
533 * miscellaneous/license.m: Use persistent instead of global for |
5654
|
534 __octave_licenses__. Use puts instead of disp. |
5548
|
535 Use getuid and getpwuid instead of calling unix ("id -un"). |
|
536 If nargout = 1, return license info instead of printing usage message. |
|
537 |
5546
|
538 2005-11-29 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
539 |
|
540 * miscellaneous/ver.m: New file. |
|
541 * miscellaneous/license.m: New file. |
|
542 |
5545
|
543 2005-11-22 John W. Eaton <jwe@octave.org> |
|
544 |
|
545 * plot/axis.m: Use %.16g instead of just %g to format ranges for |
|
546 gnuplot set command. |
|
547 |
5539
|
548 2005-11-15 John W. Eaton <jwe@octave.org> |
|
549 |
|
550 * general/shiftdim.m: Doc fix. |
|
551 |
5532
|
552 2005-11-07 Keith Goodman <kwgoodman@gmail.com> |
|
553 |
|
554 * set/unique.m: Doc string fix. |
|
555 |
5527
|
556 2005-11-01 John W. Eaton <jwe@octave.org> |
|
557 |
|
558 * Makefile.in (distclean, maintainer-clean): |
|
559 Also remove autom4te.cache directory. |
|
560 From Quentin Spencer <qspencer@ieee.org>. |
|
561 |
5518
|
562 2005-10-28 John W. Eaton <jwe@octave.org> |
|
563 |
|
564 * general/shiftdim.m: Compatibility fix for row vectors. |
|
565 Correct check for non-scalar non-integer shift. For positive |
|
566 N, shift is remainder of N and number of dims. Always return NS. |
|
567 Simplify. |
|
568 |
5500
|
569 2005-10-18 Keith Goodman <kwgoodman@gmail.com> |
|
570 |
|
571 * general/randperm.m: Improve compatibility by allowing input |
|
572 value of zero. |
|
573 |
5493
|
574 2005-10-13 John W. Eaton <jwe@octave.org> |
|
575 |
|
576 * plot/__plt__.m, plot/__errplot__.m, plot/replot.m: |
|
577 If in multiplot mode, clear plot before issuing new plot command. |
|
578 |
|
579 * plot/__setup_plot__.m: New function. |
|
580 * plot/__plt__.m, plot__errplot__.m: Use it. |
|
581 Handle multiplot data and offsets here. |
|
582 |
|
583 * plot/__plot_globals__.m: Also keep track of multiplot options. |
|
584 Move initialization to __setup_plot__.m. |
|
585 |
|
586 * plot/subplot.m: Multiplot globals now in __plot_globals__.m. |
|
587 Don't reset gnuplot_command_replot. |
|
588 |
|
589 * plot/replot.m: Handle multiplot data and offsets here. |
|
590 * plot__axis_label__.m, plot/axis.m, plot/grid.m, |
|
591 plot/plot_border.m, plot/plot.m, plot/plot_title.m, |
|
592 plot/top_title.m: Call replot, not __gnuplot_replot__. |
|
593 |
5489
|
594 2005-10-12 John W. Eaton <jwe@octave.org> |
|
595 |
|
596 * plot/figure.m: Handle __current_figure__, not gnuplot details. |
|
597 |
5482
|
598 2005-10-04 Rafael Laboissiere <rafael@debian.org> |
|
599 |
|
600 * binoinv.m, chi2pdf.m, frnd.m, poissinv.m, tinv.m, trnd.m, |
|
601 weibrnd.m: Removed calls and references to deprecated _pdf and |
|
602 _inv functions. |
|
603 * chi2pdf.m: Fixed typos in the documentation. |
|
604 |
5475
|
605 2005-09-28 John W. Eaton <jwe@octave.org> |
|
606 |
5476
|
607 * miscellaneous/single.m: New function. |
|
608 |
5475
|
609 * statistics/base/unidrnd.m: New function. |
|
610 |
5474
|
611 2005-09-27 John W. Eaton <jwe@octave.org> |
|
612 |
|
613 * miscellaneous/dir.m: Filename never includes directory part. |
|
614 |
5464
|
615 2005-09-22 John W. Eaton <jwe@octave.org> |
|
616 |
|
617 * polynomial/residue.m: Use logical indexing instead of find.. |
|
618 |
|
619 2005-09-22 Julius Smith <jos@ccrma.stanford.edu> |
|
620 |
|
621 * polynomial/residue.m: Avoid division by zero for pure imaginary |
|
622 and zero poles. |
|
623 |
5462
|
624 2005-09-22 Bill Denney <denney@seas.upenn.edu> |
|
625 |
|
626 * strings/deblank.m: Handle cell arrays. |
|
627 * strings/split.m: New argument, N, to limit number of splits. |
|
628 |
|
629 2005-09-22 Miroslaw Kwasniak <mirek@zind.ikem.pwr.wroc.pl> |
|
630 |
|
631 * plot/__pltopt1__.m: Handle plot colors "w" and "k" separately. |
|
632 |
5460
|
633 2005-09-20 "Orestes Mas" <orestes@tsc.upc.edu> |
|
634 |
|
635 * control/base/rlocus.m: Doc fix. |
|
636 |
5459
|
637 2005-09-20 John W. Eaton <jwe@octave.org> |
|
638 |
|
639 * general/isvector.m: Improve compatibility. |
|
640 |
|
641 * general/postpad.m: Allow first argument to be a scalar. |
|
642 Allow padding to extend dimensionality. |
|
643 * general/prepad.m: Likewise. |
|
644 |
5448
|
645 2005-09-14 Daniel <durbano@shbano.com> |
|
646 |
|
647 * statistics/tests/bartlett_test.m, linear-algebra/cross.m, |
5449
|
648 statistics/distributions/discrete_cdf.m, general/fliplr.m, |
|
649 /control/base/dgram.m: Doc string fixes. |
5448
|
650 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
651 |
5446
|
652 2005-09-12 Stefan van der Walt <stefan@sun.ac.za> |
|
653 |
|
654 * saveimage.m: Do not ignore most significant bit when writing |
|
655 black and white images to file. |
|
656 |
5443
|
657 2005-09-07 Bill Denney <denney@seas.upenn.edu> |
|
658 |
|
659 * audio/playaudio.m, control/base/__bodquist__.m, |
|
660 control/base/lqg.m, control/obsolete/dezero.m, |
|
661 control/system/__syschnamesl__.m, control/system/__sysconcat__.m, |
|
662 control/system/c2d.m, control/system/cellidx.m, |
|
663 control/system/d2c.m, control/system/dmr2d.m, |
|
664 control/system/is_signal_list.m, control/system/listidx.m, |
|
665 control/system/ss.m, control/system/sysappend.m, |
|
666 control/system/sysconnect.m, control/system/sysdup.m, |
|
667 control/system/sysgetsignals.m, control/system/sysidx.m, |
|
668 control/system/sysprune.m, control/system/syssetsignals.m, |
|
669 control/system/tfout.m, control/system/zpout.m, |
|
670 control/util/prompt.m, control/util/sortcom.m, |
|
671 control/util/strappend.m, finance/fv.m, finance/nper.m, |
|
672 finance/pmt.m, finance/pv.m, finance/rate.m, general/diff.m, |
|
673 general/num2str.m, general/repmat.m, general/sortrows.m, |
|
674 general/strerror.m, image/colormap.m, image/imshow.m, |
|
675 image/loadimage.m, image/saveimage.m, linear-algebra/norm.m, |
|
676 miscellaneous/fileparts.m, miscellaneous/popen2.m, |
|
677 plot/__axis_label__.m, plot/__errcomm__.m, plot/__plt1__.m, |
|
678 plot/__plt2__.m, plot/__plt__.m, plot/__pltopt1__.m, |
|
679 plot/__pltopt__.m, plot/axis.m, plot/bottom_title.m, plot/close.m, |
|
680 plot/grid.m, plot/hist.m, plot/plot_border.m, plot/polar.m, |
|
681 plot/print.m, plot/title.m, plot/top_title.m, |
|
682 polynomial/polyout.m, set/unique.m, signal/freqz.m, signal/stft.m, |
|
683 statistics/base/mean.m, statistics/base/moment.m, |
|
684 statistics/tests/cor_test.m, |
|
685 statistics/tests/kolmogorov_smirnov_test.m, |
|
686 statistics/tests/kolmogorov_smirnov_test_2.m, |
|
687 statistics/tests/prop_test_2.m, statistics/tests/sign_test.m, |
|
688 statistics/tests/t_test.m, statistics/tests/t_test_2.m, |
|
689 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, |
|
690 statistics/tests/var_test.m, statistics/tests/welch_test.m, |
|
691 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, |
|
692 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, |
|
693 strings/deblank.m, strings/dec2base.m, strings/index.m, |
|
694 strings/rindex.m, strings/split.m, strings/str2mat.m, |
|
695 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, |
|
696 strings/strncmp.m, strings/strrep.m, strings/substr.m: |
|
697 Avoid deprecated functions. Use ischar instead of isstr. Use |
|
698 isvector instead of is_vector. Use isstruct instead of |
|
699 is_struct. Use char instead of setstr. |
|
700 |
5435
|
701 2005-08-31 Daniel <durbano@shbano.com> |
|
702 |
|
703 * special-matrix/invhilb.m, statistics/base/iqr.m, |
|
704 control/system/is_controllable.m, set/ismember.m: Doc fixes. |
|
705 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
706 |
5431
|
707 2005-08-29 Bill Denney <denney@seas.upenn.edu> |
|
708 |
|
709 * image/saveimage.m: Open output file in binary mode. |
|
710 |
|
711 * miscellaneous/bug_report.m: Open prefs file in text mode. |
|
712 |
5427
|
713 2005-08-16 John W. Eaton <jwe@octave.org> |
|
714 |
|
715 * miscellaneous/computer.m: Handle optional maxsize and endian |
|
716 outputs. |
|
717 |
5426
|
718 2005-08-15 John W. Eaton <jwe@octave.org> |
|
719 |
|
720 * strings/strcat.m: Allow single argument. |
|
721 |
5416
|
722 2005-07-18 John W. Eaton <jwe@octave.org> |
|
723 |
|
724 * strings/strcmp.m: Delete. |
|
725 |
5413
|
726 2005-07-13 John W. Eaton <jwe@octave.org> |
|
727 |
|
728 * deprecated/hypergeometric_rnd.m: Preserve compatibility with old |
|
729 versions of Octave. |
|
730 |
|
731 2005-07-13 Ben Barrowes <barrowes@alum.mit.edu> |
|
732 |
|
733 * statistics/distributions/betacdf.m: Rename from beta_cdf.m. |
|
734 * statistics/distributions/betainv.m: Rename from beta_inv.m. |
|
735 * statistics/distributions/betapdf.m: Rename from beta_pdf.m. |
|
736 * statistics/distributions/betarnd.m: Rename from beta_rnd.m. |
|
737 * statistics/distributions/binocdf.m: Rename from binomial_cdf.m. |
|
738 * statistics/distributions/binoinv.m: Rename from binomial_inv.m. |
|
739 * statistics/distributions/binopdf.m: Rename from binomial_pdf.m. |
|
740 * statistics/distributions/binornd.m: Rename from binomial_rnd.m. |
|
741 * statistics/distributions/chi2cdf.m: Rename from chisquare_cdf.m. |
|
742 * statistics/distributions/chi2inv.m: Rename from chisquare_inv.m. |
|
743 * statistics/distributions/chi2pdf.m: Rename from chisquare_pdf.m. |
|
744 * statistics/distributions/chi2rnd.m: Rename from chisquare_rnd.m. |
|
745 * statistics/distributions/expcdf.m: Rename from exponential_cdf.m. |
|
746 * statistics/distributions/expinv.m: Rename from exponential_inv.m. |
|
747 * statistics/distributions/exppdf.m: Rename from exponential_pdf.m. |
|
748 * statistics/distributions/exprnd.m: Rename from exponential_rnd.m. |
|
749 * statistics/distributions/fcdf.m: Rename from f_cdf.m. |
|
750 * statistics/distributions/finv.m: Rename from f_inv.m. |
|
751 * statistics/distributions/fpdf.m: Rename from f_pdf.m. |
|
752 * statistics/distributions/frnd.m: Rename from f_rnd.m. |
|
753 * statistics/distributions/gamcdf.m: Rename from gamma_cdf.m. |
|
754 * statistics/distributions/gaminv.m: Rename from gamma_inv.m. |
|
755 * statistics/distributions/gampdf.m: Rename from gamma_pdf.m. |
|
756 * statistics/distributions/gamrnd.m: Rename from gamma_rnd.m. |
|
757 * statistics/distributions/geocdf.m: Rename from geometric_cdf.m. |
|
758 * statistics/distributions/geoinv.m: Rename from geometric_inv.m. |
|
759 * statistics/distributions/geopdf.m: Rename from geometric_pdf.m. |
|
760 * statistics/distributions/geornd.m: Rename from geometric_rnd.m. |
|
761 * statistics/distributions/hygecdf.m: Rename from hypergeometric_cdf.m. |
|
762 * statistics/distributions/hygeinv.m: Rename from hypergeometric_inv.m. |
|
763 * statistics/distributions/hygepdf.m: Rename from hypergeometric_pdf.m. |
|
764 * statistics/distributions/hygernd.m: Rename from hypergeometric_rnd.m. |
|
765 * statistics/distributions/logncdf.m: Rename from lognormal_cdf.m. |
|
766 * statistics/distributions/logninv.m: Rename from lognormal_inv.m. |
|
767 * statistics/distributions/lognpdf.m: Rename from lognormal_pdf.m. |
|
768 * statistics/distributions/lognrnd.m: Rename from lognormal_rnd.m. |
|
769 * statistics/distributions/normcdf.m: Rename from normal_cdf.m. |
|
770 * statistics/distributions/norminv.m: Rename from normal_inv.m. |
|
771 * statistics/distributions/normpdf.m: Rename from normal_pdf.m. |
|
772 * statistics/distributions/normrnd.m: Rename from normal_rnd.m. |
|
773 * statistics/distributions/poisscdf.m: Rename from poisson_cdf.m. |
|
774 * statistics/distributions/poissinv.m: Rename from poisson_inv.m. |
|
775 * statistics/distributions/poisspdf.m: Rename from poisson_pdf.m. |
|
776 * statistics/distributions/poissrnd.m: Rename from poisson_rnd.m. |
|
777 * statistics/distributions/tcdf.m: Rename from t_cdf.m. |
|
778 * statistics/distributions/tinv.m: Rename from t_inv.m. |
|
779 * statistics/distributions/tpdf.m: Rename from t_pdf.m. |
|
780 * statistics/distributions/trnd.m: Rename from t_rnd.m. |
5431
|
781 * statistics/distributions/unifcdf.m: Rename from unifoxorm_cdf.m. |
5413
|
782 * statistics/distributions/unifinv.m: Rename from uniform_inv.m. |
|
783 * statistics/distributions/unifpdf.m: Rename from uniform_pdf.m. |
|
784 * statistics/distributions/unifrnd.m: Rename from uniform_rnd.m. |
|
785 * statistics/distributions/weibcdf.m: Rename from weibull_cdf.m. |
|
786 * statistics/distributions/weibinv.m: Rename from weibull_inv.m. |
|
787 * statistics/distributions/weibpdf.m: Rename from weibull_pdf.m. |
|
788 * statistics/distributions/wienrnd.m: Rename from wiener_rnd.m. |
|
789 |
|
790 * deprecated/beta_cdf.m, deprecated/beta_inv.m, |
|
791 deprecated/beta_pdf.m, deprecated/beta_rnd.m, |
|
792 deprecated/binomial_cdf.m, deprecated/binomial_inv.m, |
|
793 deprecated/binomial_pdf.m, deprecated/binomial_rnd.m, |
|
794 deprecated/chisquare_cdf.m, deprecated/chisquare_inv.m, |
|
795 deprecated/chisquare_pdf.m, deprecated/chisquare_rnd.m, |
|
796 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, |
|
797 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m, |
|
798 deprecated/f_cdf.m, deprecated/f_inv.m, deprecated/f_pdf.m, |
|
799 deprecated/f_rnd.m, deprecated/gamma_cdf.m, |
|
800 deprecated/gamma_inv.m, deprecated/gamma_pdf.m, |
|
801 deprecated/gamma_rnd.m, deprecated/geometric_cdf.m, |
|
802 deprecated/geometric_inv.m, deprecated/geometric_pdf.m, |
|
803 deprecated/geometric_rnd.m, deprecated/hypergeometric_cdf.m, |
|
804 deprecated/hypergeometric_inv.m, deprecated/hypergeometric_pdf.m, |
|
805 deprecated/hypergeometric_rnd.m, deprecated/lognormal_cdf.m, |
|
806 deprecated/lognormal_inv.m, deprecated/lognormal_pdf.m, |
|
807 deprecated/lognormal_rnd.m, deprecated/normal_cdf.m, |
|
808 deprecated/normal_inv.m, deprecated/normal_pdf.m, |
|
809 deprecated/normal_rnd.m, deprecated/poisson_cdf.m, |
|
810 deprecated/poisson_inv.m, deprecated/poisson_pdf.m, |
|
811 deprecated/poisson_rnd.m, deprecated/t_cdf.m, deprecated/t_inv.m, |
|
812 deprecated/t_pdf.m, deprecated/t_rnd.m, deprecated/uniform_cdf.m, |
|
813 deprecated/uniform_inv.m, deprecated/uniform_pdf.m, |
|
814 deprecated/uniform_rnd.m, deprecated/weibull_cdf.m, |
|
815 deprecated/weibull_inv.m, deprecated/weibull_pdf.m, |
|
816 deprecated/wiener_rnd.m: New files. |
|
817 |
5408
|
818 2005-07-08 John W. Eaton <jwe@octave.org> |
|
819 |
|
820 * statistics/distributions/weibrnd.m: Rename from weibull_rnd.m. |
|
821 * deprecated/weibull_rnd.m: New file. |
|
822 |
5407
|
823 2005-07-08 cctsim <cctsim@yahoo.co.uk> |
|
824 |
|
825 * strings/dec2base.m: Allow matrix arguments. |
|
826 |
5406
|
827 2005-07-08 John W. Eaton <jwe@octave.org> |
|
828 |
|
829 * plot/__errplot__.m: Use __plot_globals__. |
|
830 * plot/__plt__.m: Likewise. |
|
831 * plot/figure.m: Likewise. |
|
832 |
|
833 * plot/hold.m: New file. |
|
834 * plot/ishold.m: New file. |
|
835 * plot/__plot_globals__.m: New file. |
|
836 |
5400
|
837 2005-07-05 cctsim <cctsim@yahoo.co.uk> |
|
838 |
|
839 * strings/dec2base.m: Don't remove all leading zeros if result is zero. |
|
840 |
|
841 2005-07-05 John W. Eaton <jwe@octave.org> |
|
842 |
|
843 * strings/findstr.m: Return [] for no matches. |
|
844 |
5399
|
845 2005-06-17 Keith Goodman <kwgoodman@gmail.com> |
|
846 |
|
847 * miscellaneous/tic.m: Fix doc string. |
|
848 |
5395
|
849 2005-06-15 John W. Eaton <jwe@octave.org> |
|
850 |
|
851 * polynomial/polyfit.m: Force return value to be a row vector. |
|
852 |
5393
|
853 2005-06-15 Tom Holroyd <tomh@kurage.nimh.nih.gov> |
|
854 |
|
855 * general/isequal.m: Correct nargin check. |
|
856 |
5388
|
857 2005-06-14 John W. Eaton <jwe@octave.org> |
|
858 |
|
859 * general/isvector.m: Handle N-d arrays. |
|
860 From Bill Denney <denney@seas.upenn.edu>. |
|
861 |
5381
|
862 2005-06-02 Ben Barrowes <barrowes@alum.mit.edu> |
|
863 |
|
864 * plot/meshgrid.m: Handle 3 input arguments. |
5378
|
865 |
5377
|
866 2005-06-02 Paul Kienzle <pkienzle@users.sf.net> |
|
867 |
|
868 * signal/freqz.m: Use correct calculations when given a vector of |
|
869 frequencies. Improve accuracy of returned frequency vector. |
|
870 Improve speed for medium length filters (at a slight cost for slow |
|
871 filters). Add test cases. |
|
872 |
5373
|
873 2005-05-27 "Dmitri A. Sergatskov" <dasergatskov@gmail.com> |
|
874 |
|
875 * plot/loglog.m: Fix set commands. |
|
876 |
5381
|
877 2005-05-25 John W. Eaton <jwe@octave.org> |
|
878 |
|
879 * plot/sombrero.m: Default n to 41 if nargin == 0. |
|
880 |
5371
|
881 2005-05-24 John W. Eaton <jwe@octave.org> |
|
882 |
5373
|
883 * statistics/tests/anova.m: Use mean (y(:)) to compute total_mean. |
|
884 |
5372
|
885 * strings/strncmp.m: New file, from Tom Holroyd |
|
886 <tomh@kurage.nimh.nih.gov>. |
|
887 |
5371
|
888 * strings/strcmp.m: Return logical values in all cases. |
|
889 |
5366
|
890 2005-05-23 John W. Eaton <jwe@octave.org> |
|
891 |
|
892 * plot/orient.m: New file. Adapt to Octave coding style. |
|
893 Texinfoize doc string. |
|
894 |
|
895 * plot/print.m: New file. Adapt to Octave coding style. Include |
|
896 PKG_ADD command. Use set terminal consistently throughout. Use |
|
897 set terminal push/pop and unconditionally set output to screen |
|
898 when done to avoid requiring gget. Use a cell array for dev_list |
|
899 and cellidx to search for items in the list. Delete local |
|
900 variable endl. Don't set and restore automatic_replot. Use {} |
|
901 instead of nth to index varargin. Delete local variable |
|
902 va_arg_cnt. |
|
903 |
5355
|
904 2005-05-18 John W. Eaton <jwe@octave.org> |
|
905 |
|
906 * general/num2str.m: Return early if X is a character string. |
|
907 |
5347
|
908 2005-05-11 John W. Eaton <jwe@octave.org> |
|
909 |
5348
|
910 * strings/findstr.m: Allow non-string arguments for compatiblity. |
|
911 From Tom Holroyd <tomh@kurage.nimh.nih.gov>. |
|
912 |
5347
|
913 * plot/polar.m: Don't call __pltopt__ here. |
|
914 |
5333
|
915 2005-05-02 John W. Eaton <jwe@octave.org> |
|
916 |
|
917 * mkdoc: Print header message. |
|
918 |
5319
|
919 2005-04-28 John W. Eaton <jwe@octave.org> |
|
920 |
|
921 * configure.in (AC_CONFIG_SRCDIR): Look for startup/inputrc, not |
|
922 startup/octaverc. |
|
923 |
5318
|
924 2005-04-28 Stefan van der Walt <stefan@sun.ac.za> |
|
925 |
|
926 * image/imshow.m: Handle various image depths and 3d RGB images. |
|
927 (__im_numeric_limits__): New internal function. |
|
928 |
5317
|
929 2005-04-28 toni saarela <toni.saarela@helsinki.fi> |
|
930 |
|
931 * statistics/tests/anova.m: Compute total_mean as mean of all |
|
932 data, not mean of group_mean. |
|
933 |
|
934 2005-04-28 John W. Eaton <jwe@octave.org> |
|
935 |
|
936 * startup/local-rcfile: New file. |
|
937 * startup/main-rcfile: Rename from startup/octaverc. |
|
938 * startup/Makefile.in (SOURCES): Add inputrc to the list. |
|
939 (install install-strip): Install main-rcfile in $(fcnfiledir)/startup. |
|
940 Install local-rcfile in $(localfcnfiledir)/startup. |
|
941 |
|
942 2005-04-28 Keith Goodman <kwgoodman@gmail.com> |
|
943 |
|
944 * startup/inputrc: New file. |
|
945 * startup/octaverc: Configure readline using inputrc from |
|
946 startupfiledir. |
|
947 * startup/Makefile.in (install, install-strip): Install octaverc |
|
948 in $(fcnfiledir)/startup. |
|
949 |
5310
|
950 2005-04-27 John W. Eaton <jwe@octave.org> |
|
951 |
|
952 * optimization/qp.m: Define n_in after removing -Inf bounds from Ain. |
|
953 |
5289
|
954 2005-04-21 John W. Eaton <jwe@octave.org> |
|
955 |
|
956 * optimization/glpk.m: Handle SENSE argument. |
|
957 |
|
958 * optimization/qp.m, optimization/sqp.m: New files. |
|
959 |
5276
|
960 2005-04-08 John W. Eaton <jwe@octave.org> |
|
961 |
|
962 * Makefile.in (clean, distclean, maintainer-clean): |
|
963 Avoid duplication in rules. |
|
964 |
5252
|
965 2005-03-28 John W. Eaton <jwe@octave.org> |
|
966 |
|
967 * plot/contour.m, plot/mesh.m: Continue to use __gnuplot_raw__ for |
|
968 setting {no,}parametric. |
|
969 * plot/figure.m: Likewise, for setting terminal type. |
|
970 |
|
971 * __axis_label__.m:, plot/axis.m, plot/bottom_title.m, |
|
972 plot/contour.m, plot/figure.m, plot/multiplot.m, plot/mplot.m, |
|
973 plot/plot_border.m, plot/subplot.m, plot/subwindow.m, |
|
974 plot/title.m, plot/top_title.m: Avoid eval. |
|
975 |
5251
|
976 2005-03-28 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
977 |
5253
|
978 * plot/__axis_label__.m, plot/axis.m, plot/grid.m, |
|
979 plot/plot_border.m, plot/replot.m, plot/title.m, plot/top_title.m: |
|
980 Use __gnuplot_replot__ instead of replot. |
|
981 |
5252
|
982 * plot/__axis_label__.m, plot/axis.m, plot/bottom_title.m, |
|
983 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/grid.m, |
|
984 plot/loglogerr.m, plot/loglog.m, plot/mesh.m, plot/mplot.m, |
|
985 plot/multiplot.m, plot/oneplot.m, plot/plot_border.m, plot/plot.m, |
|
986 plot/polar.m, plot/semilogxerr.m, plot/semilogx.m, |
|
987 plot/semilogyerr.m, plot/semilogy.m, plot/shg.m, plot/subplot.m, |
|
988 plot/subwindow.m, plot/title.m, plot/top_title.m: |
5654
|
989 Use __gnuplot_raw__ instead of __gnuplot_set__. |
5252
|
990 |
5251
|
991 * plot/replot.m: Use __gnuplot_replot__, not __greplot__. |
|
992 |
5244
|
993 2005-03-24 John W. Eaton <jwe@octave.org> |
|
994 |
|
995 * optimization/glpkmex.m: Texinfoize Doc string. |
|
996 * optimization/glpk.m: Likewise. |
|
997 Allow VARTYPE and CTYPE to be row or column vectors of characters |
|
998 (row vectors are orginary character strings). |
|
999 * optimization/glpkparam.m: Delete. |
|
1000 |
5243
|
1001 2005-03-24 Quentin Spencer <qspencer@ieee.org> |
|
1002 |
|
1003 * statistics/base/mean.m: Allow DIMS arg greater than the number |
|
1004 of dimensions of X. |
|
1005 |
5237
|
1006 2005-03-23 John W. Eaton <jwe@octave.org> |
|
1007 |
5239
|
1008 * general/tril.m, general/triu.m: Return value of same class as |
|
1009 argument. |
|
1010 |
5237
|
1011 * optimization/glpk.m: Simplify interface. By default, solve |
|
1012 standard LP min C'*x s.t. A*x = b, x >= 0. |
|
1013 * optimization/glpkmex.m: New file. |
|
1014 |
5232
|
1015 2005-03-22 John W. Eaton <jwe@octave.org> |
|
1016 |
5237
|
1017 * configure.in (AC_CONFIG_FILES): Add optimization/Makefile to the |
|
1018 list. |
|
1019 |
5233
|
1020 * optimization/glpk.m: Adapt to Octave coding style. |
|
1021 No need for varargout or varargin. |
|
1022 Print usage message if nargin > 11. |
|
1023 Allow any value of nargout. |
|
1024 Use repmat (C, nr, nc) instead of char (C * ones (nr, nc)). |
|
1025 Avoid looping when checking character classes. |
|
1026 |
5232
|
1027 * optimization: New directory. |
|
1028 * Makefile.in (SUBDIRS): Add it to the list. |
|
1029 * optimization/Makefile.in: New file. |
|
1030 * optimization/glpk.m, optimization/glpkparams.m, |
|
1031 optimization/glpktest1, optimization/glpktest2: New files. |
|
1032 |
5218
|
1033 2005-03-16 Soren Hauberg <soren@hauberg.org> |
|
1034 |
|
1035 * strings/split.m: Quick return for empty second arg. |
|
1036 Improve warning for multi-line strings. |
|
1037 Speed up by avoiding sprintf in loop and eval. |
|
1038 |
5217
|
1039 2005-03-16 Paul Kienzle <pkienzle@users.sf.net> |
|
1040 |
|
1041 * polynomial/polyderiv.m : Accept a*b, a/b. Auto-reduce common terms. |
|
1042 * polynomial/polyder.m: Ditto. |
|
1043 * polynomial/polygcd.m: New function. |
|
1044 |
5214
|
1045 2005-03-16 John W. Eaton <jwe@octave.org> |
|
1046 |
5215
|
1047 * control/base/__stepimp__.m, control/base/bode.m, |
|
1048 control/base/frdemo.m, control/base/nichols.m, |
|
1049 control/base/nyquist.m, control/base/pzmap.m, |
|
1050 control/base/rldemo.m, control/base/rlocus.m, |
|
1051 control/hinf/dhinfdemo.m, control/hinf/hinfdemo.m, |
|
1052 plot/__axis_label__.m, plot/__errplot__.m, plot/__plt__.m, |
|
1053 plot/axis.m, plot/bar.m, plot/bottom_title.m, plot/contour.m, |
|
1054 plot/errorbar.m, plot/figure.m, plot/grid.m, plot/loglog.m, |
|
1055 plot/loglogerr.m, plot/mesh.m, plot/meshgrid.m, plot/mplot.m, |
|
1056 plot/multiplot.m, plot/oneplot.m, plot/plot.m, plot/plot_border.m, |
|
1057 plot/polar.m, plot/semilogx.m, plot/semilogxerr.m, |
|
1058 plot/semilogy.m, plot/semilogyerr.m, plot/shg.m, plot/stairs.m, |
|
1059 plot/subplot.m, plot/subwindow.m, plot/title.m, plot/top_title.m, |
|
1060 plot/xlabel.m, quaternion/demoquat.m, |
|
1061 quaternion/qcoordinate_plot.m, signal/freqz_plot.m, sparse/spy.m, |
|
1062 statistics/base/ppplot.m, statistics/base/qqplot.m: |
|
1063 Use __gnuplot_plot__ instead of gplot, __gnuplot_splot__ instead |
|
1064 of gsplot, and __gnuplot_set__ instead of gset. Remove gplot, |
|
1065 gsplot from @seealso docs. |
5214
|
1066 |
|
1067 * plot/replot.m: New file. |
|
1068 |
5205
|
1069 2005-03-15 David Bateman <dbateman@free.fr> |
|
1070 |
|
1071 * set/unique.m, set/ismember.m: Handle cell arrays. |
|
1072 |
5196
|
1073 2005-03-09 John W. Eaton <jwe@octave.org> |
|
1074 |
|
1075 * statistics/Makefile.in (bin-dist): Delete target. |
|
1076 (BINDISTSUBDIRS): Delete variable. |
|
1077 * scripts/control/Makefile.in: Likewise. |
|
1078 |
5378
|
1079 * audio/Makefile.in (bin-dist): Delete target. |
5196
|
1080 (BINDISTFILES): Delete variable. |
5378
|
1081 * control/base/Makefile.in: Likewise. |
|
1082 * control/hinf/Makefile.in: Likewise. |
|
1083 * control/obsolete/Makefile.in: Likewise. |
|
1084 * control/system/Makefile.in: Likewise. |
|
1085 * control/util/Makefile.in: Likewise. |
|
1086 * deprecated/Makefile.in: Likewise. |
|
1087 * elfun/Makefile.in: Likewise. |
|
1088 * finance/Makefile.in: Likewise. |
|
1089 * general/Makefile.in: Likewise. |
|
1090 * image/Makefile.in: Likewise. |
|
1091 * sparse/Makefile.in: Likewise. |
|
1092 * io/Makefile.in: Likewise. |
|
1093 * plot/Makefile.in: Likewise. |
|
1094 * Makefile.in: Likewise. |
|
1095 * miscellaneous/Makefile.in: Likewise. |
|
1096 * linear-algebra/Makefile.in: Likewise. |
|
1097 * polynomial/Makefile.in: Likewise. |
|
1098 * quaternion/Makefile.in: Likewise. |
|
1099 * set/Makefile.in: Likewise. |
|
1100 * signal/Makefile.in: Likewise. |
|
1101 * specfun/Makefile.in: Likewise. |
|
1102 * special-matrix/Makefile.in: Likewise. |
|
1103 * startup/Makefile.in: Likewise. |
|
1104 * statistics/base/Makefile.in: Likewise. |
|
1105 * statistics/distributions/Makefile.in: Likewise. |
|
1106 * statistics/models/Makefile.in: Likewise. |
|
1107 * statistics/tests/Makefile.in: Likewise. |
|
1108 * strings/Makefile.in: Likewise. |
|
1109 * time/Makefile.in: Likewise. |
5196
|
1110 |
5195
|
1111 2005-03-08 John W. Eaton <jwe@octave.org> |
|
1112 |
|
1113 * general/repmat.m: Correctly diagnose 3-argument non-scalar |
|
1114 dimensions case. From Matthew A Swabey <mas01r@ecs.soton.ac.uk>. |
|
1115 |
5192
|
1116 2005-03-04 John W. Eaton <jwe@octave.org> |
|
1117 |
|
1118 * plot/clg.m: New file. |
|
1119 |
5193
|
1120 2005-03-03 John W. Eaton <jwe@octave.org> |
|
1121 |
|
1122 * general/isequal.m, general/sortrows.m, set/ismember.m, |
|
1123 set/setdiff.m, strings/str2double.m, strings/strmatch.m, |
|
1124 strings/strcmpi.m: |
|
1125 New files from Octave-forge. Adapt to Octave coding standards. |
|
1126 |
5181
|
1127 2005-03-03 Paul Kienzle <pkienzle@users.sf.net> |
|
1128 |
|
1129 * statistics/distributions/binomial_pdf.m: Extend the feasible |
|
1130 computation range. |
|
1131 |
5164
|
1132 2005-02-25 John W. Eaton <jwe@octave.org> |
|
1133 |
|
1134 Sparse merge. |
|
1135 |
|
1136 2005-01-23 David Bateman <dbateman@free.fr> |
|
1137 |
|
1138 * sparse/randperm.m: Delete duplicate randperm.m. |
|
1139 |
|
1140 2005-01-10 John W. Eaton <jwe@octave.org> |
|
1141 |
|
1142 * sparse/Makefile.in: New file. |
|
1143 * configure.in (AC_CONFIG_FILES): Add sparse/Makefile to the list. |
|
1144 |
|
1145 2005-01-07 David Bateman <dbateman@free.fr> |
|
1146 |
|
1147 * set/unique.m: import file from octave-forge. |
|
1148 |
|
1149 2005-01-05 David Bateman <dbateman@free.fr> |
|
1150 |
|
1151 * Makefile.in: include sparse directory in SUBDIRS. |
|
1152 |
|
1153 2004-12-30 John W. Eaton <jwe@octave.org> |
|
1154 |
|
1155 * sparse/nzmax.m: Delete (there is an nzmax function in |
|
1156 src/DLD-FUNCTIONS/sparse.cc). |
|
1157 |
|
1158 2004-12-28 John W. Eaton <jwe@octave.org> |
|
1159 |
|
1160 Merge of sparse code from David Bateman <dbateman@free.fr> and |
|
1161 Andy Adler <adler@site.uottawa.ca>. |
|
1162 |
|
1163 * sparse/colperm.m, sparse/nonzeros.m, sparse/nzmax.m, |
|
1164 sparse/randperm.m, sparse/spalloc.m, sparse/spconvert.m, |
|
1165 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/sphcat.m, |
|
1166 sparse/spones.m, sparse/sprand.m, sparse/sprandn.m, |
|
1167 sparse/spstats.m, sparse/spvcat.m, sparse/spy.m: New files. |
|
1168 |
|
1169 * sparse: New directory. |
|
1170 |
5158
|
1171 2005-02-22 John W. Eaton <jwe@octave.org> |
|
1172 |
|
1173 * polynomial/residue.m: Force prepad to always create row vectors. |
|
1174 |
|
1175 * polynomial/poly.m: Quick return if m is 0. |
|
1176 From Carmen Navarrete <carmen.navarrete@uam.es>. |
|
1177 |
5154
|
1178 2005-02-21 David Bateman <dbateman@free.fr> |
|
1179 |
|
1180 * statistics/distributions/poisson_rnd.m: fix for lambda of zero. |
|
1181 From Mark van Rossum <mvanross@inf.ed.ac.uk>. |
|
1182 Fix for row vectors with at least one element of lambda not in |
|
1183 (0, Inf). |
|
1184 |
5152
|
1185 2005-02-21 John W. Eaton <jwe@octave.org> |
|
1186 |
5153
|
1187 * statistics/base/qqplot.m: Use feval instead of eval. |
|
1188 |
5152
|
1189 * plot/grid.m, plot/plot_border.m, plot/title.m, plot/top_title.m, |
|
1190 plot/__axis_label__.m: Issue replot command. |
|
1191 |
5135
|
1192 2005-02-09 John W. Eaton <jwe@octave.org> |
|
1193 |
|
1194 * polynomial/polyderiv.m: Force P to be a row vector. |
|
1195 |
5133
|
1196 2005-02-08 John W. Eaton <jwe@octave.org> |
|
1197 |
|
1198 * strings/dec2base.m: Don't delete leading zero if third arg is |
|
1199 provided and len <= computed max_len. |
|
1200 |
5125
|
1201 2005-01-27 David Bateman <dbateman@free.fr> |
|
1202 |
|
1203 * strings/dec2base.m: Be even more careful about handling all digits. |
|
1204 |
|
1205 2005-01-27 Paul Kienzle <pkienzle@users.sf.net> |
|
1206 |
|
1207 * strings/dec2base.m: Use integer arithmetic to count number of digits. |
|
1208 |
5123
|
1209 2005-01-27 Benjamin Hall <benjamin.hall@pw.utc.com> |
|
1210 |
|
1211 * statistics/base/median.m: Make it work for the scalar case too. |
|
1212 |
5117
|
1213 2005-01-25 Daniel J Sebald <daniel.sebald@ieee.org>. |
|
1214 |
|
1215 * plot/__plt__.m: Initialize fmt and sep outside of loop. |
5118
|
1216 Simplify logic for decoding args. |
5117
|
1217 |
5115
|
1218 2005-01-24 John W. Eaton <jwe@octave.org> |
|
1219 |
5116
|
1220 * plot/__plr__.m, plot/__plr2__.m: Pass name of caller to __plt__. |
|
1221 |
|
1222 * plot/__plt__.m: No need to save and reset hold state now. |
|
1223 (first_plot): Delete unused variable. |
|
1224 |
5115
|
1225 * plot/__plr2__.m, plot/__plt2__.m: Improve diagnostics. |
|
1226 |
|
1227 * plot/__plr__.m: Use __plt__, not specific __pltXX__ functions. |
|
1228 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
1229 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
1230 plot/__plt2vv__.m: |
|
1231 Return data and gnuplot commands instead of evaluating them. |
|
1232 * plot/__plt__.m: Handle evaluation of all gnuplot commands here. |
|
1233 Based on changes from Daniel J Sebald <daniel.sebald@ieee.org>. |
|
1234 |
5108
|
1235 2005-01-18 John W. Eaton <jwe@octave.org> |
|
1236 |
|
1237 * linear-algebra/cross.m: Allocate idx1 before use. |
|
1238 |
5096
|
1239 2004-12-08 Heikki Junes <Heikki.Junes@hut.fi> |
|
1240 |
|
1241 * statistics/base/range.m: Fix varargin usage. |
|
1242 |
5091
|
1243 2004-12-02 Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be> |
|
1244 |
|
1245 * strings/deblank.m: Remove all trailing whitespace (check with |
|
1246 isspace), not just SPC. |
|
1247 |
5090
|
1248 2004-12-02 Balint Reczey <balint_reczey@yahoo.com> |
|
1249 |
|
1250 * statistics/base/moment.m: Fix argument parsing for N-d arrays. |
|
1251 |
5073
|
1252 2004-11-09 John W. Eaton <jwe@octave.org> |
|
1253 |
|
1254 * miscellaneous/fileparts.m: Allow filenames with no extension. |
|
1255 From Julius Smith <jos@ccrma.stanford.edu>. |
|
1256 |
5072
|
1257 2004-11-08 John W. Eaton <jwe@octave.org> |
|
1258 |
|
1259 * plot/__plt2vm__.m: Delete debugging statement. |
|
1260 From Dmitri A. Sergatskov <dmitri@unm.edu>. |
|
1261 |
5065
|
1262 2004-11-04 John W. Eaton <jwe@octave.org> |
|
1263 |
|
1264 * plot/hist.m: Always return row vectors for vector args. |
|
1265 |
5031
|
1266 2004-09-23 John W. Eaton <jwe@octave.org> |
|
1267 |
|
1268 * strings/strcmp.m: If args are not strings or cell arrays of |
|
1269 strings, return zero instead of reporting an error. |
|
1270 |
5021
|
1271 2004-09-22 Federico Zenith <zenith@chemeng.ntnu.no> |
|
1272 |
|
1273 * control/base/analdemo.m, control/base/are.m, control/base/bddemo.m, |
|
1274 control/base/controldemo.m, control/base/damp.m, control/base/dare.m, |
|
1275 control/base/dcgain.m, control/base/dgram.m, control/base/dlyap.m, |
|
1276 control/base/dre.m, control/base/frdemo.m, control/base/gram.m, |
|
1277 control/base/impulse.m, control/base/lqp.m, control/base/obsv.m, |
|
1278 control/base/pzmap.m, control/base/rldemo.m, control/hinf/h2norm.m, |
|
1279 control/hinf/hinfsyn.m, control/hinf/hinfsyn_ric.m, |
|
1280 control/hinf/is_dgkf.m, control/system/c2d.m, |
|
1281 control/system/is_detectable.m, control/system/is_sample.m, |
|
1282 control/system/is_siso.m, control/system/is_stable.m, |
|
1283 control/system/ss2sys.m, control/system/ss.m, control/system/sys2ss.m, |
|
1284 control/system/sys2tf.m, control/system/sys2zp.m, |
|
1285 control/system/sysappend.m, control/system/sysconnect.m, |
|
1286 control/system/sysdisc.m, control/system/sysdup.m, |
|
1287 control/system/sysgetsignals.m, control/system/sysmult.m, |
|
1288 control/system/syssetsignals.m, control/system/syssub.m, |
|
1289 control/system/tf2sys.m, control/system/ugain.m, |
|
1290 control/system/zp2ss.m, control/system/zp2sys.m, |
|
1291 control/system/zp2tf.m, control/util/axis2dlim.m, polynomial/roots.m, |
|
1292 special-matrix/toeplitz.m: Fix typos in doc strings. |
|
1293 |
|
1294 * control/base/are.m, control/base/dare.m, control/base/lsim.m, |
|
1295 control/base/ltifr.m, control/base/place.m,control/base/tzero2.m, |
|
1296 control/base/tzero.m, control/hinf/hinf_ctr.m, control/hinf/wgt1o.m, |
|
1297 ontrol/system/is_abcd.m, control/system/parallel.m, |
|
1298 control/system/ss2tf.m, control/system/ss2zp.m, control/system/ss.m, |
|
1299 control/system/sysappend.m, control/system/sysconnect.m, |
|
1300 control/system/sysdup.m, control/system/sysgroup.m, |
|
1301 control/system/sysprune.m, control/system/sysreorder.m, |
|
1302 control/system/sysscale.m, control/system/syssub.m, |
|
1303 control/system/tf2ss.m, control/system/tf2zp.m, control/util/zgfmul.m, |
|
1304 control/util/zginit.m, control/util/zgscal.m, elfun/acoth.m, |
|
1305 polynomial/polyout.m, specfun/log2.m: |
|
1306 Add output arguments in doc strings. |
|
1307 |
|
1308 * control/base/are.m, control/base/bode_bounds, control/base/bode.m, |
|
1309 control/base/__bodquist__.m, control/base/ctrb.m, control/base/dare.m, |
|
1310 control/base/DEMOcontrol.m, control/base/dlyap.m, control/base/dre.m, |
|
1311 control/base/freqchkw.m, control/base/__freqresp__.m, |
|
1312 control/base/__freqresp__.m, control/base/lqp.m, control/base/lqr.m, |
|
1313 contol/base/lsim.m, control/base/lyap.m, control/base/nyquist.m, |
|
1314 control/base/obsv.m, control/base/place.m, control/base/pzmap.m, |
|
1315 control/base/__stepimp__.m, control/base/step.m, control/base/tzero2.m |
|
1316 control/base/tzero.m, control/hinf/dhinfdemo.m, control/hinf/h2norm.m, |
|
1317 control/hinf/h2syn.m, control/hinf/hinfdemo.m, |
|
1318 control/hinf/hinfnorm.m, control/hinf/hinfsyn_chk.m, |
|
1319 control/hinf/hinfsyn.m, control/hinf/is_dgkf.m, |
|
1320 control/obsolete/syschnames.m, control/obsolete/syschnames.m, |
|
1321 control/system/c2d.m, control/system/is_abcd.m, |
|
1322 control/system/is_controllable.m, control/system/is_detectable.m, |
|
1323 control/system/is_observable.m, control/system/is_stable.m, |
|
1324 control/system/jet707.m, control/system/ord2.m, |
|
1325 control/system/starp.m, control/system/sys2fir.m, |
|
1326 control/system/sys2ss.m, control/system/sys2tf.m, |
|
1327 control/system/sys2zp.m, control/system/syscont.m, |
|
1328 control/system/sysdisc.m, control/system/sysdup.m, |
|
1329 control/system/sysgettype.m, control/system/sysgroup.m, |
|
1330 control/system/sysmult.m, control/system/sysprune.m, |
|
1331 control/system/sysreorder.m, control/system/sysscale.m, |
|
1332 control/system/syssetsignals.m, control/system/sysupdate.m, |
|
1333 control/system/tf2ss.m, control/system/tf2sys.m, |
|
1334 control/system/zp2ss.m, control/system/zp2sys.m, |
|
1335 control/util/axis2dlim.m, control/util/prompt.m, |
|
1336 control/util/zgfmul.m, control/util/zginit.m, |
|
1337 control/util/__zgpbal__.m, control/util/zgscal.m: |
|
1338 Use @var, @strong, @command, @math, @acronym, @table and @cite |
|
1339 in doc strings. |
|
1340 |
|
1341 * control/base/bode_bounds.m, control/base/ctrb.m, control/base/dre.m, |
|
1342 control/base/dgram.m, control/base/dlyap.m, control/base/ltifr.m, |
|
1343 control/base/nyquist.m, control/base/obsv.m, control/base/tzero.m, |
|
1344 control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, |
|
1345 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
|
1346 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, |
|
1347 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, |
|
1348 control/hinf/wgt1o.m, control/obsolete/syschnames.m, |
|
1349 control/system/c2d.m, control/system/fir2sys.m, |
|
1350 control/system/is_stabilizable.m, control/system/jet707.m, |
|
1351 control/system/ord2.m, control/system/ss2tf.m, control/system/tf2ss.m, |
|
1352 control/util/zgshsr.m, polynomial/polyout.m: |
|
1353 New @tex section(s) in doc strings for better formating of printed |
|
1354 output. |
|
1355 |
|
1356 * control/base/__freqresp__.m, control/base/nyquist.m, |
|
1357 control/base/__stepimp__.m, control/hinf/hinfdemo.m, |
|
1358 control/obsolete/syschnames.m, control/system/sysprune.m: |
|
1359 Use proper double quote marks for TeX. |
|
1360 |
|
1361 * control/base/DEMOcontrol.m: Add missing ; |
|
1362 |
|
1363 * control/base/nichols.m, control/base/rlocus.m, |
|
1364 control/obsolete/minfo.m, control/system/is_digital.m, |
|
1365 control/system/ss2zp.m, control/system/sysmin.m, |
|
1366 control/system/tf2zp.m, control/util/sortcom.m: |
|
1367 Convert documentation to use or more completely use Texinfo. |
|
1368 |
|
1369 * control/base/rlocus.m, control/hinf/dhinfdemo.m, |
|
1370 control/hinf/hinfdemo.m, control/system/ord2.m, |
|
1371 control/system/parallel.m, control/system/ss2tf.m, |
|
1372 control/system/starp.m: Use "@group ... @end group" to avoid ascii |
|
1373 art splitting over a page boundary. |
|
1374 |
|
1375 * control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, |
|
1376 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
|
1377 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, |
|
1378 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, |
|
1379 control/hinf/wgt1o.m, control/system/buildssic.m: |
|
1380 Use {\cal H}_\infty for H-infinity and likewise for H-2 to |
|
1381 the TeX documentation. |
|
1382 |
|
1383 * control/system/is_stabilizable.m: |
|
1384 Add Copyright so that help is displayed correctly. |
|
1385 |
|
1386 * special-matrix/vander.m: Octave indexes start at 1. |
|
1387 |
5011
|
1388 2004-09-21 David Bateman <dbateman@free.fr> |
|
1389 |
|
1390 * general/rotdim.m: New function for rotation of an N-d array in an |
|
1391 arbitrary plane. |
|
1392 |
|
1393 * general/flipdim.m: New function to flip an N-d array about an |
|
1394 arbitrary axis. |
|
1395 |
5003
|
1396 2004-09-15 David Bateman <dbateman@free.fr> |
|
1397 |
|
1398 * general/bitget.m: Replace Bmax, which is undefined with bitmax |
|
1399 |
4992
|
1400 2004-09-15 John W. Eaton <jwe@octave.org> |
|
1401 |
|
1402 * strings/strcmp.m: Fix typo in cell/string array case. |
4993
|
1403 Use iscellstr to check for cells rather than iscell. |
|
1404 Improve diagnostics for invalid args. |
4992
|
1405 |
4983
|
1406 2004-09-10 David Bateman <dbateman@free.fr> |
|
1407 |
|
1408 * statistics/distributions/binomial_rnd.m: Fix error for scalar n |
|
1409 and p with n > 1, and fix for matrix n and p with n == 1. |
|
1410 |
|
1411 * statistics/distributions/poisson_rnd.m: Fix for matrix length, |
|
1412 due to row vs. column vector operations. |
|
1413 |
4964
|
1414 2004-09-03 David Bateman <dbateman@free.fr> |
|
1415 |
|
1416 * general/repmat.m: Fix to allow logical classes. |
|
1417 |
4950
|
1418 2004-08-31 John W. Eaton <jwe@octave.org> |
|
1419 |
|
1420 * general/isa.m: New function, from Octave-forge. |
|
1421 |
|
1422 2004-08-31 David Bateman <dbateman@free.fr> |
|
1423 |
|
1424 * general/bitcmp.m, general/bitget.m, general/bitset.m: Remove |
|
1425 limitation on the use of int64 and uint64 types, and the use |
|
1426 of the eval. |
|
1427 |
|
1428 * general/bitset.m: Remove superfluous cast to return type, as bug |
|
1429 in .^ with integer types is fixed. |
|
1430 |
|
1431 * general/repmat.m: Adapt to allow integer types. |
4945
|
1432 |
|
1433 2004-08-31 Paul Kienzle <pkienzle@users.sf.net> |
|
1434 |
|
1435 * plot/axis.m: Don't reset axes when querying them. |
|
1436 |
4942
|
1437 2004-08-27 David Bateman <dbateman@free.fr> |
|
1438 |
|
1439 * statistics/base/ranks.m: Handle non-consecutive ties. |
|
1440 Eliminate loop. |
|
1441 |
4918
|
1442 2004-07-27 David Bateman <dbateman@free.fr> |
|
1443 |
|
1444 * general/num2str.m: Also insert spaces in output when precision |
|
1445 argument is supplied. |
|
1446 |
4915
|
1447 2004-07-23 David Bateman <dbateman@free.fr> |
|
1448 |
|
1449 * general/bitcmp.m, general/bitget.m, general/bitset.m: New functions. |
|
1450 |
4911
|
1451 2004-07-22 Etienne Grossmann <etienne@cs.uky.edu> |
|
1452 |
|
1453 * general/sub2ind.m: Make reshaping index list unnecessary. |
|
1454 |
|
1455 2004-07-22 Paul Kienzle <pkienzle@users.sf.net> |
|
1456 |
|
1457 * miscellaneous/unix.m: Fix doc string. |
|
1458 |
|
1459 2004-07-22 Stefan van der Walt <stefan@sun.ac.za> |
|
1460 |
|
1461 * plot/figure.m: Clarification of documentation. |
|
1462 |
|
1463 * image/imshow.m: Warn for complex images. |
|
1464 Only estimate colourmap for images in [0, 65536]. |
|
1465 |
|
1466 2004-07-22 David Bateman <dbateman@free.fr> |
|
1467 |
|
1468 * general/num2str.m: Fix the case of an all zero input. |
|
1469 |
4906
|
1470 2004-06-22 Etienne Grossmann <etienne@cs.uky.edu> |
|
1471 |
|
1472 * general/ind2sub.m: Doc fix. |
|
1473 |
4900
|
1474 2004-06-08 John W. Eaton <jwe@octave.org> |
|
1475 |
|
1476 * statistics/tests/kolmogorov_smirnov_test.m: Use func2str to |
|
1477 convert function handle to string for eval. |
|
1478 |
4898
|
1479 2004-06-04 Paul Kienzle <pkienzle@users.sf.net> |
|
1480 |
|
1481 * plot/errorbar.m: Remove debugging output. |
|
1482 |
|
1483 2004-06-03 Stefan van der Walt <stefan@sun.ac.za> |
|
1484 |
|
1485 * plot/__pltopt__.m: Properly escape @ symbols in doc string. |
|
1486 |
4897
|
1487 2004-06-03 Paul Kienzle <pkienzle@users.sf.net> |
|
1488 |
4898
|
1489 * deprecated/com2str.m: Include 'i' suffix for pure imaginary numbers. |
|
1490 |
|
1491 * polynomial/polyout.m: Use parenthesis if necessary around |
|
1492 complex polynomial coefficient. |
|
1493 |
4897
|
1494 * plot/__errcomm__.m, plot/__errplot__.m: Simplify code and fix |
|
1495 the bug which causes __errplot__ to ignore the last argument. |
|
1496 |
4894
|
1497 2004-06-03 David Bateman <dbateman@free.fr> |
|
1498 |
|
1499 * general/shiftdim.m: New function based on JWE code snippet. |
|
1500 |
|
1501 * general/circdim.m: New function. |
|
1502 |
4890
|
1503 2004-05-06 David Bateman <dbateman@free.fr> |
|
1504 |
|
1505 * general/issquare.m: Fail if ndim(x) > 2. |
|
1506 |
|
1507 * linear-algebra/norm.m, linear-algebra/norm.m: Fail if ndim(x) > 2. |
|
1508 |
|
1509 * linear-alegbra/cross.m, linear-algebra/dot.m: Allow matrix and |
|
1510 N-d array arguments. Add optional dim argument to define |
|
1511 dimension along which to operate. |
|
1512 |
|
1513 * linear-algebra/dmult.m: Allow N-d arrays. |
|
1514 |
|
1515 * linear-algebra/vec.m: Use v(:) and not reshape. |
|
1516 |
4885
|
1517 2004-04-29 David Bateman <dbateman@free.fr> |
|
1518 |
|
1519 * statistics/base/ranks.m, statistics/base/run_count.m, |
|
1520 statistics/base/studentize.m, statistics/base/kurtosis.m |
|
1521 statistics/base/statistics.m, statistics/base/skewness.m |
|
1522 statistics/base/iqr.m: |
|
1523 Make N-d array aware. Allow optional argument to define the |
|
1524 dimension along which to operate. Update the documentation. |
|
1525 |
|
1526 * statistics/base/ranks.m: Change algorithm to use sort, |
|
1527 and adjust for the ties after. |
|
1528 |
|
1529 * statistics/base/run_counts.m: Change algorithm to use |
|
1530 the a combination of diff and find, rather than a for-loop. |
|
1531 |
4881
|
1532 2004-04-23 Paul Kienzle <pkienzle@users.sf.net> |
|
1533 |
|
1534 * plot/hist.m: Correctly determine cutoffs. New tests. |
|
1535 |
4878
|
1536 2004-04-23 David Bateman <dbateman@free.fr> |
|
1537 |
|
1538 * general/int2str.m: Treat only real part of argument, and treat |
|
1539 NDArrays by stacking the slices through the matrix vertically. |
|
1540 |
|
1541 * general/num2str.m: Improve format of integer matrices, and the |
|
1542 conversion of complex matrices added. Treat NDArrays by stacking |
|
1543 the slices through the matrix vertically. |
|
1544 |
|
1545 * deprecated/com2str.m: Moved here from general subdirectory. |
|
1546 |
4877
|
1547 2004-04-22 John W. Eaton <jwe@octave.org> |
|
1548 |
|
1549 * quaternion/qtransvmat.m: Use continuation characters to make |
|
1550 sure result is a matrix instead of a vector. From <aklark@atdot.it>. |
|
1551 |
4869
|
1552 2004-04-21 David Bateman <dbateman@free.fr> |
|
1553 |
5378
|
1554 * elfun/lcm.m: Make N-d aware. |
4870
|
1555 |
4869
|
1556 * general/diff.m: Make the code N-d array aware. Allow an |
|
1557 optional argument to define the dimension along which to perform |
|
1558 the differences and allow the order of the differences to be larger |
|
1559 than the dimension itself. |
|
1560 |
|
1561 * general/rot90.m, general/fliplr.m, general/flipud.m: Limit the |
|
1562 use of these functions to 1- and 2-d arrays. |
|
1563 |
4863
|
1564 2004-04-16 John W. Eaton <jwe@octave.org> |
|
1565 |
|
1566 * elfun/gcd.m: Delete. |
|
1567 |
4862
|
1568 2004-04-15 David Bateman <dbateman@free.fr> |
|
1569 |
|
1570 * set/create_set.m, general/is_duplicate_entry.m: Make N-d array aware. |
|
1571 |
|
1572 * general/shift.m, general/prepad.m, general/postpad.m: Make N-d |
|
1573 array aware and and optional argument for the dimension along |
|
1574 which to operate. |
|
1575 |
5378
|
1576 * signal/unwrap.m: Make N-d array aware and fix optional |
4862
|
1577 argument for the dimension to be consistent with other N-d array |
|
1578 functions. |
|
1579 |
4860
|
1580 2004-04-08 David Bateman <dbateman@free.fr> |
|
1581 |
|
1582 * statistics/distributions/discrete_cdf.m, |
|
1583 statistics/distributions/discrete_inv.m, |
|
1584 statistics/distributions/discrete_pdf.m, |
|
1585 statistics/distributions/discrete_rnd.m, |
|
1586 statistics/distributions/exponential_cdf.m, |
|
1587 statistics/distributions/exponential_inv.m, |
|
1588 statistics/distributions/exponential_pdf.m, |
|
1589 statistics/distributions/exponential_rnd.m, |
|
1590 statistics/distributions/f_cdf.m, |
|
1591 statistics/distributions/f_inv.m, |
|
1592 statistics/distributions/f_pdf.m, |
|
1593 statistics/distributions/f_rnd.m, |
|
1594 statistics/distributions/geometric_cdf.m, |
|
1595 statistics/distributions/geometric_inv.m, |
|
1596 statistics/distributions/geometric_pdf.m, |
|
1597 statistics/distributions/geometric_rnd.m, |
|
1598 statistics/distributions/hypergeometric_rnd.m, |
|
1599 statistics/distributions/kolmogorov_smirnov_cdf.m, |
|
1600 statistics/distributions/laplace_cdf.m, |
|
1601 statistics/distributions/laplace_inv.m, |
|
1602 statistics/distributions/laplace_pdf.m, |
|
1603 statistics/distributions/laplace_rnd.m, |
|
1604 statistics/distributions/logistic_inv.m, |
|
1605 statistics/distributions/logistic_rnd.m, |
|
1606 statistics/distributions/lognormal_cdf.m, |
|
1607 statistics/distributions/lognormal_inv.m, |
|
1608 statistics/distributions/lognormal_pdf.m, |
|
1609 statistics/distributions/lognormal_rnd.m, |
|
1610 statistics/distributions/pascal_cdf.m, |
|
1611 statistics/distributions/pascal_inv.m, |
|
1612 statistics/distributions/pascal_pdf.m, |
|
1613 statistics/distributions/pascal_rnd.m, |
|
1614 statistics/distributions/poisson_cdf.m, |
|
1615 statistics/distributions/poisson_inv.m, |
|
1616 statistics/distributions/poisson_pdf.m, |
|
1617 statistics/distributions/poisson_rnd.m, |
|
1618 statistics/distributions/t_cdf.m, |
|
1619 statistics/distributions/t_inv.m, |
|
1620 statistics/distributions/t_pdf.m, |
|
1621 statistics/distributions/t_rnd.m, |
|
1622 statistics/distributions/weibull_cdf.m, |
|
1623 statistics/distributions/weibull_inv.m, |
|
1624 statistics/distributions/weibull_pdf.m, |
|
1625 statistics/distributions/weibull_rnd.m: |
|
1626 Allow N-d arrays. |
|
1627 |
|
1628 * statistics/distributions/discrete_inv.m: Fix bug in indexing, |
|
1629 that results in NaN in places where it should not have had. |
|
1630 |
|
1631 * statistics/distributions/discrete_rnd.m: New argument formats to |
|
1632 allow creating arbitrary matrices, compatiable with the other |
5583
|
1633 *_rnd.m functions. Maintain compatibility with previous format. |
4860
|
1634 |
|
1635 * statistics/distributions/empirical_rnd.m: New argument formats |
|
1636 to allow creating arbitrary matrices, compatiable with the other |
5583
|
1637 *_rnd.m functions. Maintain compatibility with previous |
4860
|
1638 format. Allow N-d arrays. |
|
1639 |
|
1640 * statistics/distributions/hypergeometric_cdf.m, |
|
1641 statistics/distributions/hypergeometric_inv.m, |
|
1642 statistics/distributions/hypergeometric_pdf.m, |
|
1643 statistics/distributions/wiener_rnd.m: |
|
1644 Error for non-scalar arguments. |
|
1645 |
|
1646 * statistics/distributions/pascal_rnd.m: |
|
1647 Correct for n = 1 bug, where all elements were equal. |
|
1648 |
4849
|
1649 2004-04-06 David Bateman <dbateman@free.fr> |
|
1650 |
4854
|
1651 * general/common_size.m, miscellaneous/bincoeff.m, |
|
1652 statistics/distributions/beta_cdf.m, |
|
1653 statistics/distributions/beta_inv.m, |
|
1654 statistics/distributions/beta_pdf.m, |
|
1655 statistics/distributions/beta_rnd.m, |
|
1656 statistics/distributions/binomial_cdf.m, |
|
1657 statistics/distributions/binomial_inv.m, |
|
1658 statistics/distributions/binomial_pdf.m, |
|
1659 statistics/distributions/binomial_rnd.m, |
|
1660 statistics/distributions/cauchy_cdf.m, |
|
1661 statistics/distributions/cauchy_inv.m, |
|
1662 statistics/distributions/cauchy_pdf.m, |
|
1663 statistics/distributions/cauchy_rnd.m, |
|
1664 statistics/distributions/chisquare_cdf.m, |
|
1665 statistics/distributions/chisquare_inv.m, |
|
1666 statistics/distributions/chisquare_pdf.m, |
|
1667 statistics/distributions/chisquare_rnd.m, |
|
1668 statistics/distributions/gamma_cdf.m, |
|
1669 statistics/distributions/gamma_inv.m, |
|
1670 statistics/distributions/gamma_pdf.m, |
|
1671 statistics/distributions/gamma_rnd.m, |
|
1672 statistics/distributions/normal_cdf.m, |
|
1673 statistics/distributions/normal_inv.m, |
|
1674 statistics/distributions/normal_pdf.m, |
|
1675 statistics/distributions/normal_rnd.m, |
|
1676 statistics/distributions/stdnormal_cdf.m, |
|
1677 statistics/distributions/stdnormal_pdf.m, |
|
1678 statistics/distributions/stdnormal_rnd.m, |
|
1679 statistics/distributions/uniform_cdf.m, |
|
1680 statistics/distributions/uniform_inv.m, |
|
1681 statistics/distributions/uniform_pdf.m, |
|
1682 statistics/distributions/uniform_rnd.m: |
|
1683 Allow the inputs to be N-d arrays. |
|
1684 |
4852
|
1685 * statistics/base/var.m: Update for N-d arrays. Allow dimension arg. |
|
1686 * statistics/base/median.m: Likewise. |
4849
|
1687 |
4844
|
1688 2004-04-02 David Bateman <dbateman@free.fr> |
|
1689 |
|
1690 * statistics/base/std.m: Allow optional args for type and dim. |
4847
|
1691 * statistics/base/center.m, statistics/base/meansq.m, |
|
1692 statistics/base/moment.m, statistics/base/range.m: |
4852
|
1693 Update for N-d arrays. |
4844
|
1694 * signal/fftshift.m: Fix dimensioning error. |
|
1695 |
|
1696 * statistics/base/std.m: Use repmat not ones(nr,1)*mean to allow |
4852
|
1697 N-d arrays. |
4844
|
1698 |
4852
|
1699 * general/mod.m, general/mod.m: Allow N-d arrays with one scalar arg. |
|
1700 |
|
1701 * signal/fftshift.m: Update for N-d arrays, allow optional dim arg. |
4844
|
1702 |
4852
|
1703 * specfun/erfinv.m, general/repmat.m: Update for N-d arrays. |
4844
|
1704 |
|
1705 * control/base/bode.m, control/base/lqg.m, control/system/ss2sys.m, |
|
1706 control/system/cellidx.m, control/system/dmr2d.m control/system/ss.m, |
|
1707 control/system/sysprune.m: Doc update for usage of cell arrays. |
|
1708 |
|
1709 * control/system/sysidx.m: Use cellidx and not listidx. |
|
1710 |
4841
|
1711 2004-03-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1712 |
|
1713 * plot/__pltopt1__.m: Always add title clause to plot command with |
|
1714 default of "" (so it is off unless explicitly set by the user). |
|
1715 |
4836
|
1716 2004-03-12 Stefan van der Walt <stefan@sun.ac.za> |
|
1717 |
|
1718 * image/imshow.m: Accept "truesize" argument. |
|
1719 Ignore current colormap. New tests and demos. |
|
1720 |
4834
|
1721 2004-03-10 Volker Kuhlmann <VolkerKuhlmann@gmx.de> |
|
1722 |
|
1723 * signal/sinewave.m: Allow N to default to M. |
|
1724 |
4826
|
1725 2004-03-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1726 |
|
1727 * signal/unwrap.m: Use "isempty (tol)" instead of "tol == []". |
|
1728 |
4818
|
1729 2004-03-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1730 |
|
1731 * general/deal.m: New function. |
4819
|
1732 Add tests from Paul Kienzle. |
4818
|
1733 |
4811
|
1734 2004-03-03 Stefan van der Walt <stefan@sun.ac.za> |
|
1735 |
|
1736 * plot/hist.m: Compute histogram correctly for n>=30. |
|
1737 |
5095
|
1738 2004-03-02 Paul Kienzle <pkienzle@users.sf.net> |
4807
|
1739 |
|
1740 * signal/sinc.m: Use i(:) instead of i when checking for any nonzeros. |
|
1741 |
4806
|
1742 2004-03-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1743 |
|
1744 * miscellaneous/horzcat.m: Delete. |
|
1745 * miscellaneous/vertcat.m: Delete. |
|
1746 |
4790
|
1747 2004-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1748 |
|
1749 * plot/figure.m: Also look for GNUTERM in the environment and use |
|
1750 that if it is set (for OS X). From Per Persson <persquare@mac.com>. |
|
1751 |
4789
|
1752 2004-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1753 |
|
1754 * control/base/__stepimp__.m: Only call clearplot if we will be |
|
1755 doing multiple plots in the same gnuplot frame. |
|
1756 |
4780
|
1757 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1758 |
|
1759 * control/system/__sysconcat__.m, control/system/__tfl__.m, |
|
1760 control/system/cellidx.m, control/system/ss.m, |
|
1761 control/system/tf.m, control/system/zp.m: New functions. |
|
1762 |
4778
|
1763 2004-02-16 Glenn Golden <gdg@zplane.com> |
|
1764 |
|
1765 * statistics/distributions/discrete_inv.m: |
|
1766 Reduce memory requirements. |
|
1767 |
4772
|
1768 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1769 |
|
1770 * plot/__errcomm__.m: Fix thinko in previous change. |
|
1771 From Teemu Ikonen <tpikonen@pcu.helsinki.fi>. |
|
1772 |
4771
|
1773 2004-02-16 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
|
1774 |
|
1775 * control/base/__bodquist__.m, control/base/__stepimp__.m, |
|
1776 control/base/analdemo.m, control/base/bddemo.m, |
|
1777 control/base/bode.m, control/base/dre.m, control/base/frdemo.m, |
|
1778 control/base/lqg.m, control/base/nyquist.m, control/base/place.m, |
|
1779 control/base/rldemo.m, control/base/rlocus.m, |
|
1780 control/base/tzero.m, control/hinf/dgkfdemo.m, |
|
1781 control/hinf/dhinfdemo.m, control/hinf/h2syn.m, |
|
1782 control/hinf/hinf_ctr.m, control/hinf/hinfsyn.m, |
|
1783 control/hinf/wgt1o.m, control/obsolete/dlqg.m, |
|
1784 control/obsolete/packsys.m, control/obsolete/series.m, |
|
1785 control/system/__sysdefioname__.m, |
|
1786 control/system/__sysdefstname__.m, control/system/__sysgroupn__.m, |
|
1787 control/system/__tf2sysl__.m, control/system/buildssic.m, |
|
1788 control/system/c2d.m, control/system/d2c.m, |
|
1789 control/system/dmr2d.m, control/system/fir2sys.m, |
|
1790 control/system/is_signal_list.m, control/system/is_siso.m, |
|
1791 control/system/jet707.m, control/system/listidx.m, |
|
1792 control/system/moddemo.m, control/system/ord2.m, |
|
1793 control/system/packedform.m, control/system/parallel.m, |
|
1794 control/system/ss2sys.m, control/system/sys2tf.m, |
|
1795 control/system/sys2zp.m, control/system/sysadd.m, |
|
1796 control/system/sysappend.m, control/system/sysconnect.m, |
|
1797 control/system/syscont.m, control/system/sysdimensions.m, |
|
1798 control/system/sysdisc.m, control/system/sysdup.m, |
|
1799 control/system/sysgetsignals.m, control/system/sysgettype.m, |
|
1800 control/system/sysgroup.m, control/system/sysmin.m, |
|
1801 control/system/sysmult.m, control/system/sysprune.m, |
|
1802 control/system/sysrepdemo.m, control/system/sysscale.m, |
|
1803 control/system/syssetsignals.m, control/system/syssub.m, |
|
1804 control/system/sysupdate.m, control/system/tf2sys.m, |
|
1805 control/system/ugain.m, control/system/zp2ss.m, |
|
1806 control/system/zp2sys.m, control/util/__outlist__.m, |
|
1807 control/util/__zgpbal__.m, control/util/strappend.m: |
|
1808 Use cell arrays instead of lists. |
|
1809 |
4723
|
1810 2004-01-23 Stefan van der Walt <stefan@sun.ac.za> |
|
1811 |
|
1812 * plot/bar.m: Increase size of cutoff vector from xlen-1 to xlen |
|
1813 so that bar (1, 1) will work. |
|
1814 |
4710
|
1815 2004-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1816 |
4717
|
1817 * plot/__errcomm__.m: Cope with nargin now being a function. |
|
1818 * plot/__errplot__.m: Likewise. |
|
1819 * plot/__plt__.m: Likewise. |
|
1820 * plot/plot_border.m: Likewise. |
|
1821 |
4710
|
1822 * Makefile.in (distclean, maintainer-clean): Remove DOCSTRINGS, |
|
1823 not $(DOCSTRINGS). |
|
1824 |
4706
|
1825 2004-01-21 Quentin Spencer <qspencer@ieee.org> |
|
1826 |
|
1827 * linear-algebra/rank.m: Allow rank ([]) to return 0, same as |
|
1828 rank ([], tol). |
|
1829 |
4691
|
1830 2004-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1831 |
4692
|
1832 * elfun/acot.m: Return atan (1./z). |
|
1833 From Gregory Vanuxem <g.vanuxem@wanadoo.fr>. |
|
1834 |
4691
|
1835 * miscellaneous/dir.m: New file. |
|
1836 |
|
1837 * general/num2str.m: Use "%d" as format if values are ints with |
|
1838 magnitude less than 1e10. |
|
1839 |
|
1840 2004-01-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1841 |
|
1842 * general/num2str.m: If single arg is string, return it. |
|
1843 |
|
1844 * miscellaneous/not.m: New file. |
|
1845 |
|
1846 * miscellaneous/unix.m: New file. |
|
1847 |
|
1848 * miscellaneous/isunix.m: New file. |
|
1849 * miscellaneous/ispc.m: New file. |
|
1850 |
|
1851 * miscellaneous/computer.m: New file. |
|
1852 |
|
1853 * miscellaneous/delete.m: New file. |
|
1854 |
4689
|
1855 2004-01-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1856 |
|
1857 * statistics/tests/kolmogorov_smirnov_test_2.m: Fix test for ties. |
|
1858 |
|
1859 2004-01-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1860 |
|
1861 * miscellaneous/path.m: Handle DEFAULT_LOADPATH substitution. |
|
1862 Always return substituted version of LOADPATH if nargout != 0. |
|
1863 |
4685
|
1864 2003-12-21 Schloegl Alois <alois.schloegl@tugraz.at> |
|
1865 |
|
1866 * miscellaneous/fullfile.m: If filename is empty, set it to "." |
|
1867 before continuing. |
|
1868 |
|
1869 * miscellaneous/fileparts.m: Allow name to start with ".". |
|
1870 |
4677
|
1871 2003-12-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1872 |
|
1873 * general/ind2sub.m: New file. |
|
1874 * general/sub2ind.m: New file. |
|
1875 |
4675
|
1876 2003-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1877 |
|
1878 * control/system/zp2ss.m: Don't save and restore |
|
1879 warn_empty_list_elements. |
|
1880 |
|
1881 2003-12-15 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
|
1882 |
|
1883 * control/system/zp2ss.m: Correct definition of pure gain system. |
|
1884 |
4673
|
1885 2003-12-10 Quentin Spencer <qspencer@ieee.org> |
|
1886 |
|
1887 * statistics/base/mean.m: Remove special case for row vectors. |
|
1888 |
4637
|
1889 2003-11-19 Quentin Spencer <qspencer@ieee.org> |
|
1890 |
|
1891 * signal/freqz_plot.m: Save and restore automatic_replot too. |
|
1892 |
4631
|
1893 2003-11-18 Danilo Piazzalunga <danilopiazza@libero.it> |
|
1894 |
|
1895 * statistics/base/iqr.m: Handle matrices. |
|
1896 |
4630
|
1897 2003-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1898 |
|
1899 * general/issymmetric.m: Don't fail if norm (x) == 0. |
|
1900 |
4629
|
1901 2003-11-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1902 |
|
1903 * miscellaneous/path.m: Fix thinko in previous change. |
|
1904 |
4609
|
1905 2003-11-14 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
|
1906 |
4629
|
1907 * control/base/dare.m: Check positive (semi)definiteness and |
|
1908 dimensions of r (and q). |
|
1909 * control/base/dlqr.m: Check stabilizability of (A,B), |
|
1910 detectability of (A,Q), and whether (A,Q) has non minimal modes |
|
1911 near unit circle. |
4611
|
1912 |
|
1913 * control/system/is_detectable.m: Use Hautus Lemma. |
|
1914 Correct the behavior for discrete-time systems. |
|
1915 * control/system/is_stabilizable.m: Likewise. |
|
1916 |
4609
|
1917 * linear-algebra/krylov.m: Return H = [] in Vnrm == 0 case. |
|
1918 |
|
1919 * linear-algebra/krylovb.m: Fix typo in usage message. |
|
1920 |
4610
|
1921 * general/isdefinite.m: New function. |
|
1922 |
4567
|
1923 2003-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1924 |
|
1925 * general/reshape: Delete. |
|
1926 |
4559
|
1927 2003-10-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1928 |
|
1929 * general/numel.m: Delete. |
|
1930 |
4535
|
1931 2003-10-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1932 |
4536
|
1933 * miscellaneous/horzcat.m, miscellaneous/vartcat.m: New files. |
|
1934 |
|
1935 * deprecated/isstr.m: New file. |
4535
|
1936 |
4529
|
1937 2003-10-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1938 |
|
1939 * plot/__axis_label__.m, plot/xlabel.m, plot/ylabel.m, |
|
1940 plot/zlabel.m, plot/title.m: Return a value if nargout > 0. |
|
1941 |
4525
|
1942 2003-10-02 Quentin Spencer <qspencer@ieee.org> |
|
1943 |
|
1944 * statistics/base/mean.m: Fix missing semicolon problem. |
|
1945 |
4503
|
1946 2003-09-08 Al Niessner <Al.Niessner@jpl.nasa.gov> |
|
1947 |
|
1948 * plot/subplot.m: New global variable, __multiplot_scale__. |
|
1949 |
4492
|
1950 2003-08-29 David Castelow <DCastelow@Airspan.com> |
|
1951 |
|
1952 * strings/dec2base.m, strings/dec2bin.m, strings/dec2hex.m: |
|
1953 Allow optional length argument. |
|
1954 |
4491
|
1955 2003-08-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1956 |
|
1957 * polynomial/polyfit.m: Avoid calling flipud. |
|
1958 From Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be>. |
|
1959 Return structure as second output value for improved Matlab |
|
1960 compatibility. |
|
1961 |
4476
|
1962 2003-07-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1963 |
4478
|
1964 * linear-algebra/cond.m: Behave as though old built-in variable |
|
1965 propagate_empty_matrices is always 1. Also handle empty matrices |
|
1966 with one non-zero dimension. |
|
1967 |
4476
|
1968 * miscellaneous/dump_prefs.m: Add warn_separator_insert and |
|
1969 warn_single_quote_string to the list. |
4478
|
1970 Delete whitespace_in_literal_matrix and propagate_empty_matrices |
|
1971 from the list. |
4476
|
1972 |
5095
|
1973 2003-07-25 Paul Kienzle <pkienzle@users.sf.net> |
4469
|
1974 |
|
1975 * signal/autocov.m: Transpose result of conj because diag returns |
|
1976 a column vector, not a row vector. |
|
1977 |
|
1978 * audio/playaudio.m, audio/record.m, image/image.m, |
|
1979 miscellaneous/bug_report.m: Protect spaces in filenames |
|
1980 with quotes. |
|
1981 |
4466
|
1982 2003-07-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1983 |
4468
|
1984 * io/printf.m, io/puts.m: Delete. |
|
1985 |
4466
|
1986 * miscellaneous/dump_prefs.m: Delete define_all_return_values and |
|
1987 default_return_value from the list. |
|
1988 Add warn_undefined_return_values to the list. |
|
1989 |
|
1990 |
4464
|
1991 2003-07-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1992 |
|
1993 * miscellaneous/dump_prefs.m: Delete default_global_variable_value |
|
1994 and initialize_global_variables from the list. |
|
1995 |
4460
|
1996 2003-07-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1997 |
4463
|
1998 * image/colormap.m: Don't save and restore default_eval_print_flag. |
|
1999 |
|
2000 * miscellaneous/dump_prefs.m: Delete default_eval_print_flag. |
|
2001 |
|
2002 * control/util/zgshsr.m: Use x OP= y instead of x = x OP y. |
|
2003 * control/system/sys2fir.m: Likewise. |
|
2004 |
|
2005 * control/system/is_siso.m: Use && instead of & where appropriate. |
|
2006 * control/system/__tf2sysl__.m: Likewise. |
|
2007 |
|
2008 * control/system/__tf2sysl__.m: Use end instead of length(X). |
|
2009 |
|
2010 * control/freqchkw.m: Use %-escapes for error instead of num2str |
|
2011 and [] concatenation. |
|
2012 * control/system/sys2fir.m: Likewise. |
|
2013 |
|
2014 * control/base/dgram.m, control/base/freqchkw.m, |
|
2015 control/base/gram.m, control/system/__abcddims__.m, |
|
2016 control/system/__sysdefstname__.m, control/system/__tf2sysl__.m, |
|
2017 control/system/is_sample.m, control/system/is_signal_list.m, |
|
2018 control/system/is_siso.m, control/system/sys2fir.m, |
|
2019 control/system/syschtsam.m, control/system/sysgettsam.m, |
|
2020 control/system/sysgettype.m, control/system/tf2zp.m, |
|
2021 control/system/ugain.m, control/util/prompt.m, |
|
2022 control/util/run_cmd.m, control/util/zgrownorm.m, |
|
2023 control/util/zgshsr.m: |
|
2024 Improve conformance to Octave coding style. |
|
2025 |
4461
|
2026 * miscellaneous/dump_prefs.m: Add warn_resize_on_reange_error to |
|
2027 the list. |
|
2028 Delete resize_on_range_error from the list. |
|
2029 |
4460
|
2030 * control/base/pzmap.m, control/base/place.m, |
|
2031 control/base/__freqresp__.m, control/system/sysappend.m, |
|
2032 control/system/syscont.m, control/system/sysdisc.m, |
|
2033 control/system/sysgroup.m, control/system/tfout.m, |
|
2034 control/system/zp2ss.m, control/system/zpout.m, |
|
2035 control/util/__outlist__.m, signal/arma_rnd.m, general/shift.m, |
|
2036 strings/strcat.m: Save and restore warn_empty_list_elements, not |
|
2037 empty_list_elements_ok. |
|
2038 |
|
2039 * miscellaneous/dump_prefs.m: Add warn_empty_list_elements to the list. |
|
2040 Delete empty_list_elements_ok from the list. |
|
2041 |
4457
|
2042 2003-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2043 |
|
2044 * miscellaneous/dump_prefs.m: Include warn_neg_dim_as_zero in the |
|
2045 list. |
|
2046 Delete treat_neg_dim_as_zero from the list. |
|
2047 |
|
2048 * strings/blanks.m: Don't check treat_neg_dim_as_zero. |
|
2049 |
4451
|
2050 2003-07-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2051 |
4455
|
2052 * general/reshape.m: Omit do_fortran_indexing from doc string (it |
|
2053 was not used in the code in any case). |
|
2054 |
|
2055 * strings/strjust.m: Temporarily set warn_fortran_indexing, not |
|
2056 do_fortran_indexing. |
|
2057 |
4452
|
2058 * statistics/base/moment.m: Temporarily set warn_str_to_num, not |
|
2059 implict_str_to_num_ok. Use unwind_protect block to do it. |
|
2060 |
4451
|
2061 * miscellaneous/dump_prefs.m: Include DEFAULT_EXEC_PATH, |
|
2062 DEFAULT_LOAD_PATH, crash_dumps_octave_core, |
4452
|
2063 sighup_dumps_octave_core, sigterm_dumps_octave_core, |
4455
|
2064 warn_imag_to_real, warn_num_to_str, warn_str_to_num, and |
|
2065 warn_fortran_indexing in the list. |
|
2066 Delete ok_to_lose_imaginary_part, implicit_num_to_str_ok, |
|
2067 implicit_str_to_num_ok, do_fortran_indexing, and |
|
2068 prefer_column_vectors from list. |
4451
|
2069 |
4440
|
2070 2003-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2071 |
|
2072 * Makefile.in (distclean, maintainer-clean): Also remove |
|
2073 gethelp$(BUILD_EXEEXT), $(DOCSTRINGS), and autom4te.cache |
|
2074 directory. |
|
2075 |
5095
|
2076 2003-06-17 Aaron A. King <king@quercus.tiem.utk.edu> |
4430
|
2077 |
|
2078 * plot/hist.m: Don't forget to define n if x is a vector. |
|
2079 |
5095
|
2080 2003-06-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4424
|
2081 |
|
2082 * miscellaneous/fileparts.m: For compatibility with Matlab, |
|
2083 return "." with extension. |
|
2084 |
4422
|
2085 2003-06-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2086 |
|
2087 * control/base/__stepimp__.m, control/base/nichols.m, |
|
2088 control/base/nyquist.m, miscellaneous/dump_prefs.m, |
|
2089 plot/bottom_title.m, plot/mplot.m, plot/multiplot.m, |
|
2090 plot/oneplot.m, plot/plot_border.m, plot/subplot.m, |
|
2091 plot/subwindow.m, plot/top_title.m, signal/freqz_plot.m: |
|
2092 Eliminate gnuplot_has_multiplot (assume it is always true). |
|
2093 |
4413
|
2094 2003-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2095 |
|
2096 * Makefile.in, image/Makefile.in, startup/Makefile.in: Handle DESTDIR. |
|
2097 |
5095
|
2098 2003-05-05 Andy Adler <adler@site.uottawa.ca> |
4407
|
2099 |
|
2100 * plot/hist.m: Improve performance by using different algorithms |
|
2101 depending on number of bins. |
|
2102 |
4404
|
2103 2003-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2104 |
|
2105 * control/system/sysadd.m: If systems are not "tf", convert before |
|
2106 adding. |
|
2107 |
5095
|
2108 2003-05-01 Paul Kienzle <pkienzle@users.sf.net> |
4403
|
2109 |
|
2110 * image/imagesc.m: Accept data limits parameter for colormap. |
|
2111 |
5095
|
2112 2003-04-11 Doug Stewart <dastew@sympatico.ca> |
4375
|
2113 |
|
2114 * control/base/__stepimp__.m: If digital impulse, reduce gain of |
|
2115 the impulse by t_step. |
|
2116 |
4373
|
2117 2003-04-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2118 |
|
2119 * control/base/__bodquist__.m: Don't convert pdbig and fdbig to |
|
2120 column vectors. |
|
2121 |
5095
|
2122 2003-03-24 Quentin Spencer <qspencer@ieee.org> |
4371
|
2123 |
|
2124 * linear-algebra/null.m: Handle empty matrix arg. |
|
2125 |
4369
|
2126 2003-03-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2127 |
|
2128 * general/shift.m: Force empty_list_elements_ok to 1. |
|
2129 |
4358
|
2130 2003-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2131 |
|
2132 * deprecated/struct_contains.m, deprecated/struct_elements.m: |
|
2133 New files. |
|
2134 |
4348
|
2135 2003-02-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2136 |
|
2137 * statistics/tests/kolmogorov_smirnov_test.m: Use str2func to make |
|
2138 function handle to pass to feval. |
|
2139 * statistics/base/qqplot.m: Likewise. |
|
2140 * statistics/base/ppplot.m: Likewise. |
|
2141 * signal/spectral_xdf.m: Likewise. |
|
2142 * signal/spectral_adf.m: Likewise. |
|
2143 |
4340
|
2144 2003-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2145 |
|
2146 * plot/axis.m: Avoid whitespace in literal matrix problem. |
|
2147 |
4334
|
2148 2003-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2149 |
|
2150 * linear-algebra/logm.m: New file. |
|
2151 |
5095
|
2152 2003-02-18 David Bateman <dbateman@free.fr> |
4329
|
2153 |
|
2154 * mkpkgadd: Scan C++ files as well |
|
2155 |
5095
|
2156 2003-02-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4321
|
2157 |
|
2158 * strings/findstr.m: Return empty set for zero-length target. |
|
2159 |
5095
|
2160 2003-02-11 Paul Kienzle <pkienzle@users.sf.net> |
4317
|
2161 |
|
2162 * set/union.m: Preserve the orientation of inputs. |
|
2163 |
4305
|
2164 2003-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2165 |
|
2166 * general/int2str.m: Eliminate leading spaces. |
|
2167 |
4303
|
2168 2003-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2169 |
|
2170 * general/int2str.m: Do a better job with 0, Inf, and NaN, |
|
2171 |
5095
|
2172 2003-01-11 Paul Kienzle <pkienzle@users.sf.net> |
4298
|
2173 |
|
2174 * Makefile.in (gethelp$(BUILD_EXEEXT)): Pass $(BUILD_CXXFLAGS) and |
|
2175 $(BUILD_LDFLAGS) to compiler. |
|
2176 |
4295
|
2177 2003-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2178 |
|
2179 * general/num2str.m: Don't specify field width for scalars. |
|
2180 |
4292
|
2181 2003-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2182 |
|
2183 * Makefile.in (DISTFILES): Don't forget mkpkgadd. |
|
2184 |
4265
|
2185 2003-01-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2186 |
4279
|
2187 * gethelp.cc: Define __USE_STD_IOSTREAM if using Compaq C++. |
|
2188 |
4266
|
2189 * miscellaneous/tempname.m: New file. |
|
2190 |
|
2191 * miscellaneous/tempdir.m: New file. |
|
2192 |
4265
|
2193 * miscellaneous/fullfile.m: New file. |
|
2194 |
4259
|
2195 2003-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2196 |
4264
|
2197 * miscellaneous/fileparts.m: New file. |
|
2198 |
|
2199 * io/beep.m: New file. |
|
2200 |
4260
|
2201 * plot/__pltopt1__.m: Call undo_string_escapes for title part of |
|
2202 format only. |
4259
|
2203 |
4257
|
2204 2003-01-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2205 |
|
2206 * strings/strcmp.m: Handle cell arrays of strings. |
|
2207 |
4229
|
2208 2002-12-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2209 |
|
2210 * general/int2str.m: Handle matrices. |
|
2211 * general/num2str.m: Likewise. |
|
2212 Also handle optional precision, and format args. |
|
2213 |
4225
|
2214 2002-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2215 |
|
2216 * audio/Makefile.in, control/base/Makefile.in, |
|
2217 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
2218 control/system/Makefile.in, elfun/Makefile.in, |
|
2219 finance/Makefile.in, general/Makefile.in, image/Makefile.in, |
|
2220 io/Makefile.in, linear-algebra/Makefile.in, |
|
2221 miscellaneous/Makefile.in, polynomial/Makefile.in, |
|
2222 quaternion/Makefile.in, set/Makefile.in, signal/Makefile.in, |
|
2223 specfun/Makefile.in, special-matrix/Makefile.in, |
|
2224 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
2225 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
2226 strings/Makefile.in, time/Makefile.in, plot/Makefile.in, |
|
2227 deprecated/Makefile.in: Use new do-script-install and |
|
2228 do-script-uninstall macros. |
|
2229 |
|
2230 * mkpkgadd: New script. |
|
2231 |
|
2232 * plot/close.m: New file. |
|
2233 |
4184
|
2234 2002-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2235 |
|
2236 * image/image.m: Use -raw option for xv. |
|
2237 From Remy Bruno <remy.bruno@libertysurf.fr> |
|
2238 |
4172
|
2239 2002-11-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2240 |
4174
|
2241 * control/base/lsim.m: Use approximate test for step size change. |
|
2242 |
4172
|
2243 * signal/bartlett.m: Avoid row/column mismatch error. |
|
2244 |
5095
|
2245 2002-11-12 Paul Kienzle <pkienzle@users.sf.net> |
4171
|
2246 |
|
2247 * statistics/base/var.m: Use better formula for improved accuracy. |
|
2248 |
5095
|
2249 2002-11-04 Nicholas Piper <nick-octave@nickpiper.co.uk> |
4150
|
2250 |
|
2251 * control/base/lsim.m: Correct doc string. |
|
2252 |
5095
|
2253 2002-11-04 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
4150
|
2254 |
|
2255 * control/system/syssub.m: Call tf2sys with Gnum-Hnum, not Gnum+Hnum. |
|
2256 |
4148
|
2257 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2258 |
|
2259 * plot/contour.m: Handle x and y as matrices too. |
|
2260 |
5095
|
2261 2002-11-01 Joseph P. Skudlarek <jskud@jskud.com> |
4148
|
2262 |
|
2263 * plot/contour.m: Fix error and usage messages. |
|
2264 |
4146
|
2265 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2266 |
|
2267 * plot/contour.m: Correct orientation of plot. |
|
2268 |
4139
|
2269 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2270 |
|
2271 * control/base/analdemo.m: Fix typo. |
|
2272 |
5095
|
2273 2002-10-31 Francesco Potorti` <pot@gnu.org> |
4137
|
2274 |
|
2275 * statistics/distributions/discrete_pdf.m: Fix typo. |
|
2276 |
4098
|
2277 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2278 |
|
2279 * mkdoc: Exit immediately on errors. |
|
2280 Exit with error if gethelp does not exist. |
|
2281 |
|
2282 * Makefile.in: Use $(BUILD_EXEEXT) as appropriate. |
|
2283 |
4093
|
2284 2002-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2285 |
|
2286 * Makefile.in (gethelp): Use $(BUILD_CXX), not $(CXX). |
|
2287 |
5095
|
2288 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4079
|
2289 |
|
2290 * statistics/distributions/normal_cdf.m: Handle variance == 0. |
|
2291 * statistics/distributions/normal_pdf.m: Likewise. |
|
2292 * statistics/distributions/normal_inv.m: Likewise. |
|
2293 |
5095
|
2294 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4077
|
2295 |
|
2296 * specfun/erfinv.m: Return NaN for NaN inputs. |
|
2297 |
5095
|
2298 2002-09-26 Jeff Cunningham <jeffrey@cunningham.net> |
4068
|
2299 |
|
2300 * statistics/base/var.m: Handle complex values. |
|
2301 |
4031
|
2302 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2303 |
|
2304 * configure.in (AC_CONFIG_FILES): Add deprecated/Makefile to the |
|
2305 list. |
|
2306 * deprecated/Makefile.in: New file. |
|
2307 |
5095
|
2308 2002-08-09 Paul Kienzle <pkienzle@users.sf.net> |
4031
|
2309 |
|
2310 * statistics/distributions/beta_cdf.m: Replace betai with betainc. |
|
2311 * statistics/distributions/binomial_cdf.m: Likewise. |
|
2312 * statistics/distributions/f_cdf.m: Likewise. |
|
2313 * statistics/distributions/t_cdf.m: Likewise. |
|
2314 |
|
2315 * miscellaneous/bincoeff.m: Replace lgamma with gammaln. |
|
2316 * specfun/beta.m: Likewise. |
|
2317 * special-matrix/invhilb.m: Likewise (but it is only in a comment). |
|
2318 * statistics/distributions/gamma_pdf.m: Likewise. |
|
2319 * statistics/distributions/poisson_pdf.m: Likewise. |
|
2320 |
|
2321 * statistics/distributions/gamma_cdf.m: replace gammai with gammainc |
|
2322 * statistics/distributions/poisson_cdf.m: Likewise. |
|
2323 |
4026
|
2324 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2325 |
4028
|
2326 * deprecated/is_bool.m: New file. |
|
2327 * deprecated/is_complex.m: New file. |
|
2328 * deprecated/is_global.m: New file. |
|
2329 * deprecated/is_list.m: New file. |
|
2330 * deprecated/is_matrix.m: New file. |
|
2331 * deprecated/is_scalar.m: New file. |
|
2332 * deprecated/is_square.m: New file. |
|
2333 * deprecated/is_stream.m: New file. |
|
2334 * deprecated/is_struct.m: New file. |
|
2335 * deprecated/is_symmetric.m: New file. |
|
2336 * deprecated/is_vector.m: New file. |
4030
|
2337 * Change all callers of these functions to use the new names. |
4028
|
2338 |
4029
|
2339 * deprecated: New directory. |
|
2340 * Makefile.in (SUBDIRS): Add it to the list. |
|
2341 |
4026
|
2342 * general/isscalar.m: Rename from is_scalar.m. |
|
2343 * general/issquare.m: Rename from is_square.m. |
|
2344 * general/issymmetric.m: Rename from is_symmetric.m. |
|
2345 * general/isvector.m: Rename from is_vector.m. |
|
2346 |
4022
|
2347 2002-08-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2348 |
|
2349 * statistics/base/mean.m: Allow empty matrices. |
|
2350 Handle DIM arg. |
|
2351 |
5095
|
2352 2002-08-05 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4020
|
2353 |
|
2354 * plot/__errcomm__.m: If format is not specified, default to error |
|
2355 bar format. |
|
2356 |
4011
|
2357 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2358 |
|
2359 * miscellaneous/popen2.m: Use F_SETFL and O_NONBLOCK, not |
|
2360 __F_SETFL__ and __O_NONBLOCK__. |
|
2361 |
|
2362 * image/saveimage.m: Use OCTAVE_VERSION, not __OCTAVE_VERSION__. |
|
2363 * miscellaneous/bug_report.m: Likewise. |
|
2364 |
4007
|
2365 2002-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2366 |
4008
|
2367 * general/mod.m: Use isreal (x), not any (any (imag (x))). |
|
2368 * general/rem.m: Likewise. |
|
2369 |
|
2370 * plot/loglogerr.m: Use varargin instead of old style varargs. |
|
2371 * plot/semilogxerr.m: Likewise. |
4007
|
2372 * plot/semilogyerr.m: Likewise. |
|
2373 |
5095
|
2374 2002-07-25 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4006
|
2375 |
|
2376 * plot/__errcomm__.m: New file. Common functionality for error plots. |
|
2377 * plot/loglogerr.m: New file. Double logarithm plots with errorbars. |
|
2378 * plot/semilogxerr.m: New file. Semilogarithm plots with errorbars. |
|
2379 * plot/semilogyerr.m: New file. Semilogarithm plots with errorbars |
|
2380 |
|
2381 * plot/errorbar.m: Use __errcomm__.m. |
|
2382 * plot/__errplot__.m: Minor cleanups. |
|
2383 * plot/__pltopt__.m: Handle boxxyerrorbars plot style. |
|
2384 * plot/__pltopt1__.m: Likewise. |
|
2385 |
3980
|
2386 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2387 |
3981
|
2388 * general/rem.m: Delete redundant call to usage. |
|
2389 |
3980
|
2390 * general/mod.m: Additional error checks, Texinfoize doc string. |
|
2391 |
5095
|
2392 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3980
|
2393 |
|
2394 * general/mod.m: New function. |
|
2395 |
3979
|
2396 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2397 |
|
2398 * control/system/sysmult.m: Use varargin instead of old style varargs. |
|
2399 * control/system/sysadd.m: Likewise. |
|
2400 * control/system/sysgroup.m: Likewise. |
|
2401 * control/system/syssub.m: Likewise. |
|
2402 * elfun/gcd.m: Likewise. |
|
2403 * elfun/lcm.m: Likewise. |
|
2404 * general/common_size.m: Likewise. |
|
2405 * io/printf.m: Likewise. |
|
2406 * miscellaneous/menu.m: Likewise. |
|
2407 * miscellaneous/path.m: Likewise. |
|
2408 * plot/__errplot__.m: Likewise. |
|
2409 * plot/__plt__.m: Likewise. |
|
2410 * plot/axis.m: Likewise. |
|
2411 * plot/errorbar.m: Likewise. |
|
2412 * plot/mplot.m: Likewise. |
|
2413 * plot/loglog.m: Likewise. |
|
2414 * plot/plot.m: Likewise. |
|
2415 * plot/plot_border.m: Likewise. |
|
2416 * plot/semilogx.m: Likewise. |
|
2417 * plot/semilogy.m: Likewise. |
|
2418 * plot/xlabel.m: Likewise. |
|
2419 * plot/ylabel.m: Likewise. |
|
2420 * plot/zlabel.m: Likewise. |
|
2421 * statistics/base/ppplot.m: Likewise. |
|
2422 * statistics/base/qqplot.m: Likewise. |
|
2423 * statistics/tests/bartlett_test.m: Likewise. |
|
2424 * statistics/tests/kolmogorov_smirnov_test.m: Likewise. |
|
2425 * statistics/tests/kruskal_wallis_test.m: Likewise. |
|
2426 * strings/str2mat.m: Likewise. |
|
2427 * strings/strcat.m: Likewise. |
|
2428 |
5095
|
2429 2002-06-27 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
3962
|
2430 |
|
2431 * statistics/distributions/gamma_pdf.m: Avoid overflow in more cases. |
|
2432 |
3924
|
2433 2002-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2434 |
|
2435 * skip-autoheader: New file, for autogen.sh. |
3925
|
2436 * Makefile.in (DISTFILES): Add it to the list. |
3924
|
2437 |
5095
|
2438 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3914
|
2439 |
|
2440 * general/repmat.m: New function. |
|
2441 |
5095
|
2442 2002-04-25 Paul Kienzle <pkienzle@users.sf.net> |
3911
|
2443 |
|
2444 * audio/lin2mu.m: Accept matrices and [-1,1] normalized audio. |
|
2445 Use optional parameter to specify the number of bits in the input. |
|
2446 * audio/mu2lin.m: Accept matrices, return n-bit integers or |
|
2447 floats in the range [-1,1], 2x speedup. |
|
2448 |
|
2449 * strings/index.m, strings/rindex.m: Vectorize for speed. |
|
2450 |
3910
|
2451 2002-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2452 |
|
2453 * linear-algebra/kron.m: Delete. |
|
2454 |
5095
|
2455 2002-04-24 Paul Kienzle <pkienzle@users.sf.net> |
3907
|
2456 |
|
2457 * signal/freqz.m: If nargout is zero, plot results instead of |
|
2458 returning them. |
|
2459 * signal/freqz_plot.m: New file. |
|
2460 |
5095
|
2461 2002-04-24 Bill Lash <lash@tellabs.com> |
3906
|
2462 |
5378
|
2463 * signal/unwrap.m: New file. |
3906
|
2464 |
5095
|
2465 2002-04-23 Paul Kienzle <pkienzle@users.sf.net> |
3904
|
2466 |
|
2467 * image/rgb2hsv.m: Faster, more accurate, remove the |
|
2468 divide by zero warning. |
|
2469 |
5095
|
2470 2002-04-09 Paul Kienzle <pkienzle@users.sf.net> |
3893
|
2471 |
3894
|
2472 * strings/deblank.m: Trim \0 as well as blank. |
|
2473 |
5378
|
2474 * freqz.m: Evaluate a specific range of frequencies |
3893
|
2475 expressed in radians or Hz relative to a supplied sample rate. |
|
2476 |
5095
|
2477 2002-04-04 Paul Kienzle <pkienzle@users.sf.net> |
3890
|
2478 |
|
2479 * signal/fftfilt.m: Filter columns if called with a matrix. |
|
2480 |
3891
|
2481 * strings/findstr.m: Vectorize as much as possible. |
|
2482 |
5095
|
2483 2002-04-04 Dirk Laurie <dirk@calvyn.puk.ac.za> |
3889
|
2484 |
|
2485 * special-matrix/invhilb.m: New version that is faster and more |
|
2486 accurate. |
|
2487 |
5095
|
2488 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
3887
|
2489 |
|
2490 * configure.in: Update for autoconf 2.5x. |
|
2491 |
5095
|
2492 2002-04-03 Paul Kienzle <pkienzle@users.sf.net> |
3885
|
2493 |
|
2494 * special-matrix/vander.m: Code tidy and vectorize. |
|
2495 |
5095
|
2496 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
3882
|
2497 |
3883
|
2498 * linear-algebra/cross.m: Accept nx3 and 3xn matrices, in addition |
|
2499 to vectors. Issue a warning in the case x matches y' but return a |
|
2500 column vector as Octave currently does. |
|
2501 |
3882
|
2502 * plot/contour.m: Set default number of levels for contour(x,y,z). |
|
2503 |
|
2504 * control/system/starp.m: Leave more of the documentation |
|
2505 processing to texinfo and less to the @format block. |
|
2506 |
|
2507 * image/imagesc.m: Only display image if no output is requested. |
|
2508 Code tidying. |
|
2509 |
3876
|
2510 2002-03-07 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
2511 |
|
2512 * statistics/base/center.m: Accept and return empty matrix. |
|
2513 |
3872
|
2514 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2515 |
|
2516 * specfun/erfinv.m: Fix usage message. |
|
2517 |
3869
|
2518 2002-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2519 |
|
2520 * elfun/coth.m: Use 1 ./ tanh(z) instead of cosh(z) ./ sinh(z). |
|
2521 From "Michael O'Brien" <mobrien@kento.unm.edu>. |
|
2522 |
3837
|
2523 2001-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2524 |
|
2525 * statistics/distributions/discrete_cdf.m: Downcase incorrectly |
|
2526 capitalized variable names. |
|
2527 |
3836
|
2528 2001-05-30 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
|
2529 |
|
2530 * m/image/saveimage.m: fix saving an image to Postscript format. |
|
2531 |
5095
|
2532 2001-04-18 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3814
|
2533 |
|
2534 * control/system/is_stabilizable.m: Pass a to sys2ss, not sys. |
|
2535 |
3803
|
2536 2001-02-28 Kai Habel <kai.habel@gmx.de> |
|
2537 |
3833
|
2538 * general/cart2pol.m: New file. |
|
2539 * general/pol2cart.m: New file. |
|
2540 * general/cart2sph.m: New file. |
|
2541 * general/sph2cart.m: New file. |
|
2542 * image/rgb2hsv.m: New file. |
|
2543 * image/hsv2rgb.m: New file. |
3803
|
2544 |
|
2545 2001-02-26 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
2546 |
|
2547 * plot/meshgrid.m: Avoid for loops. |
|
2548 * plot/meshdom.m: Likewise. |
|
2549 |
3801
|
2550 2001-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2551 |
|
2552 * linear-algebra/norm.m: Use sqrt instead of ^0.5. |
|
2553 |
|
2554 2001-02-22 Heinz Bauschke <bauschke@cecm.sfu.ca> |
|
2555 |
|
2556 * linear-algebra/norm.m: Use more efficient method for Frobenius |
|
2557 norm. |
|
2558 |
3792
|
2559 2001-02-09 David Livings <david.livings@asa.co.uk> |
|
2560 |
|
2561 * statistics/tests/welch_test.m: Fix typo. |
|
2562 |
|
2563 * statistics/distributions/chisquare_cdf.m: |
|
2564 Don't restrict inputs to be only positive integers. |
|
2565 * statistics/distributions/chisquare_inv.m: Likewise. |
|
2566 * statistics/distributions/chisquare_pdf.m: Likewise. |
|
2567 * statistics/distributions/chisquare_rnd.m: Likewise. |
|
2568 * statistics/distributions/f_cdf.m: Likewise. |
|
2569 * statistics/distributions/f_inv.m: Likewise. |
|
2570 * statistics/distributions/f_pdf.m: Likewise. |
|
2571 * statistics/distributions/f_rnd.m: Likewise. |
|
2572 * statistics/distributions/t_cdf.m: Likewise. |
|
2573 * statistics/distributions/t_inv.m: Likewise. |
|
2574 * statistics/distributions/t_pdf.m: Likewise. |
|
2575 * statistics/distributions/t_rnd.m: Likewise. |
|
2576 |
3790
|
2577 2001-02-08 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
2578 |
|
2579 * strings/dec2base.m: New file. |
|
2580 * strings/base2dec.m: New file. |
|
2581 * strings/strjust.m: New file. |
|
2582 * strings/dec2hex.m: Replace with version that just calls 2dec2base. |
|
2583 * strings/dec2bin.m: Likewise. |
|
2584 * strings/hex2dec.m: Replace with version that just calls base2dec. |
|
2585 * strings/bin2dec.m: Likewise. |
|
2586 |
5095
|
2587 2001-02-07 David Livings <david.livings@asa.co.uk> |
3787
|
2588 |
|
2589 * statistics/base/ppplot.m: Use gset, not set. |
|
2590 * statistics/base/qqplot.m: Likewise. |
|
2591 |
5095
|
2592 2001-02-05 Ondrej Popp <ondrej@geocities.com> |
3775
|
2593 |
|
2594 * control/system/c2d.m: Add missing endif. |
|
2595 |
3759
|
2596 2000-12-15 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
2597 |
|
2598 * strings/index.m: Return 0 if either string is empty. |
|
2599 |
|
2600 2000-12-15 Ben Sapp <bsapp@lanl.gov> |
|
2601 |
|
2602 * control/system/c2d.m: Allow option of matched pole/zero |
|
2603 equivalent for conversion. |
|
2604 |
|
2605 2000-12-15 Matthew W. Roberts <matt@lehi.tamu.edu> |
|
2606 |
|
2607 * strings/findstr.m: Return empty matrix if search string is empty. |
|
2608 |
3757
|
2609 2000-12-15 Kai Habel <kai.habel@gmx.de> |
|
2610 |
|
2611 * saveimage.m: Do create rawbit image for black and white images, |
|
2612 but do it correctly. |
|
2613 |
3754
|
2614 2000-12-13 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
2615 |
|
2616 * polynomial/deconv.m: For compatibility with Matlab, don't reduce |
|
2617 result polynomials. |
|
2618 |
3748
|
2619 2000-12-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2620 |
|
2621 * image/saveimage.m: Don't try to create rawbit image. |
|
2622 |
3740
|
2623 2000-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2624 |
|
2625 * Makefile.in (bin-dist): Pass -C to $(MAKE), not -c. |
|
2626 |
5095
|
2627 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3737
|
2628 |
|
2629 * plot/contour.m: Reorder args for Matlab compatibility. |
|
2630 |
3727
|
2631 2000-10-27 Mats Jansson <mats.e.jansson@home.se> |
|
2632 |
|
2633 * set/create_set.m: Avoid empty matrix in matrix list warning. |
|
2634 |
3717
|
2635 2000-09-08 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
2636 |
3718
|
2637 * plot/errorbar.m, plot/__errplot__.m: New functions. |
|
2638 |
3717
|
2639 * plot/mesh.m: Also set nologscale before plotting. |
|
2640 * plot/__pltopt1__.m: Handle xerrorbars, yerrorbars, and |
|
2641 xyerrorbars instead of just errorbars. |
|
2642 |
3714
|
2643 2000-08-25 Thomas Walter <walter@pctc.chemie.uni-erlangen.de> |
|
2644 |
|
2645 * image/image.m: Try display (from ImageMagick) first. |
|
2646 |
3709
|
2647 2000-08-01 Rolf Fabian <fabian@tu-cottbus.de> |
|
2648 |
|
2649 * plot/meshgrid.m: Use transpose to reorient vectors, not complex |
|
2650 conjugate transpose. |
|
2651 |
3705
|
2652 2000-07-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2653 |
|
2654 * strings/str2mat.m: Apply setstr to each argument. |
|
2655 |
3696
|
2656 2000-07-17 Gabriele Pannocchia <pannocchia@ing.unipi.it> |
|
2657 |
|
2658 * control/base/dkalman.m: New file. |
|
2659 * control/base/dlqe.m: Handle singular A matrix. |
|
2660 * control/base/dlqr.m: Likewise. |
|
2661 |
3695
|
2662 2000-07-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2663 |
|
2664 * strings/strcmp.m: Return 0 instead of an error if row and column |
|
2665 dimensions don't match. |
|
2666 |
3690
|
2667 2000-06-30 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
|
2668 |
|
2669 * plot/hist.m: Allow 3 argument form to work. |
|
2670 |
5095
|
2671 2000-06-27 Matthew W. Roberts <matt@lehi.tamu.edu> |
3683
|
2672 |
|
2673 * plot/plot.m: Add examples in doc string. |
|
2674 |
5095
|
2675 2000-06-08 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3679
|
2676 |
|
2677 * control/base/__stepimp__.m: Reset multiplot state when done. |
|
2678 Do the right thing even if automatic_replot is not zero. |
|
2679 Avoid failure if system has pure imaginary poles. |
|
2680 |
3674
|
2681 2000-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2682 |
|
2683 * general/logical.m: Return arg if it is empty. Better error |
|
2684 message for non-numeric types. |
|
2685 |
5095
|
2686 2000-05-31 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3672
|
2687 |
|
2688 * control/base/dlqe.m: Update documentation. Fix typo. Warn |
|
2689 about difference with Matlab dlqe function. |
|
2690 |
|
2691 * control/system/sysmult.m: Fix typo in argument dimensions checking. |
|
2692 |
5095
|
2693 2000-05-24 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3670
|
2694 |
|
2695 * strings/strrep.m: Fix typo. |
|
2696 |
3666
|
2697 2000-05-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2698 |
|
2699 * strings/strrep.m: Don't transpose result for case of jump > 0. |
|
2700 |
5095
|
2701 2000-05-13 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3666
|
2702 |
|
2703 * strings/strrep.m: Avoid for loop for speed. |
3667
|
2704 * plot/axis.m: Handle string options for Matlab compatibility. |
3666
|
2705 |
5095
|
2706 2000-04-04 John Smith <john@arrows.demon.co.uk> |
3656
|
2707 |
|
2708 * statistics/distributions/beta_inv.m: Provide better(?) initial |
|
2709 guess for iteration. |
|
2710 |
3651
|
2711 2000-03-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
2712 |
|
2713 * image/image.m: Allow image (A) or image (x, y, A). |
|
2714 * image/imagesc.m: Likewise. |
|
2715 |
|
2716 * image/image.m: If zoom is not supplied, or if it is an empty |
|
2717 matrix, autoscale the image. |
|
2718 |
3618
|
2719 2000-03-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2720 |
3619
|
2721 * plot/title.m, plot/bottom_title.m, plot/top_title.m: |
|
2722 Undo string escapes in text twice(!) before sending to gnuplot. |
|
2723 |
3618
|
2724 * image/saveimage.m: Add comment to file saying who created it and |
|
2725 when it was created. Suggested by Stephen Eglen |
|
2726 <stephen@cogsci.ed.ac.uk>. |
|
2727 |
5095
|
2728 2000-03-21 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3617
|
2729 |
|
2730 * polynomial/polyreduce.m: Simplify by looking for the first |
|
2731 non-zero element rather than the last of the first set of zero |
|
2732 elements. |
|
2733 |
|
2734 * plot/__pltopt1__.m: Accept "--", "-.", and ":" line styles. |
|
2735 |
5095
|
2736 2000-03-21 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
3616
|
2737 |
|
2738 * image/saveimage.m: Swap black and white colormaps so zero is |
|
2739 displayed as black and 1 is displayed as white. |
|
2740 Fix indexing bug in ppm case. |
|
2741 |
3604
|
2742 2000-03-06 Stephen Eglen <stephen@anc.ed.ac.uk> |
|
2743 |
|
2744 * statistics/tests/kolmogorov_smirnov_test_2.m: Account for ties |
|
2745 between the two distributions (took same approach as ks.test() in R.) |
|
2746 |
3603
|
2747 2000-02-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2748 |
|
2749 * control/base/bode.m: Temporarily disable automatic_replot. |
|
2750 |
3599
|
2751 2000-02-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2752 |
3601
|
2753 * Makefile.in (clean): Also remove gethelp. |
|
2754 |
3599
|
2755 * specfun/erfinv.m: Use z_new in convergence test, not z_old. |
|
2756 |
5095
|
2757 2000-02-11 Georg Thimm <mgeorg@SGraphicsWS1.mpe.ntu.edu.sg> |
3597
|
2758 |
|
2759 * set/create_set.m: Use find to avoid while loop. |
|
2760 |
5095
|
2761 2000-02-11 Stephen Eglen <stephen@cogsci.ed.ac.uk> |
3597
|
2762 |
|
2763 * plot/hist.m: New optional third argument. |
|
2764 |
|
2765 2000-02-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2766 |
|
2767 * miscellaneous/bug_report.m: Use octave-bug script with version |
|
2768 number appended. |
|
2769 |
3575
|
2770 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2771 |
|
2772 * gethelp.cc: Sprinkle with std:: qualifier. |
|
2773 |
3498
|
2774 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2775 |
|
2776 * image/saveimage.m: Delete some debugging code. |
|
2777 |
3486
|
2778 2000-01-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2779 |
|
2780 * signal/sinc.m: Avoid reshaping. |
|
2781 |
|
2782 * image/rgb2ind.m: No longer needs to reset do_fortran_indexing. |
|
2783 * image/ind2rgb.m: Ditto. |
|
2784 * image/ind2gray.m: Ditto. |
|
2785 * general/reshape.m: Ditto. Also no longer needs to reset |
|
2786 implicit_str_to_num_ok. |
|
2787 |
3483
|
2788 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2789 |
|
2790 * miscellaneous/popen2.m: Deal with the fact that pipe now returns |
|
2791 a list of file structures, not a vector of numeric file ids. |
|
2792 |
3474
|
2793 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2794 |
3476
|
2795 * plot/__axis_label__.m: New function. |
|
2796 Undo string escapes in text twice(!) before sending to gnuplot. |
|
2797 * plot/xlabel.m: Use it. |
|
2798 * plot/ylabel.m: Ditto. |
|
2799 * plot/zlabel.m: Ditto. |
|
2800 |
3474
|
2801 * plot/mesh.m: Fix error message to reflect reality. |
|
2802 |
5095
|
2803 2000-01-24 Cyril Humbert <humbert@phobos.univ-mlv.fr> |
3473
|
2804 |
|
2805 * statistics/distributions/weibull_pdf.m: Use correct formula. |
|
2806 |
5095
|
2807 2000-01-22 Michael Reifenberger <mike@Plaut.de> |
3471
|
2808 |
|
2809 * audio/saveaudio.m: Also accept files with .ul extension. |
|
2810 * audio/loadaudio.m: Ditto. |
|
2811 * audio/playaudio.m: Ditto. |
|
2812 |
3456
|
2813 2000-01-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2814 |
|
2815 * statistics/distributions/beta_cdf.m: Texinfoize doc string. |
|
2816 * statistics/distributions/beta_inv.m: Ditto. |
|
2817 * statistics/distributions/beta_pdf.m: Ditto. |
|
2818 * statistics/distributions/beta_rnd.m: Ditto. |
|
2819 * statistics/distributions/binomial_cdf.m: Ditto. |
|
2820 * statistics/distributions/binomial_inv.m: Ditto. |
|
2821 * statistics/distributions/binomial_pdf.m: Ditto. |
|
2822 * statistics/distributions/binomial_rnd.m: Ditto. |
|
2823 * statistics/distributions/cauchy_cdf.m: Ditto. |
|
2824 * statistics/distributions/cauchy_inv.m: Ditto. |
|
2825 * statistics/distributions/cauchy_pdf.m: Ditto. |
|
2826 * statistics/distributions/cauchy_rnd.m: Ditto. |
|
2827 * statistics/distributions/chisquare_cdf.m: Ditto. |
|
2828 * statistics/distributions/chisquare_inv.m: Ditto. |
|
2829 * statistics/distributions/chisquare_pdf.m: Ditto. |
|
2830 * statistics/distributions/chisquare_rnd.m: Ditto. |
|
2831 * statistics/distributions/discrete_cdf.m: Ditto. |
|
2832 * statistics/distributions/discrete_inv.m: Ditto. |
|
2833 * statistics/distributions/discrete_pdf.m: Ditto. |
|
2834 * statistics/distributions/discrete_rnd.m: Ditto. |
|
2835 * statistics/distributions/empirical_cdf.m: Ditto. |
|
2836 * statistics/distributions/empirical_inv.m: Ditto. |
|
2837 * statistics/distributions/empirical_pdf.m: Ditto. |
|
2838 * statistics/distributions/empirical_rnd.m: Ditto. |
|
2839 * statistics/distributions/exponential_cdf.m: Ditto. |
|
2840 * statistics/distributions/exponential_inv.m: Ditto. |
|
2841 * statistics/distributions/exponential_pdf.m: Ditto. |
|
2842 * statistics/distributions/exponential_rnd.m: Ditto. |
|
2843 * statistics/distributions/f_cdf.m: Ditto. |
|
2844 * statistics/distributions/f_inv.m: Ditto. |
|
2845 * statistics/distributions/f_pdf.m: Ditto. |
|
2846 * statistics/distributions/f_rnd.m: Ditto. |
|
2847 * statistics/distributions/gamma_cdf.m: Ditto. |
|
2848 * statistics/distributions/gamma_inv.m: Ditto. |
|
2849 * statistics/distributions/gamma_pdf.m: Ditto. |
|
2850 * statistics/distributions/gamma_rnd.m: Ditto. |
|
2851 * statistics/distributions/geometric_cdf.m: Ditto. |
|
2852 * statistics/distributions/geometric_inv.m: Ditto. |
|
2853 * statistics/distributions/geometric_pdf.m: Ditto. |
|
2854 * statistics/distributions/geometric_rnd.m: Ditto. |
|
2855 * statistics/distributions/hypergeometric_cdf.m: Ditto. |
|
2856 * statistics/distributions/hypergeometric_inv.m: Ditto. |
|
2857 * statistics/distributions/hypergeometric_pdf.m: Ditto. |
|
2858 * statistics/distributions/hypergeometric_rnd.m: Ditto. |
|
2859 * statistics/distributions/kolmogorov_smirnov_cdf.m: Ditto. |
|
2860 * statistics/distributions/laplace_cdf.m: Ditto. |
|
2861 * statistics/distributions/laplace_inv.m: Ditto. |
|
2862 * statistics/distributions/laplace_pdf.m: Ditto. |
|
2863 * statistics/distributions/laplace_rnd.m: Ditto. |
|
2864 * statistics/distributions/logistic_cdf.m: Ditto. |
|
2865 * statistics/distributions/logistic_inv.m: Ditto. |
|
2866 * statistics/distributions/logistic_pdf.m: Ditto. |
|
2867 * statistics/distributions/logistic_rnd.m: Ditto. |
|
2868 * statistics/distributions/lognormal_cdf.m: Ditto. |
|
2869 * statistics/distributions/lognormal_inv.m: Ditto. |
|
2870 * statistics/distributions/lognormal_pdf.m: Ditto. |
|
2871 * statistics/distributions/lognormal_rnd.m: Ditto. |
|
2872 * statistics/distributions/normal_cdf.m: Ditto. |
|
2873 * statistics/distributions/normal_inv.m: Ditto. |
|
2874 * statistics/distributions/normal_pdf.m: Ditto. |
|
2875 * statistics/distributions/normal_rnd.m: Ditto. |
|
2876 * statistics/distributions/pascal_cdf.m: Ditto. |
|
2877 * statistics/distributions/pascal_inv.m: Ditto. |
|
2878 * statistics/distributions/pascal_pdf.m: Ditto. |
|
2879 * statistics/distributions/pascal_rnd.m: Ditto. |
|
2880 * statistics/distributions/poisson_cdf.m: Ditto. |
|
2881 * statistics/distributions/poisson_inv.m: Ditto. |
|
2882 * statistics/distributions/poisson_pdf.m: Ditto. |
|
2883 * statistics/distributions/poisson_rnd.m: Ditto. |
|
2884 * statistics/distributions/stdnormal_cdf.m: Ditto. |
|
2885 * statistics/distributions/stdnormal_inv.m: Ditto. |
|
2886 * statistics/distributions/stdnormal_pdf.m: Ditto. |
|
2887 * statistics/distributions/stdnormal_rnd.m: Ditto. |
|
2888 * statistics/distributions/t_cdf.m: Ditto. |
|
2889 * statistics/distributions/t_inv.m: Ditto. |
|
2890 * statistics/distributions/t_pdf.m: Ditto. |
|
2891 * statistics/distributions/t_rnd.m: Ditto. |
|
2892 * statistics/distributions/uniform_cdf.m: Ditto. |
|
2893 * statistics/distributions/uniform_inv.m: Ditto. |
|
2894 * statistics/distributions/uniform_pdf.m: Ditto. |
|
2895 * statistics/distributions/uniform_rnd.m: Ditto. |
|
2896 * statistics/distributions/weibull_cdf.m: Ditto. |
|
2897 * statistics/distributions/weibull_inv.m: Ditto. |
|
2898 * statistics/distributions/weibull_pdf.m: Ditto. |
|
2899 * statistics/distributions/weibull_rnd.m: Ditto. |
|
2900 * statistics/distributions/wiener_rnd.m: Ditto. |
|
2901 |
3453
|
2902 2000-01-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2903 |
|
2904 * statistics/base/values.m: Texinfoize doc string. |
|
2905 * statistics/base/var.m: Ditto. |
|
2906 * statistics/base/table.m: Ditto. |
|
2907 * statistics/base/studentize.m: Ditto. |
|
2908 * statistics/base/statistics.m: Ditto. |
|
2909 * statistics/base/spearman.m: Ditto. |
|
2910 * statistics/base/run_count.m: Ditto. |
|
2911 * statistics/base/ranks.m: Ditto. |
|
2912 * statistics/base/range.m: Ditto. |
|
2913 * statistics/base/qqplot.m: Ditto. |
|
2914 * statistics/base/probit.m: Ditto. |
|
2915 * statistics/base/ppplot.m: Ditto. |
|
2916 * statistics/base/moment.m: Ditto. |
|
2917 * statistics/base/meansq.m: Ditto. |
|
2918 * statistics/base/logit.m: Ditto. |
|
2919 * statistics/base/kendall.m: Ditto. |
|
2920 * statistics/base/iqr.m: Ditto. |
|
2921 * statistics/base/cut.m: Ditto. |
|
2922 * statistics/base/cor.m: Ditto. |
|
2923 * statistics/base/cloglog.m: Ditto. |
|
2924 * statistics/base/center.m: Ditto. |
3454
|
2925 * statistics/models/logistic_regression.m: Ditto. |
|
2926 * statistics/models/logistic_regression_derivative.m: Ditto. |
|
2927 * statistics/models/logistic_regression_likelihood.m: Ditto. |
|
2928 * statistics/tests/anova.m: Ditto. |
|
2929 * statistics/tests/bartlett_test.m: Ditto. |
|
2930 * statistics/tests/chisquare_test_homogeneity.m: Ditto. |
|
2931 * statistics/tests/chisquare_test_independence.m: Ditto. |
|
2932 * statistics/tests/cor_test.m: Ditto. |
|
2933 * statistics/tests/f_test_regression.m: Ditto. |
|
2934 * statistics/tests/hotelling_test.m: Ditto. |
|
2935 * statistics/tests/hotelling_test_2.m: Ditto. |
|
2936 * statistics/tests/kolmogorov_smirnov_test.m: Ditto. |
|
2937 * statistics/tests/kolmogorov_smirnov_test_2.m: Ditto. |
|
2938 * statistics/tests/kruskal_wallis_test.m: Ditto. |
|
2939 * statistics/tests/manova.m: Ditto. |
|
2940 * statistics/tests/mcnemar_test.m: Ditto. |
|
2941 * statistics/tests/prop_test_2.m: Ditto. |
|
2942 * statistics/tests/run_test.m: Ditto. |
|
2943 * statistics/tests/sign_test.m: Ditto. |
|
2944 * statistics/tests/t_test.m: Ditto. |
|
2945 * statistics/tests/t_test_2.m: Ditto. |
|
2946 * statistics/tests/t_test_regression.m: Ditto. |
|
2947 * statistics/tests/u_test.m: Ditto. |
|
2948 * statistics/tests/var_test.m: Ditto. |
|
2949 * statistics/tests/welch_test.m: Ditto. |
|
2950 * statistics/tests/wilcoxon_test.m: Ditto. |
|
2951 * statistics/tests/z_test.m: Ditto. |
|
2952 * statistics/tests/z_test_2.m: Ditto. |
3453
|
2953 |
3446
|
2954 2000-01-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2955 |
|
2956 * strings/bin2dec.m: Texinfoize doc string. |
3449
|
2957 * plot/__plr1__.m: Ditto. |
|
2958 * plot/__pltopt__.m: Ditto. |
|
2959 * plot/__plt__.m: Ditto. |
|
2960 * plot/__plt2vv__.m: Ditto. |
|
2961 * plot/__plr2__.m: Ditto. |
|
2962 * plot/__plr__.m: Ditto. |
|
2963 * plot/__plt1__.m: Ditto. |
|
2964 * plot/__plt2__.m: Ditto. |
|
2965 * plot/__plt2mm__.m: Ditto. |
|
2966 * plot/__plt2mv__.m: Ditto. |
|
2967 * plot/__plt2ss__.m: Ditto. |
|
2968 * miscellaneous/paren.m: Ditto. |
|
2969 * miscellaneous/comma.m: Ditto. |
|
2970 * miscellaneous/semicolon.m: Ditto. |
|
2971 * miscellaneous/path.m: Ditto. |
|
2972 * miscellaneous/list_primes.m: Ditto. |
|
2973 * miscellaneous/flops.m: Ditto. |
|
2974 * miscellaneous/dump_prefs.m: Ditto. |
|
2975 * miscellaneous/bug_report.m: Ditto. |
|
2976 * linear-algebra/dot.m: Ditto |
|
2977 * linear-algebra/dmult.m: Ditto. |
|
2978 * general/randperm.m: Ditto. |
|
2979 * general/logical.m: Ditto. |
|
2980 * general/is_duplicate_entry.m: Ditto. |
|
2981 * signal/arch_fit.m: Ditto. |
|
2982 * signal/arch_rnd.m: Ditto. |
|
2983 * signal/arch_test.m: Ditto. |
|
2984 * signal/arma_rnd.m: Ditto. |
|
2985 * signal/autocor.m: Ditto. |
|
2986 * signal/autocov.m: Ditto. |
|
2987 * signal/autoreg_matrix.m: Ditto. |
|
2988 * signal/bartlett.m: Ditto. |
|
2989 * signal/blackman.m: Ditto. |
|
2990 * signal/detrend.m: Ditto. |
|
2991 * signal/diffpara.m: Ditto. |
|
2992 * signal/durbinlevinson.m: Ditto. |
|
2993 * signal/fftconv.m: Ditto. |
|
2994 * signal/fftfilt.m: Ditto. |
|
2995 * signal/fftshift.m: Ditto. |
|
2996 * signal/fractdiff.m: Ditto. |
|
2997 * signal/freqz.m: Ditto. |
|
2998 * signal/hamming.m: Ditto. |
|
2999 * signal/hanning.m: Ditto. |
|
3000 * signal/hurst.m: Ditto. |
|
3001 * signal/periodogram.m: Ditto. |
|
3002 * signal/rectangle_lw.m: Ditto. |
|
3003 * signal/rectangle_sw.m: Ditto. |
|
3004 * signal/sinc.m: Ditto. |
|
3005 * signal/sinetone.m: Ditto. |
|
3006 * signal/sinewave.m: Ditto. |
|
3007 * signal/spectral_adf.m: Ditto. |
|
3008 * signal/spectral_xdf.m: Ditto. |
|
3009 * signal/spencer.m: Ditto. |
|
3010 * signal/stft.m: Ditto. |
|
3011 * signal/synthesis.m: Ditto. |
|
3012 * signal/triangle_lw.m: Ditto. |
|
3013 * signal/triangle_sw.m: Ditto. |
|
3014 * signal/yulewalker.m: Ditto. |
3450
|
3015 * control/util/strappend.m: Ditto. |
3451
|
3016 * control/base/nichols.m: Ditto. |
3452
|
3017 * control/system/is_signal_list.m: Ditto. |
|
3018 * control/system/listidx.m: Ditto. |
|
3019 * control/system/sysgettsam.m: Ditto. |
|
3020 * control/system/sysidx.m: Ditto. |
3446
|
3021 |
3438
|
3022 2000-01-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3023 |
|
3024 * control/system/__abcddims__.m: Rename from |
|
3025 control/system/abcddims.m, change all callers. |
|
3026 * control/base/__bodquist__.m: Likewise. |
|
3027 * control/base/__freqresp__.m: Likewise. |
|
3028 * control/util/__outlist__.m: Likewise. |
|
3029 * control/base/__stepimp__.m: Likewise. |
|
3030 * control/system/__syschnamesl__.m: Likewise. |
|
3031 * control/system/__syscont_disc__.m: Likewise. |
|
3032 * control/system/__sysdefioname__.m: Likewise. |
|
3033 * control/system/__sysdefstname__.m: Likewise. |
|
3034 * control/system/__sysgroupn__.m: Likewise. |
|
3035 * control/system/__tf2sysl__.m: Likewise. |
|
3036 * control/util/__zgpbal__.m: Likewise. |
|
3037 * control/system/__zp2ssg2__.m: Likewise. |
3495
|
3038 |
|
3039 * quaternion/demoquat.m: Add copyright notice, Texinfoize doc string. |
3452
|
3040 * quaternion/qconj.m: Ditto. |
|
3041 * quaternion/qcoordinate_plot.m: Ditto. |
|
3042 * quaternion/qderiv.m: Ditto. |
|
3043 * quaternion/qderivmat.m: Ditto. |
|
3044 * quaternion/qinv.m: Ditto. |
|
3045 * quaternion/qmult.m: Ditto. |
|
3046 * quaternion/qtrans.m: Ditto. |
|
3047 * quaternion/qtransv.m: Ditto. |
|
3048 * quaternion/qtransvmat.m: Ditto. |
|
3049 * quaternion/quaternion.m: Ditto. |
3438
|
3050 |
3436
|
3051 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3052 |
|
3053 * control/base/Makefile.in: Ditto. |
|
3054 * control/hinf/Makefile.in: New file. |
|
3055 * control/marsyas/Makefile.in: Ditto. |
|
3056 * control/obsolete/Makefile.in: Ditto. |
|
3057 * control/system/Makefile.in: Ditto. |
|
3058 * control/util/Makefile.in: Ditto. |
|
3059 |
|
3060 * strings/com2str.m: Move here from control directory. |
|
3061 |
|
3062 * control/base: New directory. |
|
3063 * control/base/DEMOcontrol.m: Move here from control directory. |
|
3064 * control/base/analdemo.m: Ditto. |
|
3065 * control/base/are.m: Ditto. |
|
3066 * control/base/bddemo.m: Ditto. |
|
3067 * control/base/bode.m: Ditto. |
|
3068 * control/base/bode_bounds.m: Ditto. |
|
3069 * control/base/bodquist.m: Ditto. |
|
3070 * control/base/controldemo.m: Ditto. |
|
3071 * control/base/ctrb.m: Ditto. |
|
3072 * control/base/damp.m: Ditto. |
|
3073 * control/base/dare.m: Ditto. |
|
3074 * control/base/dcgain.m: Ditto. |
|
3075 * control/base/dgram.m: Ditto. |
|
3076 * control/base/dlqe.m: Ditto. |
|
3077 * control/base/dlqr.m: Ditto. |
|
3078 * control/base/dlyap.m: Ditto. |
|
3079 * control/base/dre.m: Ditto. |
|
3080 * control/base/frdemo.m: Ditto. |
|
3081 * control/base/freqchkw.m: Ditto. |
|
3082 * control/base/freqresp.m: Ditto. |
|
3083 * control/base/gram.m: Ditto. |
|
3084 * control/base/impulse.m: Ditto. |
|
3085 * control/base/lqe.m: Ditto. |
|
3086 * control/base/lqg.m: Ditto. |
|
3087 * control/base/lqr.m: Ditto. |
|
3088 * control/base/lsim.m: Ditto. |
|
3089 * control/base/ltifr.m: Ditto. |
|
3090 * control/base/lyap.m: Ditto. |
|
3091 * control/base/nichols.m: Ditto. |
|
3092 * control/base/nyquist.m: Ditto. |
|
3093 * control/base/obsv.m: Ditto. |
|
3094 * control/base/place.m: Ditto. |
|
3095 * control/base/pzmap.m: Ditto. |
|
3096 * control/base/rldemo.m: Ditto. |
|
3097 * control/base/rlocus.m: Ditto. |
|
3098 * control/base/step.m: Ditto. |
|
3099 * control/base/stepimp.m: Ditto. |
|
3100 * control/base/tzero.m: Ditto. |
|
3101 * control/base/tzero2.m: Ditto. |
|
3102 |
|
3103 * control/hinf: New directory. |
|
3104 * control/hinf/dhinfdemo.m: Move here from control directory. |
|
3105 * control/hinf/h2norm.m: Ditto. |
|
3106 * control/hinf/h2syn.m: Ditto. |
|
3107 * control/hinf/hinf_ctr.m: Ditto. |
|
3108 * control/hinf/hinfdemo.m: Ditto. |
|
3109 * control/hinf/hinfnorm.m: Ditto. |
|
3110 * control/hinf/hinfsyn.m: Ditto. |
|
3111 * control/hinf/hinfsyn_chk.m: Ditto. |
|
3112 * control/hinf/hinfsyn_ric.m: Ditto. |
|
3113 * control/hinf/wgt1o.m: Ditto. |
3441
|
3114 * control/hinf/dgkfdemo.m: Ditto. |
|
3115 * control/hinf/is_dgkf.m: Ditto. |
3436
|
3116 |
|
3117 * control/marsyas: New directory. |
|
3118 * control/marsyas/demomarsyas.m: Move here from control directory. |
|
3119 * control/marsyas/susball.m: Ditto. |
|
3120 |
|
3121 * control/obsolete/dezero.m: Move here from control directory. |
|
3122 * control/obsolete/rotg.m: Ditto. |
|
3123 |
|
3124 * control/system: New directory. |
|
3125 * control/system/abcddim.m: Move here from control directory. |
|
3126 * control/system/abcddims.m: Ditto. |
|
3127 * control/system/buildssic.m: Ditto. |
|
3128 * control/system/c2d.m: Ditto. |
|
3129 * control/system/d2c.m: Ditto. |
|
3130 * control/system/dmr2d.m: Ditto. |
|
3131 * control/system/fir2sys.m: Ditto. |
|
3132 * control/system/is_abcd.m: Ditto. |
|
3133 * control/system/is_digital.m: Ditto. |
|
3134 * control/system/is_sample.m: Ditto. |
|
3135 * control/system/is_signal_list.m: Ditto. |
|
3136 * control/system/is_siso.m: Ditto. |
3441
|
3137 * control/system/is_controllable.m: Ditto. |
|
3138 * control/system/is_detectable.m: Ditto. |
|
3139 * control/system/is_observable.m: Ditto. |
|
3140 * control/system/is_stabilizable.m: Ditto. |
|
3141 * control/system/is_stable.m: Ditto. |
3436
|
3142 * control/system/jet707.m: Ditto. |
|
3143 * control/system/listidx.m: Ditto. |
|
3144 * control/system/moddemo.m: Ditto. |
|
3145 * control/system/ord2.m: Ditto. |
|
3146 * control/system/packedform.m: Ditto. |
|
3147 * control/system/parallel.m: Ditto. |
|
3148 * control/system/ss2sys.m: Ditto. |
|
3149 * control/system/ss2tf.m: Ditto. |
|
3150 * control/system/ss2zp.m: Ditto. |
|
3151 * control/system/starp.m: Ditto. |
|
3152 * control/system/sys2fir.m: Ditto. |
|
3153 * control/system/sys2ss.m: Ditto. |
|
3154 * control/system/sys2tf.m: Ditto. |
|
3155 * control/system/sys2zp.m: Ditto. |
|
3156 * control/system/sysadd.m: Ditto. |
|
3157 * control/system/sysappend.m: Ditto. |
|
3158 * control/system/syschnamesl.m: Ditto. |
|
3159 * control/system/syschtsam.m: Ditto. |
|
3160 * control/system/sysconnect.m: Ditto. |
|
3161 * control/system/syscont.m: Ditto. |
|
3162 * control/system/syscont_disc.m: Ditto. |
|
3163 * control/system/sysdefioname.m: Ditto. |
|
3164 * control/system/sysdefstname.m: Ditto. |
|
3165 * control/system/sysdimensions.m: Ditto. |
|
3166 * control/system/sysdisc.m: Ditto. |
|
3167 * control/system/sysdup.m: Ditto. |
|
3168 * control/system/sysgetsignals.m: Ditto. |
|
3169 * control/system/sysgettsam.m: Ditto. |
|
3170 * control/system/sysgettype.m: Ditto. |
|
3171 * control/system/sysgroup.m: Ditto. |
|
3172 * control/system/sysgroupn.m: Ditto. |
|
3173 * control/system/sysidx.m: Ditto. |
|
3174 * control/system/sysmin.m: Ditto. |
|
3175 * control/system/sysmult.m: Ditto. |
|
3176 * control/system/sysout.m: Ditto. |
|
3177 * control/system/sysprune.m: Ditto. |
|
3178 * control/system/sysreorder.m: Ditto. |
|
3179 * control/system/sysrepdemo.m: Ditto. |
|
3180 * control/system/sysscale.m: Ditto. |
|
3181 * control/system/syssetsignals.m: Ditto. |
|
3182 * control/system/syssub.m: Ditto. |
|
3183 * control/system/sysupdate.m: Ditto. |
|
3184 * control/system/tf2ss.m: Ditto. |
|
3185 * control/system/tf2sys.m: Ditto. |
|
3186 * control/system/tf2sysl.m: Ditto. |
|
3187 * control/system/tf2zp.m: Ditto. |
|
3188 * control/system/tfout.m: Ditto. |
|
3189 * control/system/ugain.m: Ditto. |
|
3190 * control/system/zp2ss.m: Ditto. |
|
3191 * control/system/zp2ssg2.m: Ditto. |
|
3192 * control/system/zp2sys.m: Ditto. |
|
3193 * control/system/zp2tf.m: Ditto. |
|
3194 * control/system/zpout.m: Ditto. |
|
3195 |
|
3196 * control/util: New directory. |
|
3197 * control/util/axis2dlim.m: Move here from control directory. |
|
3198 * control/util/outlist.m: Ditto. |
|
3199 * control/util/prompt.m: Ditto. |
|
3200 * control/util/run_cmd.m: Ditto. |
|
3201 * control/util/sortcom.m: Ditto. |
|
3202 * control/util/strappend.m: Ditto. |
|
3203 * control/util/swap.m: Ditto. |
|
3204 * control/util/zgfmul.m: Ditto. |
|
3205 * control/util/zgfslv.m: Ditto. |
|
3206 * control/util/zginit.m: Ditto. |
|
3207 * control/util/zgpbal.m: Ditto. |
|
3208 * control/util/zgreduce.m: Ditto. |
|
3209 * control/util/zgrownorm.m: Ditto. |
|
3210 * control/util/zgscal.m: Ditto. |
|
3211 * control/util/zgsgiv.m: Ditto. |
|
3212 * control/util/zgshsr.m: Ditto. |
|
3213 |
3427
|
3214 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3215 |
|
3216 * gethelp.cc (extract_help_text): Discard first space character |
|
3217 after consecutive comment characters. |
|
3218 |
3422
|
3219 Thu Jan 13 00:56:57 2000 John W. Eaton <jwe@bahaha.che.wisc.edu> |
|
3220 |
|
3221 * control/obsolete: New directory |
|
3222 * control/obsolete/swaprows.m: Move here from control directory. |
3436
|
3223 * control/obsolete/swapcols.m: Ditto. |
|
3224 * control/obsolete/dlqg.m: Ditto. |
|
3225 * control/obsolete/minfo.m: Ditto. |
|
3226 * control/obsolete/packsys.m: Ditto. |
|
3227 * control/obsolete/qzval.m: Ditto. |
|
3228 * control/obsolete/unpacksys.m: Ditto. |
|
3229 * control/obsolete/series.m: Ditto. |
|
3230 * control/obsolete/syschnames.m: Ditto. |
|
3231 * polynomial/polyout.m: Ditto. |
3422
|
3232 |
3420
|
3233 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3234 |
|
3235 * general/fliplr.m: Eliminate useless copy of arg. |
|
3236 * general/flipud.m: Ditto. |
|
3237 |
3418
|
3238 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3239 |
|
3240 * linear-algebra/cross.m: Only return a row vector if both args |
|
3241 are row vectors. |
|
3242 * polynomial/polyfit.m: Likewise. |
|
3243 |
|
3244 * signal/autocov.m: Don't reset prefer_column_vectors. |
|
3245 |
|
3246 * statistics/distributions/discrete_rnd.m: |
|
3247 Always generate a row vector. |
|
3248 * statistics/distributions/hypergeometric_rnd.m: Likewise. |
|
3249 |
5095
|
3250 2000-01-11 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3416
|
3251 |
|
3252 * strings/upper.m: Add missing `-*- texinfo -*-' tag to doc string. |
|
3253 |
|
3254 * audio/setaudio.m: Texinfoize doc string. |
|
3255 * control/com2str.m: Likewise. |
|
3256 * control/controldemo.m: Likewise. |
|
3257 * control/DEMOcontrol.m: Likewise. |
|
3258 * control/dezero.m: Likewise. |
|
3259 * control/dre.m: Likewise. |
|
3260 * control/hinfsyn_ric.m: Likewise. |
|
3261 |
5095
|
3262 2000-01-05 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3407
|
3263 |
|
3264 * io/printf.m: Add @seealso{...} to doc string. |
|
3265 * io/puts.m: Likewise. |
|
3266 * plot/semilogx.m: Likewise. |
|
3267 * plot/semilogy.m: Likewise. |
|
3268 * plot/__pltopt__.m: Likewise. |
|
3269 * plot/bar.m: Likewise. |
|
3270 * plot/xlabel.m: Likewise. |
|
3271 * plot/grid.m: Likewise. |
|
3272 * plot/shg.m: Likewise. |
|
3273 * plot/title.m: Likewise. |
|
3274 * plot/mesh.m: Likewise. |
|
3275 * plot/__pltopt1__.m: Likewise. |
|
3276 * plot/contour.m: Likewise. |
|
3277 * plot/hist.m: Likewise. |
|
3278 * plot/stairs.m: Likewise. |
|
3279 * plot/meshgrid.m: Likewise. |
|
3280 * plot/polar.m: Likewise. |
|
3281 * plot/loglog.m: Likewise. |
|
3282 * plot/plot.m: Likewise. |
|
3283 * miscellaneous/semicolon.m: Likewise. |
|
3284 * miscellaneous/menu.m: Likewise. |
|
3285 * miscellaneous/etime.m: Likewise. |
|
3286 * miscellaneous/texas_lotto.m: Likewise. |
|
3287 * miscellaneous/comma.m: Likewise. |
|
3288 * audio/lin2mu.m: Likewise. |
|
3289 * audio/playaudio.m: Likewise. |
|
3290 * audio/loadaudio.m: Likewise. |
|
3291 * audio/saveaudio.m: Likewise. |
|
3292 * audio/mu2lin.m: Likewise. |
|
3293 * audio/record.m: Likewise. |
|
3294 * strings/isletter.m: Likewise. |
|
3295 * strings/lower.m: Likewise. |
|
3296 * strings/lower.m: Likewise. |
|
3297 * strings/upper.m: Likewise. |
|
3298 * specfun/erfinv.m: Likewise. |
|
3299 * specfun/gammai.m: Likewise. |
|
3300 * specfun/log2.m: Likewise. |
|
3301 * specfun/pow2.m: Likewise. |
|
3302 * elfun/gcd.m: Likewise. |
|
3303 * elfun/lcm.m: Likewise. |
|
3304 * special-matrix/vander.m: Likewise. |
|
3305 * special-matrix/sylvester_matrix.m: Likewise. |
|
3306 * special-matrix/hilb.m: Likewise. |
|
3307 * special-matrix/hankel.m: Likewise. |
|
3308 * special-matrix/toeplitz.m: Likewise. |
|
3309 * special-matrix/invhilb.m: Likewise. |
|
3310 * statistics/base/std.m: Likewise. |
|
3311 * statistics/base/median.m: Likewise. |
|
3312 * linear-algebra/cond.m: Likewise. |
|
3313 * linear-algebra/norm.m: Likewise. |
|
3314 * finance/nper.m: Likewise. |
|
3315 * finance/pmt.m: Likewise. |
|
3316 * finance/pv.m: Likewise. |
|
3317 * finance/rate.m: Likewise. |
|
3318 * finance/npv.m: Likewise. |
|
3319 * general/fliplr.m: Likewise. |
|
3320 * general/flipud.m: Likewise. |
|
3321 * general/is_scalar.m: Likewise. |
|
3322 * general/rem.m: Likewise. |
|
3323 * general/perror.m: Likewise. |
|
3324 * general/tril.m: Likewise. |
|
3325 * general/rot90.m: Likewise. |
|
3326 * general/num2str.m: Likewise. |
|
3327 * general/int2str.m: Likewise. |
|
3328 * general/reshape.m: Likewise. |
|
3329 * general/logspace.m: Likewise. |
|
3330 * general/is_symmetric.m: Likewise. |
|
3331 * general/is_vector.m: Likewise. |
|
3332 * general/nextpow2.m: Likewise. |
|
3333 * general/columns.m: Likewise. |
|
3334 * general/is_square.m: Likewise. |
|
3335 * general/rows.m: Likewise. |
|
3336 * control/ugain.m: Likewise. |
|
3337 * control/damp.m: Likewise. |
|
3338 * control/dare.m: Likewise. |
|
3339 * control/are.m: Likewise. |
|
3340 * control/sys2fir.m: Likewise. |
|
3341 * control/abcddim.m: Likewise. |
|
3342 * control/is_abcd.m: Likewise. |
|
3343 * control/step.m: Likewise. |
|
3344 * control/is_observable.m: Likewise. |
|
3345 * control/is_controllable.m: Likewise. |
|
3346 * control/jet707.m: Likewise. |
|
3347 * control/polyout.m: Likewise. |
|
3348 * control/impulse.m: Likewise. |
|
3349 * control/lqg.m: Likewise. |
|
3350 * control/is_detectable.m: Likewise. |
|
3351 * control/sysdimensions.m: Likewise. |
|
3352 * control/sysupdate.m: Likewise. |
|
3353 * control/stepimp.m: Likewise. |
|
3354 * control/is_stable.m: Likewise. |
|
3355 * control/tfout.m: Likewise. |
|
3356 * control/zpout.m: Likewise. |
|
3357 |
3405
|
3358 2000-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3359 |
|
3360 * set/complement.m: Add @seealso{} stuff. |
|
3361 * set/create_set.m: Likewise. |
|
3362 * set/intersection.m: Likewise. |
|
3363 * set/union.m: Likewise. |
|
3364 |
3399
|
3365 1999-12-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3366 |
3400
|
3367 * control/d2c.m: Use double quotes instead of single quotes for |
|
3368 string constants. |
|
3369 * control/dgkfdemo.m: Likewise. |
|
3370 * control/fir2sys.m: Likewise. |
|
3371 * control/frdemo.m: Likewise. |
|
3372 * control/moddemo.m: Likewise. |
|
3373 * control/minfo.m: Likewise. |
|
3374 * control/is_stabilizable.m: Likewise. |
|
3375 * control/is_dgkf.m: Likewise. |
|
3376 * control/polyout.m: Likewise. |
|
3377 * control/sysconnect.m: Likewise. |
|
3378 * control/sysrepdemo.m: Likewise. |
|
3379 * control/tf2sys.m: Likewise. |
|
3380 * control/tfout.m: Likewise. |
|
3381 * control/zp2sys.m: Likewise. |
|
3382 * control/zpout.m: Likewise. |
|
3383 * control/tzero.m: Likewise. |
|
3384 |
|
3385 * control/DEMOcontrol.m: Handle moddemo case too. |
|
3386 |
|
3387 * image/loadimage.m: Use double quotes instead of single quotes |
|
3388 for string constants. Use sprintf instead of square brackets to |
|
3389 construct string. |
|
3390 |
3399
|
3391 * control/DEMOcontrol.m: Formatting tweaks. |
3400
|
3392 * control/fir2sys.m: Likewise. |
3399
|
3393 |
3390
|
3394 1999-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3395 |
|
3396 * mkdoc: Only delete spaces before @ characters at the beginning |
|
3397 of a line. |
|
3398 |
3383
|
3399 1999-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3400 |
3388
|
3401 * control/bddemo.m: Make it more likely to work with any value of |
|
3402 whitespace_in_literal_matrix. |
3386
|
3403 * control/analdemo.m: Ditto. |
|
3404 * control/dgkfdemo.m: Ditto. |
|
3405 * control/frdemo.m: Ditto. |
|
3406 * control/sysrepdemo.m: Ditto. |
|
3407 * control/moddemo.m: Ditto. |
3388
|
3408 * control/zp2ss.m: Ditto. |
3387
|
3409 * control/zp2tf.m: Ditto. |
3388
|
3410 * control/syssub.m: Ditto. |
|
3411 * finance/npv.m: Ditto. |
|
3412 * statistics/base/studentize.m: Ditto. |
|
3413 * statistics/base/values.m: Ditto. |
|
3414 * statistics/distributions/exponential_cdf.m: Ditto. |
|
3415 * statistics/distributions/poisson_cdf.m: Ditto. |
3386
|
3416 |
3384
|
3417 * control/dezero.m: Use toascii to convert string to ASCII value |
|
3418 instead of multiplying it by 1. |
|
3419 |
3383
|
3420 * control/zp2sys.m: Don't save and restore implicit_str_to_num_ok. |
|
3421 * control/zpout.m: Ditto. |
|
3422 * control/tfout.m: Ditto. |
|
3423 * control/tf2sys.m: Ditto. |
|
3424 * control/syssub.m: Ditto. |
|
3425 * control/syssetsignals.m: Ditto. |
|
3426 * control/sysout.m: Ditto. |
|
3427 * control/sysmult.m: Ditto. |
|
3428 * control/sysgroup.m: Ditto. |
|
3429 * control/sysdup.m: Ditto. |
|
3430 * control/sysdisc.m: Ditto. |
|
3431 * control/syscont.m: Ditto. |
|
3432 * control/sysconnect.m: Ditto. |
|
3433 * control/sysappend.m: Ditto. |
|
3434 * control/sysadd.m: Ditto. |
|
3435 * control/ss2sys.m: Ditto. |
|
3436 * control/nyquist.m: Ditto. |
|
3437 * control/lqg.m: Ditto. |
|
3438 * control/fir2sys.m: Ditto. |
|
3439 * control/dmr2d.m: Ditto. |
|
3440 * control/dezero.m: Ditto. |
|
3441 * control/d2c.m: Ditto. |
|
3442 * control/c2d.m: Ditto. |
|
3443 * control/bddemo.m: Ditto. |
|
3444 * control/pzmap.m: Ditto. |
|
3445 |
5095
|
3446 1999-12-08 Daniel Calvelo <dcalvelo@pharion.univ-lille2.fr> |
3374
|
3447 |
|
3448 * signal/spectral_adf.m: Fix typo. |
|
3449 |
3372
|
3450 1999-11-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3451 |
|
3452 * linear-algebra/cond.m: Texinfoize doc string. |
|
3453 * linear-algebra/kron.m: Ditto. |
|
3454 * linear-algebra/norm.m: Ditto. |
|
3455 * linear-algebra/null.m: Ditto. |
|
3456 * linear-algebra/orth.m: Ditto. |
|
3457 * linear-algebra/rank.m: Ditto. |
|
3458 * linear-algebra/trace.m: Ditto. |
|
3459 * linear-algebra/qzhess.m: Ditto. |
|
3460 * miscellaneous/menu.m: Ditto. |
3373
|
3461 * general/perror.m: Ditto. |
|
3462 * general/strerror.m: Ditto. |
|
3463 * general/columns.m: Ditto. |
|
3464 * general/rows.m: Ditto. |
|
3465 * image/colormap.m: Ditto. |
|
3466 * image/gray.m: Ditto. |
|
3467 * image/gray2ind.m: Ditto. |
|
3468 * image/image.m: Ditto. |
|
3469 * image/imagesc.m: Ditto. |
|
3470 * image/imshow.m: Ditto. |
|
3471 * image/ind2gray.m: Ditto. |
|
3472 * image/ind2rgb.m: Ditto. |
|
3473 * image/loadimage.m: Ditto. |
|
3474 * image/rgb2ntsc.m: Ditto. |
|
3475 * image/ntsc2rgb.m: Ditto. |
|
3476 * image/ocean.m: Ditto. |
|
3477 * image/rgb2ind.m: Ditto. |
|
3478 * image/saveimage.m: Ditto. |
3372
|
3479 * io/printf.m: Ditto. |
|
3480 * io/puts.m: Ditto. |
|
3481 |
3369
|
3482 1999-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3483 |
|
3484 * special-matrix/hankel.m: Texinfoize doc string. |
|
3485 * special-matrix/hilb.m: Ditto. |
|
3486 * special-matrix/invhilb.m: Ditto. |
|
3487 * special-matrix/sylvester_matrix.m: Ditto. |
|
3488 * special-matrix/toeplitz.m: Ditto. |
|
3489 * special-matrix/vander.m: Ditto. |
|
3490 * linear-algebra/vec.m: Ditto. |
|
3491 * linear-algebra/vech.m: Ditto. |
|
3492 * general/common_size.m: Ditto. |
|
3493 * general/diff.m: Ditto. |
|
3494 * general/fliplr.m: Ditto. |
|
3495 * general/flipud.m: Ditto. |
|
3496 * general/rot90.m: Ditto. |
|
3497 * general/reshape.m: Ditto. |
|
3498 * general/shift.m: Ditto. |
|
3499 * general/tril.m: Ditto. |
|
3500 * general/triu.m: Ditto. |
|
3501 * general/logspace.m: Ditto. |
3371
|
3502 * general/nargchk.m: Ditto. |
3369
|
3503 |
3367
|
3504 1999-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3505 |
|
3506 * statistics/base/mean: Texinfoize doc string. |
|
3507 * statistics/base/median: Ditto. |
|
3508 * statistics/base/std: Ditto. |
|
3509 * statistics/base/cov: Ditto. |
|
3510 * statistics/base/corrcoef: Ditto. |
|
3511 * statistics/base/kurtosis: Ditto. |
|
3512 * statistics/base/mahalanobis: Ditto. |
|
3513 * statistics/base/skewness: Ditto. |
3368
|
3514 * statistics/base/gls.m: Ditto. |
|
3515 * statistics/base/ols.m: Ditto. |
3367
|
3516 * signal/detrend.m: Ditto. |
|
3517 * signal/freqz.m: Ditto. |
|
3518 * signal/sinc.m: Ditto. |
|
3519 * signal/fftconv.m: Ditto. |
|
3520 * signal/fftfilt.m: Ditto. |
3368
|
3521 * set/create_set.m: Ditto. |
|
3522 * set/union.m: Ditto. |
|
3523 * set/intersection.m: Ditto. |
|
3524 * set/complement.m: Ditto. |
|
3525 * poly/compan.m: Ditto. |
|
3526 * poly/conv: Ditto. |
|
3527 * poly/deconv: Ditto. |
|
3528 * poly/poly: Ditto. |
|
3529 * poly/polyderiv: Ditto. |
|
3530 * poly/polyfit: Ditto. |
|
3531 * poly/polyinteg: Ditto. |
|
3532 * poly/polyreduce: Ditto. |
|
3533 * poly/polyval: Ditto. |
|
3534 * poly/polyvalm: Ditto. |
|
3535 * poly/residue: Ditto. |
|
3536 * poly/roots: Ditto. |
|
3537 * plot/top_title.m: Ditto |
|
3538 * plot/subwindow.m: Ditto |
|
3539 * plot/subplot.m: Ditto |
|
3540 * plot/plot_border.m: Ditto |
|
3541 * plot/oneplot.m: Ditto |
|
3542 * plot/multiplot.m: Ditto |
|
3543 * plot/mplot.m: Ditto |
|
3544 * plot/xlabel.m: Ditto |
|
3545 * plot/figure.m: Ditto |
|
3546 * plot/meshdom.m: Ditto |
|
3547 * plot/mesh.m: Ditto |
|
3548 * plot/stairs.m: Ditto |
|
3549 * plot/polar.m: Ditto |
|
3550 * plot/loglog.m: Ditto |
|
3551 * plot/hist.m: Ditto |
|
3552 * plot/contour.m: Ditto |
|
3553 * plot/bar.m: Ditto |
|
3554 * plot/axis.m: Ditto |
|
3555 * plot/plot.m: Ditto. |
3367
|
3556 |
3361
|
3557 1999-11-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3558 |
3365
|
3559 * control/pinv.m: Delete. |
|
3560 |
3364
|
3561 * Makefile.in (DOCSTRINGS): Don't echo $(ALL_M_FILES). |
|
3562 |
3361
|
3563 * strings/blanks.m: Texinfoize doc string. |
|
3564 * strings/strcat.m: Ditto. |
|
3565 * strings/str2mat.m: Ditto. |
|
3566 * strings/deblank.m: Ditto. |
|
3567 * strings/findstr.m: Ditto. |
|
3568 * strings/index.m: Ditto. |
|
3569 * strings/rindex.m: Ditto. |
|
3570 * strings/split.m: Ditto. |
|
3571 * strings/strcmp.m: Ditto. |
|
3572 * strings/strrep.m: Ditto. |
|
3573 * strings/substr.m: Ditto. |
|
3574 * general/int2str.m: Ditto. |
|
3575 * general/num2str.m: Ditto. |
|
3576 * strings/dec2bin.m: Ditto. |
|
3577 * strings/bin2dec: Ditto. |
|
3578 * strings/dec2bin: Ditto. |
|
3579 * strings/dec2hex: Ditto. |
|
3580 * strings/hex2dec: Ditto. |
|
3581 * strings/str2num: Ditto. |
|
3582 |
3347
|
3583 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3584 |
|
3585 * Makefile.in (DISTFILES): Include DOCSTRINGS. |
|
3586 |
5095
|
3587 1999-11-09 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3361
|
3588 |
|
3589 * control/DEMOcontrol.m: Texinfoize doc string. |
|
3590 * control/abcddim.m: Ditto. |
|
3591 * control/abcddims.m: Ditto. |
|
3592 * control/analdemo.m: Ditto. |
|
3593 * control/are.m: Ditto. |
|
3594 * control/axis2dlim.m: Ditto. |
|
3595 * control/bddemo.m: Ditto. |
|
3596 * control/bode.m: Ditto. |
|
3597 * control/bode_bounds.m: Ditto. |
|
3598 * control/bodquist.m: Ditto. |
|
3599 * control/buildssic.m: Ditto. |
|
3600 * control/c2d.m: Ditto. |
|
3601 * control/ctrb.m: Ditto. |
|
3602 * control/d2c.m: Ditto. |
|
3603 * control/damp.m: Ditto. |
|
3604 * control/dare.m: Ditto. |
|
3605 * control/dcgain.m: Ditto. |
|
3606 * control/dgkfdemo.m: Ditto. |
|
3607 * control/dgram.m: Ditto. |
|
3608 * control/dlqe.m: Ditto. |
|
3609 * control/dlqr.m: Ditto. |
|
3610 * control/dlyap.m: Ditto. |
|
3611 * control/dmr2d.m: Ditto. |
|
3612 * control/fir2sys.m: Ditto. |
|
3613 * control/frdemo.m: Ditto. |
|
3614 * control/freqchkw.m: Ditto. |
|
3615 * control/freqresp.m: Ditto. |
|
3616 * control/gram.m: Ditto. |
|
3617 * control/h2norm.m: Ditto. |
|
3618 * control/h2syn.m: Ditto. |
|
3619 * control/hinf_ctr.m: Ditto. |
|
3620 * control/hinfdemo.m: Ditto. |
|
3621 * control/hinfnorm.m: Ditto. |
|
3622 * control/hinfsyn.m: Ditto. |
|
3623 * control/hinfsyn_chk.m: Ditto. |
|
3624 * control/impulse.m: Ditto. |
|
3625 * control/is_abcd.m: Ditto. |
|
3626 * control/is_controllable.m: Ditto. |
|
3627 * control/is_detectable.m: Ditto. |
|
3628 * control/is_dgkf.m: Ditto. |
|
3629 * control/is_digital.m: Ditto. |
|
3630 * control/is_observable.m: Ditto. |
|
3631 * control/is_sample.m: Ditto. |
|
3632 * control/is_signal_list.m: Ditto. |
|
3633 * control/is_siso.m: Ditto. |
|
3634 * control/is_stabilizable.m: Ditto. |
|
3635 * control/is_stable.m: Ditto. |
|
3636 * control/jet707.m: Ditto. |
|
3637 * control/lqe.m: Ditto. |
|
3638 * control/lqg.m: Ditto. |
|
3639 * control/lqr.m: Ditto. |
|
3640 * control/lsim.m: Ditto. |
|
3641 * control/ltifr.m: Ditto. |
|
3642 * control/lyap.m: Ditto. |
|
3643 * control/moddemo.m: Ditto. |
|
3644 * control/nyquist.m: Ditto. |
|
3645 * control/obsv.m: Ditto. |
|
3646 * control/ord2.m: Ditto. |
|
3647 * control/outlist.m: Ditto. |
|
3648 * control/pinv.m: Ditto. |
|
3649 * control/place.m: Ditto. |
|
3650 * control/polyout.m: Ditto. |
|
3651 * control/prompt.m: Ditto. |
|
3652 * control/pzmap.m: Ditto. |
|
3653 * control/qzval.m: Ditto. |
|
3654 * control/rldemo.m: Ditto. |
|
3655 * control/rlocus.m: Ditto. |
|
3656 * control/sortcom.m: Ditto. |
|
3657 * control/ss2sys.m: Ditto. |
|
3658 * control/ss2tf.m: Ditto. |
|
3659 * control/ss2zp.m: Ditto. |
|
3660 * control/starp.m: Ditto. |
|
3661 * control/step.m: Ditto. |
|
3662 * control/stepimp.m: Ditto. |
|
3663 * control/susball.m: Ditto. |
|
3664 * control/sys2fir.m: Ditto. |
|
3665 * control/sys2ss.m: Ditto. |
|
3666 * control/sys2tf.m: Ditto. |
|
3667 * control/sys2zp.m: Ditto. |
|
3668 * control/sysadd.m: Ditto. |
|
3669 * control/sysappend.m: Ditto. |
|
3670 * control/syschnames.m: Ditto. |
|
3671 * control/syschnamesl.m: Ditto. |
|
3672 * control/syschtsam.m: Ditto. |
|
3673 * control/sysconnect.m: Ditto. |
|
3674 * control/syscont.m: Ditto. |
|
3675 * control/syscont_disc.m: Ditto. |
|
3676 * control/sysdefioname.m: Ditto. |
|
3677 * control/sysdefstname.m: Ditto. |
|
3678 * control/sysdimensions.m: Ditto. |
|
3679 * control/sysdisc.m: Ditto. |
|
3680 * control/sysdup.m: Ditto. |
|
3681 * control/sysgetsignals.m: Ditto. |
|
3682 * control/sysgettype.m: Ditto. |
|
3683 * control/sysgroup.m: Ditto. |
|
3684 * control/sysgroupn.m: Ditto. |
|
3685 * control/sysmult.m: Ditto. |
|
3686 * control/sysout.m: Ditto. |
|
3687 * control/sysprune.m: Ditto. |
|
3688 * control/sysreorder.m: Ditto. |
|
3689 * control/sysrepdemo.m: Ditto. |
|
3690 * control/sysscale.m: Ditto. |
|
3691 * control/syssetsignals.m: Ditto. |
|
3692 * control/syssub.m: Ditto. |
|
3693 * control/sysupdate.m: Ditto. |
|
3694 * control/tf2ss.m: Ditto. |
|
3695 * control/tf2sys.m: Ditto. |
|
3696 * control/tf2sysl.m: Ditto. |
|
3697 * control/tf2zp.m: Ditto. |
|
3698 * control/tfout.m: Ditto. |
|
3699 * control/tzero.m: Ditto. |
|
3700 * control/tzero2.m: Ditto. |
|
3701 * control/ugain.m: Ditto. |
|
3702 * control/wgt1o.m: Ditto. |
|
3703 * control/zgfmul.m: Ditto. |
|
3704 * control/zgfslv.m: Ditto. |
|
3705 * control/zginit.m: Ditto. |
|
3706 * control/zgpbal.m: Ditto. |
|
3707 * control/zgreduce.m: Ditto. |
|
3708 * control/zgrownorm.m: Ditto. |
|
3709 * control/zgscal.m: Ditto. |
|
3710 * control/zgsgiv.m: Ditto. |
|
3711 * control/zgshsr.m: Ditto. |
|
3712 * control/zp2ss.m: Ditto. |
|
3713 * control/zp2ssg2.m: Ditto. |
|
3714 * control/zp2sys.m: Ditto. |
|
3715 * control/zp2tf.m: Ditto. |
|
3716 * control/zpout.m: Ditto. |
|
3717 |
5095
|
3718 1999-11-02 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3332
|
3719 |
5378
|
3720 * audio/lin2mu.m: Texinfoize doc string. |
|
3721 * audio/loadaudio.m: Ditto. |
|
3722 * audio/mu2lin.m: Ditto. |
|
3723 * audio/playaudio.m: Ditto. |
|
3724 * audio/record.m: Ditto. |
|
3725 * audio/saveaudio.m: Ditto. |
3332
|
3726 |
5095
|
3727 1999-10-26 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321
|
3728 |
|
3729 * elfun/acot.m: Texinfoize doc string. |
|
3730 * elfun/acsc.m: Ditto. |
|
3731 * elfun/acsch.m: Ditto. |
|
3732 * elfun/asec.m: Ditto. |
|
3733 * elfun/asech.m: Ditto. |
|
3734 * elfun/cot.m: Ditto. |
|
3735 * elfun/coth.m: Ditto. |
|
3736 * elfun/csc.m: Ditto. |
|
3737 * elfun/csch.m: Ditto. |
|
3738 * elfun/gcd.m: Ditto. |
|
3739 * elfun/lcm.m: Ditto. |
|
3740 * elfun/sec.m: Ditto. |
|
3741 * elfun/sech.m: Ditto. |
|
3742 * general/nextpow2.m: Ditto. |
|
3743 * general/rem.m: Ditto. |
|
3744 * linear-algebra/commutation_matrix.m: Ditto. |
|
3745 * linear-algebra/cross.m: Ditto. |
|
3746 * linear-algebra/duplication_matrix.m: Ditto. |
|
3747 * miscellaneous/bincoeff.m: Ditto. |
|
3748 * miscellaneous/xor.m: Ditto. |
|
3749 * specfun/bessel.m: Ditto. |
|
3750 * specfun/beta.m: Ditto. |
|
3751 * specfun/betai.m: Ditto. |
|
3752 * specfun/erfinv.m: Ditto. |
|
3753 * specfun/gammai.m: Ditto. |
|
3754 * specfun/log2.m: Ditto. |
|
3755 * specfun/pow2.m: Ditto. |
|
3756 |
5095
|
3757 1999-10-23 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321
|
3758 |
|
3759 * general/is_scalar.m: Texinfoize help text. |
|
3760 * general/is_square.m: Ditto. |
|
3761 * general/is_symmetric.m: Ditto. |
|
3762 |
3320
|
3763 1999-10-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3764 |
|
3765 * strings/split.m: If the string to be split is empty, just return |
|
3766 an empty string. |
|
3767 |
3319
|
3768 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3769 |
|
3770 * Makefile.in (ALL_M_FILES): New macro. |
|
3771 (DOCSTRINGS): No longer .PHONY; depend on $(ALL_M_FILES). |
|
3772 |
3306
|
3773 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3774 |
|
3775 * control/bode.m: Don't return anything if nargout == 0. |
|
3776 |
|
3777 1999-10-20 James B. Rawlings <jbraw@bevo.che.wisc.edu> |
|
3778 |
|
3779 * control/bode.m: Don't do axis scaling for magnitude plots. |
|
3780 |
3305
|
3781 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3782 |
|
3783 * Makefile.in (DISTFILES): Add move-if-change, mkdoc, and |
|
3784 gethelp.cc to the list. |
|
3785 |
3296
|
3786 1999-10-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3787 |
3301
|
3788 * time/asctime.m: Texinfoize help text. |
|
3789 * time/clock.m: Ditto. |
|
3790 * time/date.m: Ditto. |
|
3791 * miscellaneous/cputime.m: Ditto. |
|
3792 * miscellaneous/etime.m: Ditto. |
|
3793 * miscellaneous/is_leap_year.m: Ditto. |
|
3794 * miscellaneous/popen2.m: Ditto. |
|
3795 * miscellaneous/version.m: Ditto. |
|
3796 * miscellaneous/tic.m: Ditto. |
|
3797 * miscellaneous/toc.m: Just refer to tic.m. |
|
3798 |
3297
|
3799 * Makefile.in (dist, bin-dist): Use `$(MAKE) -C dir' instead of |
|
3800 `cd dir; $(MAKE); cd ..'. |
|
3801 ($(SUBDIRS)): Likewise. |
|
3802 |
|
3803 * statistics/Makefile.in ($(SUBDIRS)): Likewise. |
|
3804 |
|
3805 * statistics/Makefile.in (bin-dist): Use `$(MAKE) -C dir' instead |
|
3806 of `cd dir; $(MAKE)'. |
|
3807 |
3296
|
3808 * gethelp.cc, mkdoc: New files. |
|
3809 * Makefile.in: Use them to create DOCSTRINGS file from .m file |
|
3810 sources. |
|
3811 |
3291
|
3812 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3813 |
|
3814 * linear-algebra/kron.m: Fix typo in previous change |
|
3815 |
3282
|
3816 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3817 |
|
3818 * control/bode.m: Allow optional 5th arg to specify plot style. |
|
3819 |
5095
|
3820 Wed Sep 22 22:12:03 1999 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3273
|
3821 |
|
3822 * linear-algebra/krylov.m: Correctly handle case of V having full |
|
3823 rank when V has more columns than rows. |
|
3824 |
|
3825 Mon Sep 20 23:04:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3826 |
|
3827 * general/linspace.m, linear-algebra/pinv.m: Delete. |
|
3828 |
|
3829 * statistics/tests/manova.m: Avoid problems if |
|
3830 whitespace_in_literal_matrix is set to "traditional". |
|
3831 * statistics/tests/t_test_regression.m: Likewise. |
|
3832 * statistics/tests/u_test.m: Likewise. |
|
3833 * statistics/tests/chisquare_test_homogeneity.m: Likewise. |
|
3834 * statistics/tests/anova.m: Likewise. |
|
3835 * statistics/tests/kruskal_wallis_test.m: Likewise. |
|
3836 * statistics/base/statistics.m: Likewise. |
|
3837 * image/saveimage.m: Likewise. |
|
3838 * signal/arch_fit.m: Likewise. |
|
3839 * signal/autoreg_matrix.m: Likewise. |
|
3840 * signal/triangle_lw.m: Likewise. |
|
3841 * strings/dec2hex.m: Likewise. |
|
3842 |
3268
|
3843 Thu Sep 9 19:31:58 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3844 |
|
3845 * image/saveimage.m: Initialize scale. |
|
3846 |
|
3847 Sun Sep 5 22:13:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3848 |
|
3849 * general/reshape.m: Allow reshape (a, size (b)). |
|
3850 |
3266
|
3851 Fri Sep 3 00:01:38 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3852 |
|
3853 * specfun/erfinv.m: Improve stopping criterion. |
|
3854 Add iteration count as second return value. |
|
3855 |
3265
|
3856 Mon Aug 30 12:07:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3857 |
|
3858 * statistics/base/mean.m: Use .', not ' to reorient row vectors. |
|
3859 |
3263
|
3860 Tue Aug 17 11:11:27 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3861 |
|
3862 * miscellaneous/pack.m: New function. |
|
3863 |
|
3864 Mon Aug 16 07:46:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3865 |
|
3866 * plot/figure.m: Always return figure number. With no args, |
|
3867 figure now creates a new figure window and returns its number. |
|
3868 Accept figure (property, value) syntax, but do nothing. |
|
3869 |
5095
|
3870 Thu Aug 12 09:28:01 PDT 1999 Tom Poage <tfpoage@ucdavis.edu> |
3263
|
3871 |
|
3872 * general/shift.m: Avoid printing temporary value for backward shift. |
|
3873 |
3260
|
3874 Mon Aug 2 16:39:04 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3875 |
|
3876 * plot/bar.m: Compute bar widths correctly when x-values are not |
|
3877 evenly spaced. |
|
3878 |
3250
|
3879 Mon Jul 12 22:48:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3880 |
|
3881 * linear-algebra/cond.m: Avoid returning NaN for matrices that |
|
3882 contain only zeros. |
|
3883 |
5095
|
3884 Sun Jun 20 22:24:27 1999 Eduardo Gallestey <eduardo@faceng.anu.edu.au> |
3250
|
3885 |
|
3886 * linear-algebra/kron.m: Create result matrix and insert blocks |
|
3887 instead of appending them. |
|
3888 |
|
3889 Sat Jun 19 01:52:18 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3890 |
|
3891 * control/bodquist.m, control/buildssic.m, control/is_digital.m, |
|
3892 control/stepimp.m, control/sysmin.m, control/syssetsignals.m: |
|
3893 Update from A. S. Hodel. |
|
3894 |
3246
|
3895 Fri Jun 18 12:19:22 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3896 |
|
3897 * polynomial/polyfit.m: Correct previous change. |
|
3898 |
3243
|
3899 Wed Apr 7 13:57:26 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3900 |
|
3901 * linear-algebra/qrhouse.m, linear-algebra/krygetq.m: Delete. |
|
3902 |
5095
|
3903 Wed Apr 7 13:22:43 1999 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
3240
|
3904 |
|
3905 * control/is_controllable.m, control/zgscal.m: Accomodate new |
|
3906 version of krylov and krylovb. |
|
3907 |
|
3908 * control/outlist.m, control/sysout.m: Fix typos. |
|
3909 |
|
3910 * control/sysdimensions.m: Add option for total number of states. |
|
3911 |
|
3912 * linear-algebra/krylov.m: Improve robustness by row-pivoting. |
|
3913 * linear-algebra/krylovb.m: Just call krylov with appropriate |
|
3914 arguments. |
|
3915 |
|
3916 Tue Mar 30 00:43:09 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3917 |
|
3918 * strings/index.m: Fail with meaningful error message if either |
|
3919 arg is a string array. |
|
3920 |
3238
|
3921 Wed Mar 24 20:34:48 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3922 |
|
3923 * linear-algebra/norm.m: Do the right thing for 1- and |
|
3924 infinity-norms of complex matrices. From Sven Khatri |
|
3925 <khatri@saturn.vocalpoint.com>. |
|
3926 |
5095
|
3927 Tue Mar 16 13:36:36 1999 A. Scottedward Hodel" <scotte@eng.auburn.edu> |
3238
|
3928 |
|
3929 * linear-algebra/qrhouse.m: Handle default args correctly. |
|
3930 |
|
3931 Thu Mar 11 12:52:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3932 |
|
3933 * strings/split.m: Avoid problems when splitting strings that have |
|
3934 \ in them. |
|
3935 |
5095
|
3936 Thu Mar 11 12:36:13 1999 Massimo Lorenzin <maxlorenzin@tin.it> |
3238
|
3937 |
|
3938 * image/colormap.m: Do better arg checking, handle string args |
|
3939 that name the colormap function to call (e.g., colormap ("ocean")). |
|
3940 |
5095
|
3941 Mon Mar 8 22:23:24 1999 Rolf Fabian <fabian@TU-Cottbus.De> |
3238
|
3942 |
|
3943 * polynomial/polyfit.m: Use .' transpose operator, not '. |
|
3944 * linear-algebra/dot.m: Likewise. |
|
3945 * linear-algebra/cross.m: Likewise. |
|
3946 * general/rot90.m: Likewise. |
|
3947 |
5095
|
3948 Sat Mar 6 01:45:00 1999 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3238
|
3949 |
|
3950 * linear-algebra/qrhouse.m: Permute columns at each iteration so |
|
3951 that the leading column is not all zeros. |
|
3952 |
|
3953 Fri Mar 5 00:37:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3954 |
|
3955 * general/shift.m: Fix potential problems with |
|
3956 whitespace_in_literal_matrix. |
|
3957 * signal/arch_rnd.m: Ditto. |
|
3958 * signal/autocov.m: Ditto. |
|
3959 * signal/diffpara.m: Ditto. |
|
3960 * signal/hurst.m: Ditto. |
|
3961 * signal/periodogram.m: Ditto. |
|
3962 * signal/spectral_adf.m: Ditto. |
|
3963 * signal/spectral_xdf.m: Ditto. |
|
3964 * signal/spencer.m: Ditto. |
|
3965 * signal/synthesis.m: Ditto. |
|
3966 * statistics/distributions/wiener_rnd.m: Ditto. |
|
3967 * statistics/models/logistic_regression_likelihood.m: Ditto. |
|
3968 * statistics/models/logistic_regression.m: Ditto. |
|
3969 * statistics/models/logistic_regression_derivatives.m: Ditto. |
|
3970 * statistics/tests/run_test.m: Ditto. |
|
3971 * statistics/tests/chisquare_test_independence.m: Ditto. |
|
3972 |
5095
|
3973 Wed Mar 3 02:25:00 1999 Joao Cardoso <jcardoso@inescn.pt> |
3238
|
3974 |
|
3975 * plot/__plr2__.m: Fix typo. |
|
3976 |
3233
|
3977 Tue Jan 12 10:31:15 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3978 |
|
3979 * plot/__pltopt1__.m: Accept "k" to mean black. |
|
3980 |
5095
|
3981 Fri Dec 11 10:43:19 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233
|
3982 |
|
3983 * linear-algebra/krylov.m: Force empty_list_elements_ok for this |
|
3984 function. |
|
3985 |
5095
|
3986 Thu Dec 10 11:07:00 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233
|
3987 |
|
3988 * control/ss2sys.m: Fix typo. |
|
3989 |
|
3990 Wed Dec 9 12:42:19 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3991 |
|
3992 * plot/subplot.m, plot/oneplot.m: Don't call clearplot. |
|
3993 |
|
3994 * control: Update from A. S. Hodel <a.s.hodel@eng.auburn.edu> for |
|
3995 signal names as lists of strings instead of string arrays. |
|
3996 |
3225
|
3997 Fri Dec 4 16:08:42 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3998 |
3233
|
3999 * quaternion: New directory of functions from A. S. Hodel |
3225
|
4000 <a.s.hodel@eng.auburn.edu>. |
|
4001 * Makefile.in (SUBDIRS): Add it to the list. |
3226
|
4002 * quaternion/Makefile.in: New file. |
|
4003 * configure.in (AC_OUTPUT): Add quaternion/Makefile. |
3225
|
4004 |
|
4005 Tue Nov 24 21:41:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4006 |
|
4007 * image/saveimage.m: Make it work again for black and white colormaps. |
|
4008 |
|
4009 * image/imagesc.m: Use rows (colormap), not length (colormap), |
|
4010 since there can be fewer rows than columns. Round values to |
|
4011 nearest position in colormap instead of truncating. Correct usage |
|
4012 message. |
|
4013 |
5095
|
4014 Tue Nov 24 14:50:52 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3225
|
4015 |
|
4016 * linear-algebra/krylov.m: New arg pflg. If nonzero, avoid using |
|
4017 zero rows of [A,v] as householder pivots; this avoids spurious |
|
4018 non-zero entries in returned orthogonal matrix U, but destroys the |
|
4019 Householder matrix structure of H. |
|
4020 |
|
4021 Fri Nov 20 12:46:46 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4022 |
|
4023 * general/logical.m: Just copy input to output if argument is |
|
4024 already a logical object. |
|
4025 |
3215
|
4026 Fri Nov 6 10:17:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4027 |
|
4028 * New files from OCST, in control subdiretory: |
|
4029 |
|
4030 DEMOcontrol.m is_siso.m syschnames.m |
|
4031 abcddim.m is_stabilizable.m syschnamesl.m |
|
4032 abcddims.m is_stable.m syschtsam.m |
|
4033 analdemo.m jet707.m sysconnect.m |
|
4034 are.m lqe.m syscont.m |
|
4035 axis2dlim.m lqg.m syscont_disc.m |
|
4036 bddemo.m lqr.m sysdefioname.m |
|
4037 bode.m lsim.m sysdefstname.m |
|
4038 bode_bounds.m ltifr.m sysdimensions.m |
|
4039 bodquist.m lyap.m sysdisc.m |
|
4040 buildssic.m mb.m sysdup.m |
|
4041 c2d.m minfo.m sysgetsignals.m |
|
4042 com2str.m,v moddemo.m sysgettsam.m |
|
4043 controldemo.m nichols.m sysgettype.m |
|
4044 ctrb.m nyquist.m sysgroup.m |
|
4045 d2c.m obsv.m sysgroupn.m |
|
4046 damp.m ord2.m sysmult.m |
|
4047 dare.m outlist.m sysout.m |
|
4048 dcgain.m packedform.m sysprune.m |
|
4049 demomarsyas.m packsys.m sysreorder.m |
|
4050 dezero.m; parallel.m sysrepdemo.m |
|
4051 dgkfdemo.m place.m sysscale.m |
|
4052 dgram.m polyout.m syssub.m |
|
4053 dhinfdemo.m prompt.m sysupdate.m |
|
4054 dlqe.m pzmap.m tf2ss.m |
|
4055 dlqg.m qzval.m tf2sys.m |
|
4056 dlqr.m rldemo.m tf2sysl.m |
|
4057 dlyap.m rlocus.m tf2zp.m |
|
4058 dmr2d.m rotg.m tfout.m |
|
4059 fir2sys.m run_cmd.m; tzero.m |
|
4060 frdemo.m series.m tzero2.m |
|
4061 freqchkw.m sortcom.m ugain.m |
|
4062 freqresp.m ss2sys.m unpacksys.m |
|
4063 gram.m ss2tf.m wgt1o.m |
|
4064 h2norm.m ss2zp.m zgfmul.m |
|
4065 h2syn.m starp.m zgfslv.m |
|
4066 hinf_ctr.m step.m zginit.m |
|
4067 hinfdemo.m stepimp.m zgpbal.m |
|
4068 hinfnorm.m strappend.m; zgreduce.m |
|
4069 hinfsyn.m susball.m zgrownorm.m |
|
4070 hinfsyn_chk.m swap.m zgscal.m |
|
4071 impulse.m swapcols.m zgsgiv.m |
|
4072 is_abcd.m swaprows.m zgshsr.m |
|
4073 is_controllable.m sys2fir.m zp2ss.m |
|
4074 is_detectable.m sys2ss.m zp2ssg2.m |
|
4075 is_dgkf.m sys2tf.m zp2sys.m |
|
4076 is_digital.m sys2zp.m zp2tf.m |
|
4077 is_observable.m sysadd.m zpout.m |
|
4078 is_sample.m sysappend.m |
|
4079 |
|
4080 Thu Nov 5 13:28:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4081 |
|
4082 * configure.in (AC_OUTPUT): Escape newlinew in macro call with \. |
|
4083 |
|
4084 * strings/deblank.m: Make it work for string arrays too. |
|
4085 |
3211
|
4086 Wed Nov 4 21:51:13 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4087 |
|
4088 * linear-algebra/housh.m: New file from the OCST. |
|
4089 * linear-algebra/krygetq.m: Ditto. |
|
4090 * linear-algebra/krylov.m: Ditto. |
|
4091 * linear-algebra/krylovb.m: Ditto. |
|
4092 * linear-algebra/qrhouse.m: Ditto. |
|
4093 * general/is_duplicate_entry.m: Ditto. |
|
4094 |
|
4095 * general/is_symmetric.m: Call is_square instead of doing that |
|
4096 check in line. |
|
4097 |
3196
|
4098 Wed Oct 28 11:51:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4099 |
3202
|
4100 * general/is_square.m: |
|
4101 |
|
4102 * general/isempty.m, general/is_matrix.m: Delete. |
|
4103 |
|
4104 * general/is_symmetric: Delete special case for strings. Whether |
|
4105 the conversion is valid should depend on implicit_str_to_num_ok. |
|
4106 |
|
4107 * general/is_square.m: If arg is not a matrix, don't check size, |
|
4108 just return 0. |
|
4109 * general/is_symmetric: Likewise. |
|
4110 * general/is_vector.m: Likewise. |
|
4111 * general/is_scalar.m: Likewise. |
|
4112 |
3196
|
4113 * general/length.m: Delete. |
|
4114 |
3191
|
4115 Fri Oct 23 00:21:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4116 |
|
4117 * configure.in: Add finance/Makefile, statistics/base/Makefile, |
|
4118 statistics/distributions/Makefile, statistics/models/Makefile, |
|
4119 and statistics/tests/Makefile to the list of files to create. |
|
4120 |
|
4121 * finance/Makefile.in, statistics/base/Makefile.in, |
|
4122 statistics/distributions/Makefile.in, statistics/models/Makefile.in, |
|
4123 statistics/tests/Makefile.in: New files. |
|
4124 * statistics/Makefile.in: Delete file lists. Now only handle |
|
4125 subdirectories. |
|
4126 * Makefile.in (SUBDIRS): Add finance. |
|
4127 |
|
4128 * Move the following files from statistics to statistics/base: |
|
4129 |
|
4130 corrcoef.m |
|
4131 kurtosis.m |
|
4132 mahalanobis.m |
|
4133 median.m |
|
4134 ols.m |
|
4135 skewness.m |
|
4136 std.m |
|
4137 |
|
4138 New files, from Kurt Hornik's octave-ci package: |
|
4139 |
|
4140 * finance (new directory): |
|
4141 |
|
4142 fv.m |
|
4143 fvl.m |
|
4144 irr.m |
|
4145 nper.m |
|
4146 npv.m |
|
4147 pmt.m |
|
4148 pv.m |
|
4149 pvl.m |
|
4150 rate.m |
|
4151 vol.m |
|
4152 |
|
4153 * linear-algebra/dmult.m |
|
4154 |
|
4155 * signal: |
|
4156 |
|
4157 arch_fit.m |
|
4158 arch_rnd.m |
|
4159 arch_test.m |
|
4160 arma_rnd.m |
|
4161 autocor.m |
|
4162 autocov.m |
|
4163 autoreg_matrix.m |
|
4164 bartlett.m |
|
4165 blackman.m |
|
4166 diffpara.m |
|
4167 durbinlevinson.m |
|
4168 fractdiff.m |
|
4169 hamming.m |
|
4170 hanning.m |
|
4171 hurst.m |
|
4172 periodogram.m |
|
4173 rectangle_lw.m |
|
4174 rectangle_sw.m |
|
4175 sinetone.m |
|
4176 sinewave.m |
|
4177 spectral_adf.m |
|
4178 spectral_xdf.m |
|
4179 spencer.m |
|
4180 stft.m |
|
4181 synthesis.m |
|
4182 triangle_lw.m |
|
4183 triangle_sw.m |
|
4184 yulewalker.m |
|
4185 |
|
4186 * statistics/base (new directory): |
|
4187 |
|
4188 center.m |
|
4189 cloglog.m |
|
4190 cor.m |
|
4191 cov.m |
|
4192 cut.m |
|
4193 iqr.m |
|
4194 kendall.m |
|
4195 logit.m |
|
4196 mean.m |
|
4197 meansq.m |
|
4198 moment.m |
|
4199 ppplot.m |
|
4200 probit.m |
|
4201 qqplot.m |
|
4202 range.m |
|
4203 ranks.m |
|
4204 run_count.m |
|
4205 spearman.m |
|
4206 statistics.m |
|
4207 studentize.m |
|
4208 table.m |
|
4209 values.m |
|
4210 var.m |
|
4211 |
|
4212 (Replaces cov.m and mean.m with new versions.) |
|
4213 |
|
4214 * statistics/distributions (new directory): |
|
4215 |
|
4216 beta_cdf.m |
|
4217 beta_inv.m |
|
4218 beta_pdf.m |
|
4219 beta_rnd.m |
|
4220 binomial_cdf.m |
|
4221 binomial_inv.m |
|
4222 binomial_pdf.m |
|
4223 binomial_rnd.m |
|
4224 cauchy_cdf.m |
|
4225 cauchy_inv.m |
|
4226 cauchy_pdf.m |
|
4227 cauchy_rnd.m |
|
4228 chisquare_cdf.m |
|
4229 chisquare_inv.m |
|
4230 chisquare_pdf.m |
|
4231 chisquare_rnd.m |
|
4232 discrete_cdf.m |
|
4233 discrete_inv.m |
|
4234 discrete_pdf.m |
|
4235 discrete_rnd.m |
|
4236 empirical_cdf.m |
|
4237 empirical_inv.m |
|
4238 empirical_pdf.m |
|
4239 empirical_rnd.m |
|
4240 exponential_cdf.m |
|
4241 exponential_inv.m |
|
4242 exponential_pdf.m |
|
4243 exponential_rnd.m |
|
4244 f_cdf.m |
|
4245 f_inv.m |
|
4246 f_pdf.m |
|
4247 f_rnd.m |
|
4248 gamma_cdf.m |
|
4249 gamma_inv.m |
|
4250 gamma_pdf.m |
|
4251 gamma_rnd.m |
|
4252 geometric_cdf.m |
|
4253 geometric_inv.m |
|
4254 geometric_pdf.m |
|
4255 geometric_rnd.m |
|
4256 hypergeometric_cdf.m |
|
4257 hypergeometric_inv.m |
|
4258 hypergeometric_pdf.m |
|
4259 hypergeometric_rnd.m |
|
4260 kolmogorov_smirnov_cdf.m |
|
4261 laplace_cdf.m |
|
4262 laplace_inv.m |
|
4263 laplace_pdf.m |
|
4264 laplace_rnd.m |
|
4265 logistic_cdf.m |
|
4266 logistic_inv.m |
|
4267 logistic_pdf.m |
|
4268 logistic_rnd.m |
|
4269 lognormal_cdf.m |
|
4270 lognormal_inv.m |
|
4271 lognormal_pdf.m |
|
4272 lognormal_rnd.m |
|
4273 normal_cdf.m |
|
4274 normal_inv.m |
|
4275 normal_pdf.m |
|
4276 normal_rnd.m |
|
4277 pascal_cdf.m |
|
4278 pascal_inv.m |
|
4279 pascal_pdf.m |
|
4280 pascal_rnd.m |
|
4281 poisson_cdf.m |
|
4282 poisson_inv.m |
|
4283 poisson_pdf.m |
|
4284 poisson_rnd.m |
|
4285 stdnormal_cdf.m |
|
4286 stdnormal_inv.m |
|
4287 stdnormal_pdf.m |
|
4288 stdnormal_rnd.m |
|
4289 t_cdf.m |
|
4290 t_inv.m |
|
4291 t_pdf.m |
|
4292 t_rnd.m |
|
4293 uniform_cdf.m |
|
4294 uniform_inv.m |
|
4295 uniform_pdf.m |
|
4296 uniform_rnd.m |
|
4297 weibull_cdf.m |
|
4298 weibull_inv.m |
|
4299 weibull_pdf.m |
|
4300 weibull_rnd.m |
|
4301 wiener_rnd.m |
|
4302 |
|
4303 * statistics/models (new directory): |
|
4304 |
|
4305 logistic_regression.m |
|
4306 logistic_regression_derivatives.m |
|
4307 logistic_regression_likelihood.m |
|
4308 |
|
4309 * statistics/tests (new directory): |
|
4310 |
|
4311 anova.m |
|
4312 bartlett_test.m |
|
4313 chisquare_test_homogeneity.m |
|
4314 chisquare_test_independence.m |
|
4315 cor_test.m |
|
4316 f_test_regression.m |
|
4317 hotelling_test.m |
|
4318 hotelling_test_2.m |
|
4319 kolmogorov_smirnov_test.m |
|
4320 kolmogorov_smirnov_test_2.m |
|
4321 kruskal_wallis_test.m |
|
4322 manova.m |
|
4323 mcnemar_test.m |
|
4324 prop_test_2.m |
|
4325 run_test.m |
|
4326 sign_test.m |
|
4327 t_test.m |
|
4328 t_test_2.m |
|
4329 t_test_regression.m |
|
4330 u_test.m |
|
4331 var_test.m |
|
4332 welch_test.m |
|
4333 wilcoxon_test.m |
|
4334 z_test.m |
|
4335 z_test_2.m |
|
4336 |
|
4337 Thu Oct 22 12:25:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4338 |
|
4339 * time/date.m: Use %Y, not %y in format string, for Matlab 5 |
|
4340 compatibility and to avoid Y2K problems. |
|
4341 |
3190
|
4342 Mon Oct 19 17:26:35 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4343 |
|
4344 * polynomial/polyfit.m: Just use the \ operator to handle the |
|
4345 least-squares solution. |
|
4346 |
3180
|
4347 Thu Sep 3 12:40:47 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4348 |
|
4349 * strings/str2num.m: If eval returns a string, return an empty matrix. |
|
4350 |
|
4351 * strings/strrep.m: Don't convert args to numeric values. |
|
4352 Prevent warnings for empty string args. |
|
4353 From Georg Thimm <thimm@idiap.ch>. |
|
4354 |
|
4355 * strings/strcat.m: Prevent warnings for empty string args. |
|
4356 |
|
4357 Wed Sep 2 17:20:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4358 |
|
4359 * miscellaneous/menu.m: Remove special case for empty string |
|
4360 returned from input(). Add second arg to eval() to catch errors. |
|
4361 |
3178
|
4362 Thu Jun 18 16:32:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4363 |
|
4364 * plot/__plt__.m: Don't call usleep. |
|
4365 |
3175
|
4366 Mon May 18 11:42:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4367 |
|
4368 * linear-algebra/dot.m: New function. |
|
4369 |
|
4370 * strings/lower.m, strings/upper.m: New functions, for Matlab |
|
4371 compatibility. |
|
4372 |
|
4373 Fri May 15 01:16:53 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4374 |
|
4375 * plot/hist.m: Also allow just one output argument. |
|
4376 |
|
4377 Sun May 10 23:00:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4378 |
|
4379 * strings/deblank.m: Make it work if the string is only blanks. |
|
4380 |
|
4381 Tue May 5 00:53:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4382 |
|
4383 * plot/__plt2mv__.m: Delete calls to keyboard. |
|
4384 |
|
4385 Mon May 4 11:43:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4386 |
|
4387 * plot/oneplot.m: Fix typo. |
|
4388 |
3174
|
4389 Wed Apr 22 12:11:27 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4390 |
|
4391 * miscellaneous/flops.m: Allow a single argument too. |
|
4392 |
|
4393 Tue Apr 21 10:18:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4394 |
|
4395 * strings/str2mat.m: Also handle case when there are no empty |
|
4396 strings correctly. |
|
4397 |
|
4398 Mon Apr 20 22:14:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4399 |
|
4400 * strings/isletter.m: New function, for Matlab compatibility. |
|
4401 |
3168
|
4402 Fri Apr 17 10:53:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4403 |
|
4404 * strings/str2mat.m: Handle string matrices too. |
|
4405 |
3167
|
4406 Wed Apr 15 11:16:01 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4407 |
|
4408 * audio/loadaudio.m: Accept "pcm" as another file extension for |
|
4409 linear encoding. |
|
4410 |
|
4411 * audio/saveaudio.m, audio/loadaudio.m, audio/playaudio.m, |
|
4412 audio/record.m: Open files in binary mode. |
|
4413 |
3164
|
4414 Fri Apr 10 10:46:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4415 |
|
4416 * miscellaneous/dump_prefs.m: Use string array for list of values. |
|
4417 Move functionality of dump_1_pref here, but use built-in function |
|
4418 type to extract value, and put it inside try/catch block. |
|
4419 * miscellaneous/dump_1_pref.m: Delete unused function. |
|
4420 |
3162
|
4421 Wed Apr 8 13:17:58 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4422 |
|
4423 * plot/__pltopt1.m__: New file. |
|
4424 * plot/__pltopt.m__: Handle opt as a string array by calling |
|
4425 __pltopt1__ multiple times and returning a string array with rows |
|
4426 corresponding to the rows of opt. |
|
4427 * plot/__plt2ss__.m, plot/__plt2vv__.m, plot/__plt2vm__.m, |
|
4428 plot/__plt2mv__.m, plot/__plt2mm__.m: Handle fmt as a string |
|
4429 array. |
|
4430 |
|
4431 Fri Mar 27 03:00:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4432 |
|
4433 * plot/mplot.m: Fix misspellings of global variables. |
|
4434 Don't call clearplot. |
|
4435 |
|
4436 Tue Mar 17 17:45:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4437 |
|
4438 * plot/subplot.m, plot/multiplot.m: Set gnuplot_command_replot to |
|
4439 "cle;rep" when going in ot multiplot mode. |
|
4440 * plot/oneplot.m: Reset gnuplot_command_replot to "rep" when |
|
4441 switching out of multiplot mode. |
|
4442 |
3156
|
4443 Fri Feb 20 01:31:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
3148
|
4444 |
3156
|
4445 * plot/mplot.m, plot/subplot.m, plot/oneplot.m, plot/multiplot.m, |
|
4446 plot/subwindow.m: Call clearplot after setting up multiplot mode. |
3148
|
4447 |
3141
|
4448 Tue Feb 3 00:18:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4449 |
|
4450 * special-matrix/sylvester_matrix.m: Rename from hadamard.m |
|
4451 |
|
4452 * miscellaneous/bug_report.m: Don't try to get smart with |
|
4453 OCTAVE_HOME. Assume octave-bug can be found in EXEC_PATH. |
|
4454 |
|
4455 * Makefile.in (install): Create separate ls-R files for |
|
4456 $(datadir) and $(libexecdir). |
|
4457 (uninstall): Remove both ls-R files. |
|
4458 |
3136
|
4459 Sat Jan 31 01:09:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4460 |
|
4461 * signal/fftshift.m: New file. |
|
4462 |
|
4463 * plot/contour.m: Fix for non-square case. |
|
4464 |
|
4465 * general/randperm.m: New file. |
|
4466 |
|
4467 Fri Jan 30 15:20:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4468 |
|
4469 * specfun/betai.m: Restore file for compatibility with previous |
|
4470 versions. Call betainc with reordered args. |
|
4471 * specfun/gammai.m: Likewise, call gammainc with reordered args. |
|
4472 |
3131
|
4473 Wed Jan 28 22:44:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4474 |
|
4475 * plot/contour.m: Handle discrete contour levels. |
|
4476 |
|
4477 Tue Jan 27 04:31:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4478 |
|
4479 * control/lyap.m: For compatibility with Matlab, solve |
|
4480 A*X + X*A' + C = 0 instead of A'*X + X*A + C = 0. |
|
4481 |
3124
|
4482 Wed Dec 10 00:14:29 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4483 |
|
4484 * specfun/bessel.m: New file. |
|
4485 |
|
4486 * specfun/betai.m, specfun/betainc.m, specfun/gammai.m, |
|
4487 specfun/gammainc.m: Delete. |
|
4488 |
3106
|
4489 Wed Nov 19 00:19:18 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4490 |
|
4491 * image/colormap.m: Initialize __current_color_map__ in global |
|
4492 statement. |
|
4493 * miscellaneous/toc.m: Initialize __tic_toc_timestamp__ in global |
|
4494 statement. |
|
4495 * plot/axis.m: Initialize __current_axis__ in global statement. |
|
4496 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, |
|
4497 plot/subwindow.m: Initialize __multiplot_mode__ in global statement. |
|
4498 |
3103
|
4499 Tue Nov 18 01:35:50 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4500 |
|
4501 * time/tic.m: Rename _time_tic_called to __tic_toc_timestamp__. |
|
4502 * time/toc.m: Likewise. |
|
4503 |
|
4504 * image/colormap.m: Rename CURRENT_COLOR_MAP to __current_color_map__. |
|
4505 |
|
4506 * plot/mplot.m, plot/multiplot.m, plot/subplot.m: Don't do |
|
4507 anything special for automatic_replot when in multiplot mode -- |
|
4508 recent 3.6beta releases handle this correctly. |
|
4509 |
|
4510 * plot/figure.m: Ensure that we are not in multiplot mode before |
|
4511 setting the terminal type. |
|
4512 |
|
4513 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, |
|
4514 plot/subwindow.m: Use leading and trailing underscores for |
|
4515 `private' globals. |
|
4516 |
|
4517 * plot/oneplot.m: Don't do anything if gnuplot_has_multiplot is false. |
|
4518 |
3101
|
4519 Fri Nov 14 10:53:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4520 |
|
4521 * plot/__pltopt__.m: Use sprintf instead of strcat when adding TITLE. |
|
4522 |
3091
|
4523 Fri Oct 10 11:18:10 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4524 |
3092
|
4525 * specfun/gammai.m: Avoid problems with whitespace when |
|
4526 constructing matrices. |
|
4527 |
3091
|
4528 * polynomial/polyfit.m: Compute yf correctly. From Seung Lee |
|
4529 <SJL@nrc.gov>. Also return yf in the same orientation as the |
|
4530 original y vector. |
|
4531 |
3085
|
4532 Fri Sep 19 17:04:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4533 |
|
4534 * linear-algebra/cross.m: Use direct formula instead of calling |
|
4535 det three times in a loop. If both args are column (row) vectors, |
|
4536 return a column (row) vector. If they don't match, pay attention |
|
4537 to the value of prefer_column_vectors. |
|
4538 |
5095
|
4539 Thu Aug 28 15:31:20 1997 Rolf Fabian <fabian@olymp.Umwelt.TU-Cottbus.de> |
3085
|
4540 |
|
4541 * polynomial/polyvalm.m: Don't assume orthogonal eigenvectors for |
|
4542 nonsymmetric matrices. |
|
4543 |
|
4544 * general/tril.m: Fix usage message. |
|
4545 |
|
4546 * polynomial/polyvalm.m: Fix error messages. |
|
4547 * polynomial/polyderiv.m: Likewise. |
|
4548 * polynomial/polyval.m: Likewise. |
|
4549 |
3081
|
4550 Wed Aug 13 14:14:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4551 |
|
4552 * strings/blanks.m: Allow blanks(0) to return empty string. |
|
4553 Allow negative arguments if treat_neg_dim_as_zero is true. |
|
4554 |
3063
|
4555 Wed Jun 25 21:26:24 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4556 |
|
4557 * plot/mesh.m: Set noparametric plot mode after plotting. |
|
4558 |
5095
|
4559 Wed Jun 25 21:06:10 1997 Rick Niles <niles@axp745.gsfc.nasa.gov> |
3062
|
4560 |
|
4561 * plot/__pltopt__.m: Handle key/legend names. |
|
4562 Correctly set colors, line styles, and point styles. |
|
4563 |
3061
|
4564 Wed Jun 25 13:34:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4565 |
|
4566 * polynomial/polyfit.m: Return fit y values as second output. |
|
4567 Don't use QR factorization to solve least squares problem. |
|
4568 |
|
4569 Wed Jun 18 10:24:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4570 |
|
4571 * control/dlqr.m: Use ao, not a, to compute k. |
|
4572 |
3024
|
4573 Tue Jun 3 12:16:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4574 |
|
4575 * miscellaneous/path.m: New file. |
|
4576 |
2993
|
4577 Wed May 21 11:45:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4578 |
|
4579 * miscellaneous/bug_report.m: Pass file id to dump_prefs, not file |
|
4580 name. |
|
4581 |
2968
|
4582 Mon May 12 02:04:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4583 |
|
4584 * specfun/erfinv.m: Add missing semicolon. |
|
4585 |
2870
|
4586 Wed Apr 2 22:04:03 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4587 |
|
4588 * miscellaneous/xor.m: Make type of return value logical. |
|
4589 |
2853
|
4590 Fri Mar 28 16:19:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4591 |
|
4592 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
|
4593 warn_comma_in_global_decl. |
|
4594 |
2831
|
4595 Tue Mar 25 22:00:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4596 |
|
4597 * miscellaneous/bug_report.m: Use __OCTAVE_HOME__ to find |
|
4598 octave-bug script. |
|
4599 |
2823
|
4600 Mon Mar 24 16:49:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4601 |
2824
|
4602 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
|
4603 prefer_zero_one_indexing. |
|
4604 |
2823
|
4605 * general/logical.m: New file. |
|
4606 |
2816
|
4607 Sat Mar 15 15:07:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4608 |
|
4609 * general/nextpow2.m: Correctly handle new meaning of is_scalar() |
|
4610 and is_vector(). |
|
4611 |
5095
|
4612 Thu Mar 13 16:36:35 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
2813
|
4613 |
|
4614 * specfun/erfinv.m: Scale update by sqrt (pi) / 2. |
|
4615 Use tolerance of 2 * eps. |
|
4616 |
2811
|
4617 Wed Mar 12 16:57:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4618 |
|
4619 * Makefile.in (install-strip): New target. |
|
4620 * audio/Makefile.in: Ditto. |
|
4621 * control/Makefile.in: Ditto. |
|
4622 * elfun/Makefile.in: Ditto. |
|
4623 * general/Makefile.in: Ditto. |
|
4624 * image/Makefile.in: Ditto. |
|
4625 * io/Makefile.in: Ditto. |
|
4626 * linear-algebra/Makefile.in: Ditto. |
|
4627 * miscellaneous/Makefile.in: Ditto. |
|
4628 * plot/Makefile.in: Ditto. |
|
4629 * polynomial/Makefile.in: Ditto. |
|
4630 * set/Makefile.in: Ditto. |
|
4631 * signal/Makefile.in: Ditto. |
|
4632 * specfun/Makefile.in: Ditto. |
|
4633 * special-matrix/Makefile.in: Ditto. |
|
4634 * startup/Makefile.in: Ditto. |
|
4635 * statistics/Makefile.in: Ditto. |
|
4636 * strings/Makefile.in: Ditto. |
|
4637 |
2809
|
4638 Tue Mar 11 10:14:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4639 |
|
4640 * elfun/coth.m: Write as cosh(x) ./ sinh(x) instead of 1 ./ tanh(x). |
|
4641 |
2798
|
4642 Fri Mar 7 23:06:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4643 |
|
4644 * statistics/corrcoef.m: Make it actually work. |
|
4645 |
2795
|
4646 Thu Mar 6 12:36:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4647 |
2798
|
4648 * statistics/corrcoef.m: Don't fail if single argument is a matrix. |
2795
|
4649 |
2779
|
4650 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775
|
4651 |
|
4652 * Version 2.0.5 released. |
|
4653 |
2745
|
4654 Wed Feb 26 01:48:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4655 |
2749
|
4656 * Makefile.in (maintainer-clean): Also remove configure. |
|
4657 |
2746
|
4658 * signal/fftconv.m: Check inputs with is_vector(), not is_matrix(). |
|
4659 |
2745
|
4660 * general/is_matrix.m: Return zero for empty matrices. |
|
4661 |
|
4662 Tue Feb 25 15:16:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4663 |
|
4664 * linear-algebra/vech.m: Size result just once. |
|
4665 |
2726
|
4666 Sun Feb 23 00:15:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4667 |
|
4668 * general/is_square.m: Handle empty matrices correctly. |
|
4669 * general/is_symmetric.m: Handle empty matrices and strings. |
|
4670 |
2716
|
4671 Sat Feb 22 01:06:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4672 |
|
4673 * polynomial/conv.m: Check inputs with is_vector(), not is_matrix(). |
|
4674 * polynomial/deconv.m: Likewise. |
|
4675 * polynomial/polyderiv.m: Likewise. |
|
4676 * polynomial/polyinteg.m: Likewise. |
|
4677 * polynomial/polyreduce.m: Likewise. |
|
4678 * polynomial/polyval.m: Likewise. |
|
4679 * polynomial/polyvalm.m: Likewise. |
|
4680 * general/postpad.m: Likewise. |
|
4681 * general/prepad.m: Likewise. |
|
4682 |
|
4683 * polynomial/compan.m: Check input with is_vector(), not |
|
4684 is_matrix(). Handle scalar case. |
|
4685 |
2711
|
4686 Fri Feb 21 13:36:58 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4687 |
2715
|
4688 * plot/contour.m: Order data so that it is consistent with |
|
4689 meshgrid and mesh. |
|
4690 |
2711
|
4691 * plot/meshdom.m, plot/meshgrid.m: Change help message. |
|
4692 * plot/sombrero.m: Use meshgrid, not meshdom. |
|
4693 |
2709
|
4694 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702
|
4695 |
|
4696 * Version 2.0.4 released. |
|
4697 |
2706
|
4698 Wed Feb 19 10:30:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4699 |
2702
|
4700 * miscellaneous/paren.m: New file. |
|
4701 |
2693
|
4702 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690
|
4703 |
|
4704 * Version 2.0.3 released. |
|
4705 |
2676
|
4706 Thu Feb 13 19:06:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4707 |
|
4708 * image/saveimage.m: Only clip image data that is actually out of |
|
4709 range. |
|
4710 |
2667
|
4711 Sun Feb 9 19:52:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4712 |
|
4713 * general/is_matrix.m: Scalars, vectors, and empty matrices may |
|
4714 also be considered to be matrices. |
|
4715 |
|
4716 * general/is_vector.m: Scalars may also be considered to be vectors. |
|
4717 |
|
4718 * general/isempty.m: Use size(), not rows() and columns(). |
|
4719 |
|
4720 * plot/contour.m: Convert set to gset. |
|
4721 Set view to 0, 0, 1, 1, not 0, 0, 1.9, 1. |
|
4722 |
2663
|
4723 Fri Feb 7 12:55:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4724 |
|
4725 * specfun/erfinv.m: Fix typo in last change. |
|
4726 |
2650
|
4727 Fri Jan 31 09:30:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4728 |
|
4729 * image/loadimage.m: Make it possible to load files with image |
|
4730 data named X or img. |
|
4731 |
|
4732 * image/default.img: Change name of image from X to img to match |
|
4733 what saveimage does now. |
|
4734 |
|
4735 * image/loadimage.m: Rename X to be img, to match what saveimage |
|
4736 does now. |
|
4737 |
2632
|
4738 Mon Jan 27 13:48:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4739 |
2634
|
4740 * Version 2.0.2 released. |
|
4741 |
2632
|
4742 * plot/__plt__.m: Use usleep() instead of replot to try to avoid |
|
4743 weird missing-lines bug without creating extra plots unecessarily. |
|
4744 |
2624
|
4745 Sat Jan 25 22:37:07 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4746 |
|
4747 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
4748 elfun/Makefile.in, general/Makefile.in, image/Makefile.in, |
|
4749 io/Makefile.in, linear-algebra/Makefile.in, |
|
4750 miscellaneous/Makefile.in, plot/Makefile.in, |
|
4751 polynomial/Makefile.in, set/Makefile.in, signal/Makefile.in, |
|
4752 specfun/Makefile.in, special-matrix/Makefile.in, |
|
4753 startup/Makefile.in, statistics/Makefile.in, strings/Makefile.in, |
|
4754 time/Makefile.in (bin-dist): New target. |
|
4755 |
2621
|
4756 Wed Jan 22 11:28:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4757 |
|
4758 * specfun/erfinv.m: Avoid A([]) = X, X != [] error. |
|
4759 |
|
4760 Tue Jan 21 11:16:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4761 |
|
4762 * miscellaneous/xor.m: Make it work. |
|
4763 |
2613
|
4764 Mon Jan 20 12:28:34 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4765 |
|
4766 * plot/sombrero.m: Doc fix. |
|
4767 |
2602
|
4768 Tue Jan 7 00:16:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4769 |
|
4770 * Version 2.0.1 released. |
|
4771 |
2601
|
4772 Thu Dec 19 22:16:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4773 |
|
4774 * elfun/lcm.m: Replace missing if statement. |
|
4775 |
|
4776 * elfun/gcd.m: Report error if no input args. |
|
4777 * elfun/lcm.m: Likewise. |
|
4778 |
2597
|
4779 Mon Dec 16 15:23:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4780 |
|
4781 * Makefile.in (install): Use ls -LR to create ls-R database. |
|
4782 Also list contents of $libexecdir/octave in ls-R database. |
|
4783 |
2583
|
4784 Tue Dec 10 01:43:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4785 |
|
4786 * Version 2.0 released. |
|
4787 |
2575
|
4788 Fri Dec 6 15:23:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4789 |
|
4790 * Version 1.94. |
|
4791 |
2558
|
4792 Sun Dec 1 20:55:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4793 |
|
4794 * strings/str2num.m: New file. |
|
4795 |
2554
|
4796 Wed Nov 20 01:00:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4797 |
|
4798 * Version 1.93. |
|
4799 |
2540
|
4800 Tue Nov 19 15:13:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4801 |
|
4802 * linear-algebra/commutation_matrix.m, linear-algebra/cross.m, |
|
4803 linear-algebra/duplication_matrix.m, linear-algebra/vec.m, |
|
4804 linear-algebra/vech.m: New files from Kurt Hornik. |
|
4805 |
|
4806 * general/nextpow2.m, general/shift.m, general/diff.m, |
|
4807 general/common_size.m: New files from Kurt Hornik. |
|
4808 |
|
4809 * miscellaneous/bincoeff.m, miscellaneous/xor.m: |
|
4810 New files from Kurt Hornik. |
|
4811 |
|
4812 * signal/detrend.m: New file from Kurt Hornik. |
|
4813 |
|
4814 * specfun/betai.m, specfun/gammai.m, specfun/erfinv.m, |
|
4815 specfun/pow2.m, specfun/log2.m: |
|
4816 New files and updates from Kurt Hornik. |
|
4817 |
2523
|
4818 Fri Nov 15 18:13:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4819 |
|
4820 * plot/__plt__.m: Add explicit replot after last command is |
|
4821 issued, to force all lines to be displayed. Hmm. |
|
4822 |
2512
|
4823 Thu Nov 14 00:06:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4824 |
2520
|
4825 * plot/axis.m, plot/bottom_title.m, plot/contour.m, |
|
4826 plot/figure.m, plot/grid.m, plot/loglog.m, plot/mesh.m, |
|
4827 plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/plot.m, |
|
4828 plot/plot_border.m, plot/polar.m, plot/semilogx.m, |
|
4829 plot/semilogy.m, plot/subplot.m, plot/subwindow.m, plot/title.m, |
|
4830 plot/top_title.m, plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: |
|
4831 Uset gset, not set. |
|
4832 |
2512
|
4833 * Version 1.92. |
|
4834 |
2482
|
4835 Thu Nov 7 12:43:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4836 |
2486
|
4837 * image/saveimage.m: When writing PostScript, name Octave as the |
|
4838 almighty Creator. Use single call to fprintf instead of looping. |
|
4839 |
|
4840 * image/Makefile.in: Delete references to octtopnm. |
|
4841 |
|
4842 * general/logspace.m: Doc fix. |
|
4843 |
2482
|
4844 * Version 1.91. |
|
4845 |
2458
|
4846 Sat Nov 2 21:06:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4847 |
|
4848 * image/image.m: Use tmpnam() instead of home-brew scheme. |
|
4849 |
|
4850 * audio/record.m, audio/playaudio.m: Use tmpnam() instead of |
|
4851 octave_tmp_file_name(). Use unwind_protect to ensure tmp file is |
|
4852 deleted. |
|
4853 * miscellaneous/bug_report.m: Likewise. Also use unlink() instead |
|
4854 of a system() command to delete the tmp file. |
|
4855 |
2452
|
4856 Wed Oct 30 17:19:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4857 |
|
4858 * Version 1.90. |
|
4859 |
|
4860 * Makefile.in (DISTFILES): Add ChangeLog. |
|
4861 |
2360
|
4862 Thu Oct 10 17:31:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4863 |
|
4864 * plot/subplot.m, plot/multiplot.m, plot/mplot.m: |
|
4865 Don't check for string value of automatic_replot. |
|
4866 |
|
4867 * image/ind2ind.m, image/ind2rgb.m, image/ind2gray.m: |
|
4868 Temporarily set do_fortran_indexing to 1, not "true". |
|
4869 |
|
4870 * miscellaneous/menu.m: Temporarily set page_screen_output to 0, |
|
4871 not "false". |
|
4872 |
|
4873 * linear-algebra/cond.m: Don't compare propagate_empty_matrices to |
|
4874 "false". |
|
4875 |
2355
|
4876 Tue Aug 20 18:27:36 1996 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
|
4877 |
|
4878 * strings/substr.m: Allow negative OFFSET. LEN is now optional. |
|
4879 |
2330
|
4880 Mon Jul 15 16:15:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4881 |
|
4882 * miscellaneous/bug_report.m: Don't redirect output to /dev/tty in |
|
4883 system command. |
|
4884 |
|
4885 Fri Jul 12 12:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4886 |
|
4887 * __plr1__.m: Renamed from polar_int_1.m. |
|
4888 * __plr2__.m: Renamed from polar_int_2.m. |
|
4889 * __plr__.m: Renamed from polar_int.m. |
|
4890 * __plt1__.m: Renamed from plot_int_1.m. |
|
4891 * __plt2__.m: Renamed from plot_int_2.m. |
|
4892 * __plt2mm__.m: Renamed from plot_2_m_m_.m. |
|
4893 * __plt2mv__.m: Renamed from plot_2_m_v_.m. |
|
4894 * __plt2ss__.m: Renamed from plot_2_s_s_.m. |
|
4895 * __plt2vm__.m: Renamed from plot_2_v_m_.m. |
|
4896 * __plt2vv__.m: Renamed from plot_2_v_v_.m. |
|
4897 * __plt__.m: Renamed from plot_int.m. |
|
4898 * __pltopt__.m: Renamed from plot_opt.m. |
|
4899 Change all callers. |
|
4900 |
|
4901 Thu Jul 11 17:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4902 |
|
4903 * All .m files: Add regular Author:, Created:, and Adapted-By: |
|
4904 comments like those found in Emacs lisp files. |
|
4905 |
|
4906 Mon Jun 24 04:16:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4907 |
|
4908 * All .m files: Change comment style. |
|
4909 |
|
4910 Fri Jun 14 01:42:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4911 |
|
4912 * bottom_title.m, mplot.m, multiplot.m, oneplot.m, plot_border.m, |
|
4913 subplot.m, subwindow.m, top_title.m: |
|
4914 Print error message if gnuplot_has_multiplot is not true. |
|
4915 |
|
4916 Thu Jun 6 00:18:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4917 |
|
4918 * plot/figure.m: New function. |
|
4919 |
|
4920 Wed Jun 5 18:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4921 |
|
4922 * strings/strrep.m: New function. |
|
4923 |
|
4924 Thu May 23 15:04:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4925 |
|
4926 * strings/bin2dec.m, strings/blanks.m, strings/deblank.m, |
|
4927 strings/dec2bin.m, strings/dec2hex.m, strings/findstr.m, |
|
4928 strings/hex2dec.m, strings/index.m, strings/rindex.m, |
|
4929 strings/split.m, strings/str2mat.m, strings/substr.m: |
|
4930 New functions from Kurt Hornik, heavily modified by jwe. |
|
4931 |
|
4932 * general/reshape.m: Allow strings to be reshaped too. |
|
4933 |
|
4934 * strings/strcmp.m: No longer need to set implicit_str_to_num_ok. |
|
4935 Always return a scalar. |
|
4936 |
|
4937 Wed May 22 19:52:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4938 |
|
4939 * polynomial/polyfit.m: Make orientation of result compatible with |
|
4940 Matlab. |
|
4941 |
|
4942 Sat May 18 17:32:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4943 |
|
4944 * polynomial/polyfit.m: Add missing close paren. |
|
4945 |
|
4946 Thu May 16 10:23:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4947 |
|
4948 * plot/plot_opt.m: Set compatibility arg in call to sscanf. |
|
4949 |
|
4950 * io/scanf.m: Delete. |
|
4951 |
|
4952 Mon May 13 09:37:38 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4953 |
|
4954 * statistics/median.m: Fix typo in usage message. |
|
4955 |
|
4956 Wed Apr 24 02:45:52 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4957 |
|
4958 * miscellaneous/popen2.m: New file. |
|
4959 |
|
4960 Wed Apr 17 18:34:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4961 |
|
4962 * configure.in (AC_OUTPUT): Add io/Makefile. |
|
4963 |
|
4964 * io: New directory. |
|
4965 * Makefile.in (SUBDIRS): Add it to the list. |
|
4966 |
|
4967 * miscellaneous/flops.m: New file. |
|
4968 |
|
4969 Fri Mar 22 04:40:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4970 |
|
4971 * miscellaneous/cputime.m: Return three arguments instead of a |
|
4972 vector, for compatibility with previous versions and with Matlab |
|
4973 (which only returns one scalar value). |
|
4974 |
|
4975 Wed Mar 20 05:09:48 1996 Kurt Hornik <Kurt.Hornik@tuwien.ac.at> |
|
4976 |
|
4977 * general/triu.m: Compute lower bound on loop index correctly. |
|
4978 * general/tril.m: Likewise, for upper bound. |
|
4979 |
|
4980 Tue Feb 6 09:29:43 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4981 |
|
4982 * image/saveimage.m: For color images, make sure indices into |
|
4983 temporary colormap and result matrix have proper orientation. |
|
4984 Set grey flag correctly. |
|
4985 |
|
4986 Tue Jan 9 00:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4987 |
|
4988 * statistics/std.m: Use better formula (from Jim Van Zandt |
|
4989 jrv@vanzandt.mv.com). |
|
4990 |
|
4991 Sun Jan 7 20:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4992 |
|
4993 * meshgrid.m: New file (from Jim Van Zandt jrv@vanzandt.mv.com). |
|
4994 * mesh.m: Transpose Z if only one arg. |
|
4995 Handle case of all three args being matrices (from Jim Van Zandt |
|
4996 jrv@vanzandt.mv.com). |
|
4997 * meshdom.m: Undo previous change. |
|
4998 |
|
4999 Wed Dec 20 13:48:12 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5000 |
|
5001 * configure.in (AC_OUTPUT): Add audio/Makefile |
|
5002 |
|
5003 Thu Nov 16 13:07:07 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5004 |
|
5005 * audio: New directory of files from Kurt Hornik and Andreas |
|
5006 Weingessel. |
|
5007 * audio/Makefile.in: New file. |
|
5008 * Makefile.in (SUBDIRS): Add audio to the list. |
|
5009 |
|
5010 Mon Nov 6 07:29:35 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5011 |
|
5012 * polynomial/polyfit.m: Use `economy-stle' QR factorization. |
|
5013 |
|
5014 Fri Nov 3 00:38:46 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5015 |
|
5016 * plot/mesh.m: Require, length (y) == rows (z) and length (x) == |
|
5017 columns (z), not the other way around. |
|
5018 * plot/meshdom.m: Don't reverse order of elements in y. |
|
5019 |
|
5020 Thu Nov 2 23:56:53 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5021 |
|
5022 * plot/axis.m: Return current axis if nargin == 0. |
|
5023 |
|
5024 Tue Oct 31 04:11:28 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5025 |
|
5026 * polynomial/roots.m: Updates from Kurt Hornik. |
|
5027 |
|
5028 * polynomial/polyder.m: New file. |
|
5029 |
|
5030 * polynomial/polyderiv.m: Give return value and arg different names. |
|
5031 |
|
5032 Mon Oct 30 23:27:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5033 |
|
5034 * specfun/betainc.m: New file. |
|
5035 * specfun/gammainc.m: New file. |
|
5036 |
|
5037 Wed Oct 18 23:45:52 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5038 |
|
5039 * general/strerror.m: New file. |
|
5040 * general/perror.m: Implement using strerror(). |
|
5041 |
|
5042 Thu Oct 5 03:21:36 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5043 |
|
5044 * plot/bottom_title.m plot/mplot.m plot/multiplot.m plot/oneplot.m |
|
5045 plot/plot_border.m plot/subplot.m plot/subwindow.m |
|
5046 plot/top_title.m plot/zlabel.m: New files, from Vinayak Dutt. |
|
5047 |
|
5048 * image/saveimage.m: Round img values first. |
|
5049 |
|
5050 Tue Oct 3 03:55:18 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5051 |
|
5052 * control/abcddim.m control/are.m general/tril.m general/triu.m |
|
5053 image/saveimage.m linear-algebra/kron.m linear-algebra/norm.m |
|
5054 linear-algebra/null.m miscellaneous/etime.m plot/contour.m |
|
5055 plot/mesh.m plot/plot_int.m plot/polar_int.m |
|
5056 special-matrix/hankel.m special-matrix/toeplitz.m |
|
5057 tuwien/strfun/split.m: Add missing semicolons. |
|
5058 |
|
5059 * plot/polar_int.m: Use .', not ' to make vectors conform. |
|
5060 |
|
5061 * image/Makefile.in: Don't build or install octtoppm. |
|
5062 |
|
5063 * image/saveimage.m: Rewrite to avoid using octoppm and pbm |
|
5064 routines so that people who don't have the the pbm stuff installed |
|
5065 can still use this function. |
|
5066 |
|
5067 Mon Oct 2 05:10:44 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5068 |
|
5069 * image/saveimage.m: Better error checking, clean up a bit. |
|
5070 |
|
5071 Tue Sep 26 00:04:56 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5072 |
|
5073 * plot/plot_opt.m: Change more to more_opts as a temporary fix to |
|
5074 avoid conflict with new built-in text-style function more. |
|
5075 |
|
5076 * linear-algebra/norm.m: Also allow 2nd arg == "inf". |
|
5077 |
|
5078 * startup/Makefile.in (install): Also install octaverc in |
|
5079 $localfcnfiledir/startup/octavrc. |
|
5080 |
|
5081 Wed Sep 20 00:01:30 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5082 |
|
5083 * mkinstalldirs: New file. |
|
5084 * Makefile.in (DISTFILES): Add it to the list. |
|
5085 |
|
5086 * Makefile.in (DISTFILES): Distribute configure.in and configure. |
|
5087 |
|
5088 Thu Sep 14 03:56:19 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5089 |
|
5090 * special-matrix/hankel.m: Compatibility fix. Complain if |
|
5091 r(1) != c(nr), not if r(1) != c(1). |
|
5092 |
|
5093 * signal/filter.m: Doc fix. |
|
5094 |
|
5095 Wed Sep 13 03:19:05 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5096 |
|
5097 * miscellaneous/cputime.m: Use new resource structure names (no |
|
5098 ru_ or tv_ prefixes). |
|
5099 |
|
5100 Tue Sep 12 02:20:44 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5101 |
|
5102 * time/ctime.m: Fix doc string and usage message. |
|
5103 |
|
5104 Mon Sep 11 18:43:46 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5105 |
|
5106 * time/clock.m: Use new time structure names (no tm_ prefix). |
|
5107 |
|
5108 Thu Aug 24 20:53:08 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
5109 |
|
5110 * control/c2d.m: Make function work for any value of |
|
5111 whitespace_in_literal_matrix. |
|
5112 * control/dare.m: Likewise. |
|
5113 * control/tzero.m: Likewise. |
|
5114 * elfun/gcd.m: Likewise. |
|
5115 * elfun/lcm.m: Likewise. |
|
5116 * general/postpad.m: Likewise. |
|
5117 * general/prepad.m: Likewise. |
|
5118 * linear-algebra/kron.m: Likewise. |
|
5119 * miscellaneous/etime.m: Likewise. |
|
5120 * polynomial/conv.m: Likewise. |
|
5121 * polynomial/deconv.m: Likewise. |
|
5122 * polynomial/poly.m: Likewise. |
|
5123 * polynomial/roots.m: Likewise. |
|
5124 * signal/filter.m: Likewise. |
|
5125 * signal/freqz.m: Likewise. |
|
5126 * signal/fftfilt.m: Likewise. |
|
5127 |
|
5128 Tue Jun 6 22:34:04 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5129 |
|
5130 * miscellaneous/is_leap_year.m: Make work for vector args. |
|
5131 |
|
5132 Tue May 2 16:18:33 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5133 |
|
5134 * plot/polar_int_2.m: Add missing semicolons. |
|
5135 Set theta = theta', not rho'. |
|
5136 |
|
5137 Sun Apr 30 11:19:11 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5138 |
|
5139 * polynomial/roots.m: Make it work for any value of |
|
5140 whitespace_in_literal_matrix. |
|
5141 |
|
5142 Mon Apr 10 09:37:17 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5143 |
|
5144 * configure.in: New file. |
|
5145 |
|
5146 Thu Mar 30 13:29:35 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5147 |
|
5148 * control/lyap.m: Add missing semicolon. |
|
5149 |
|
5150 * miscellaneous/cputime.m: New function file. |
|
5151 |
|
5152 Wed Mar 29 22:50:49 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5153 |
|
5154 * time: New directory. |
|
5155 * time/asctime.m, time/clock.m, time/ctime.m, time/date.m: |
|
5156 New function files. |
|
5157 * time/Makefile.in: New file. |
|
5158 * Makefile.in (SUBDIRS): Add time. |
|
5159 |
|
5160 Thu Mar 23 15:42:26 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5161 |
|
5162 * polynomial/polyreduce.m: Make sure initial index is not empty. |
|
5163 |
|
5164 Tue Mar 14 23:38:24 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5165 |
|
5166 * plot/plot_int_1.m: Transpose data with .', not '. |
|
5167 |
|
5168 Fri Mar 10 10:40:13 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5169 |
|
5170 * Makefile.in (install uninstall clean mostlyclean distclean |
|
5171 realclean): Use SUBDIR_FOR_COMMAND. Combine actions. |
|
5172 |
|
5173 Sun Feb 26 22:18:22 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5174 |
|
5175 * Makefile.in (install): Create ls-R database file. |
|
5176 (uninstall): Delete it. |
|
5177 |
|
5178 Fri Feb 24 10:36:01 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
5179 |
5378
|
5180 * image/saveimage.m: Fix typo. |
2330
|
5181 |
|
5182 See ChangeLog.1 in the top level directory for earlier changes. |