6688
|
1 <<<<<<< ChangeLog |
|
2 <<<<<<< ChangeLog |
|
3 2007-06-03 S�ren Hauberg <soren@hauberg.org> |
|
4 |
|
5 * plot/axes.m: Eliminate redundant else clause. |
|
6 |
|
7 ======= |
|
8 ======= |
6686
|
9 2007-06-03 David Bateman <dbateman@free.fr> |
|
10 |
|
11 * polynomial/spline.m: Add a small tolerance to spline tests. |
6687
|
12 * pkg/pkg.m: Protect against multiple actions being define. |
|
13 |
6688
|
14 >>>>>>> 1.846 |
6683
|
15 2007-06-01 David Bateman <dbateman@free.fr> |
|
16 |
|
17 * pkg.m (pkg:is_superuser): Remove function used in one place and |
|
18 incorporate into main pkg function. |
|
19 (pkg:install): Check for existence of files to install before |
|
20 globbing and warn the user if they don't exist. |
|
21 |
6688
|
22 >>>>>>> 1.844 |
6675
|
23 2007-05-31 David Bateman <dbateman@free.fr> |
|
24 |
6679
|
25 * miscellaneous/copyfile.m: Split copying of multiple files to a |
|
26 directory over several copy command to limit the line length. |
|
27 * miscellaneous/movefile.m: Ditto. |
|
28 |
6675
|
29 * pkg.m: Add build option to allow binary Octave packages to be |
|
30 built from source packages. Probe absolute path of prefix, global |
|
31 and local lists. Use strcat, rather that [] for strings. |
|
32 (pkg:build): New function to binary binary package. |
|
33 (pkg:absolute_pathname): Use fileattrib to probe absolute path. |
|
34 (pkg:repackage): Package binary Octave package from installation. |
|
35 (pkg:create_pkgadddel): Extract PKG_ADD and PKG_DEL directives |
|
36 from m-files into main installation directory. |
|
37 (pkg:shell): Suppress verbose messages from shell and only display |
|
38 them with the verbose flag. |
|
39 (pkg:installed_packages): Also include the loaded flag in the |
|
40 local and global packages. |
|
41 (pkg:uninstall): On uninstall, only rmpath the package if it is |
|
42 flagged as loaded. |
|
43 |
|
44 2007-05-31 Michael Goffioul <michael.goffioul@swing.be> |
|
45 |
|
46 * pkg.m (pkg:load_packages): Correctly load a mix of packages |
|
47 with and without architecture dependent directories. |
|
48 (pkg:installed_packages): Probe the global_list file even if it is |
|
49 the same as the local_list. |
|
50 |
6669
|
51 2007-05-29 John W. Eaton <jwe@octave.org> |
|
52 |
|
53 * sparse/spy.m: Set axis to "ij" mode. |
|
54 |
6664
|
55 2007-05-24 John W. Eaton <jwe@octave.org> |
|
56 |
|
57 * set/ismember.m: Quote first arg of "fail" tests. |
|
58 |
6663
|
59 2007-05-24 David Bateman <dbateman@free.fr> |
|
60 |
|
61 * pkg/pkg.m (pkg:rebuild): Thinko in rebuild logic. |
|
62 |
6655
|
63 2007-05-22 David Bateman <dbateman@free.fr> |
|
64 |
|
65 * pkg/pkg.m: Use rethrow(lasterror()) throughout rather than |
|
66 error(lasterr()(8:end)). |
|
67 (pkg:install): Warning for empty packages being removed. Suppress |
|
68 spurious output. Warning rather than error for uninstalling a |
|
69 package that is not installed to avoid RPM issue. |
|
70 (pkg:configure_make): Fix for parsing of src/FILES. Don't create |
|
71 inst or architecture dependent directory if it exists. |
|
72 |
6653
|
73 2007-05-22 Thomas Weber <thomas.weber.mail@gmail.com> |
|
74 |
|
75 * ChangeLog, control/system/is_stabilizable.m, general/bicubic.m, |
|
76 image/ind2gray.m, image/saveimage.m, plot/box.m, plot/grid.m, |
|
77 signal/freqz.m: Fix typos. |
|
78 |
6645
|
79 2007-05-21 David Bateman <dbateman@free.fr> |
|
80 |
|
81 * pkg/pkg.m: Add rebuild target, and -local, -global option to |
|
82 force installation location. |
|
83 (rebuild): New subfunction to rebuild package database from |
|
84 installed packages. Also allows changing of autoload status |
|
85 (install): Warn use if attempting to install from non existent |
|
86 file. |
|
87 (issuperuser): Use 'geteuid() == 0' instead of 'strcmp (getenv( |
|
88 "USER", "root"))' for root test. |
|
89 |
|
90 2007-05-21 Michael Goffioul <michael.goffioul@swing.be> |
|
91 |
|
92 * miscellaneous/copyfile.m: check for cp.exe on Windows platforms |
|
93 and replace "\" characters with "/". |
|
94 * pkg/pkg.m: Use shell rather than system throughout. Replace "\" |
|
95 characters with "/" throughout. |
|
96 (shell): New subfunction that wraps system and is careful with the |
|
97 shell on windows platforms. |
|
98 (configure_make): Explictly pass complier etc to configure |
|
99 process. |
|
100 (issuperuser): Force default to global install for Windows machines. |
|
101 |
6636
|
102 2007-05-19 Kristan Onu |
|
103 |
|
104 * plot/Makefile.in (SOURCES): Remove hbar.m and add barh.m. |
|
105 |
6634
|
106 2007-05-18 David Bateman <dbateman@free.fr> |
|
107 |
|
108 * pkg/pkg.m (install): More verbosity. |
|
109 (configure_make): Ditto. |
|
110 (create_pkgadddel): Install in architecture dependent directory if |
|
111 it exists to address issues with autoload/mfilename. |
|
112 (write_INDEX): Check in archiecture dependent directories as well. |
|
113 |
6633
|
114 2007-05-17 David Bateman <dbateman@free.fr> |
|
115 |
|
116 * plot/hbar.m: Remove. |
|
117 * plot/barh.m: and move it here. |
|
118 |
6631
|
119 2007-05-16 S�ren Hauberg <soren@hauberg.org> |
|
120 |
|
121 * general/sub2ind.m, general/ind2sub.m: Doc fix. |
|
122 |
6629
|
123 2007-05-16 John W. Eaton <jwe@octave.org> |
|
124 |
|
125 * general/logspace.m: Return second arg if fewer than two values |
|
126 are requested. |
|
127 |
6619
|
128 2007-05-14 John W. Eaton <jwe@octave.org> |
|
129 |
|
130 * plot/__go_draw_figure__.m: Ensure that a reset commands starts |
|
131 on a new line. |
|
132 |
6617
|
133 2007-05-14 Tarmigan Casebolt <tarmigan+list@gmail.com> |
|
134 |
|
135 * statistics/distributions/norminv.m, |
|
136 statistics/distributions/norminv.m, |
|
137 statistics/distributions/normpdf.m, |
|
138 statistics/distributions/normrnd.m: |
|
139 Use standard deviation, not variance. |
|
140 * statistics/distributions/lognpdf.m: Adapt to change in norminv. |
|
141 * statistics/distributions/logninv.m: Refer to norminv, not normal_inv. |
|
142 * deprecated/normal_cdf.m, deprecated/normal_inv.m, |
|
143 deprecated/normal_pdf.m, deprecated/normal_rnd.m: Preserve |
|
144 backward compatibility. |
|
145 |
6616
|
146 2007-05-14 David Bateman <dbateman@free.fr> |
|
147 |
|
148 * pkg/pkg.m: Mark loaded packages with "*". |
|
149 |
6615
|
150 2007-05-13 S�ren Hauberg <soren@hauberg.org> |
|
151 |
|
152 * miscellaneous/single.m: Doc fix. |
|
153 Convert to double instead of returning argument unchanged. |
|
154 |
|
155 * miscellaneous/doc.m: Doc fix. |
|
156 |
|
157 * miscellaneous/ver.m: Doc fix. |
|
158 Don't display information about Octave Forge. |
|
159 |
6614
|
160 2007-05-12 David Bateman <dbateman@free.fr> |
|
161 |
|
162 * pkg/pkg.m: Add a "-verbose" option that allows all output of an |
|
163 install to be printed. An error in the on_uninstall script causes |
|
164 a failure to uninstall. Place oct- and mex-files in an |
|
165 architecture dependent directory. |
|
166 |
6611
|
167 2007-05-09 John W. Eaton <jwe@octave.org> |
|
168 |
|
169 * plot/__go_draw_axes__.m: Break plot command over multiple lines. |
|
170 |
6609
|
171 2007-05-09 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
172 |
|
173 * statistics/distributions/normcdf.m: Use standard deviation |
|
174 instead of variance for compatibility. |
|
175 |
|
176 2007-05-08 John W. Eaton <jwe@octave.org> |
|
177 |
|
178 |
|
179 * set/unique.m, set/ismember.m: Use numel(x) instead of prod(size(x)). |
|
180 |
|
181 * set/ismember.m: Always return logical values. |
|
182 |
|
183 * set/ismember.m: Return early if no matches are found. New tests. |
|
184 From: David Grohmann <grohmann@arlut.utexas.edu>. |
|
185 |
|
186 * general/__isequal__.m: Allow numeric values of different classes |
|
187 to compare equal. |
|
188 |
6606
|
189 2007-05-07 David Bateman <dbateman@free.fr> |
|
190 |
6607
|
191 * sparse/spy.m: Reverse Y axis for new graphics code. Make more |
|
192 compatiable, accepting LineSpec and markersize arguments. |
6606
|
193 |
6605
|
194 2007-05-02 John W. Eaton <jwe@octave.org> |
|
195 |
|
196 * plot/__go_draw_axes__.m: Convert NA to NaN before writing. |
|
197 |
6604
|
198 2007-05-02 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
199 |
|
200 * contour.m: Rewrite help string. |
|
201 |
6599
|
202 2007-04-28 John W. Eaton <jwe@octave.org> |
|
203 |
|
204 * miscellaneous/unzip.m, miscellaneous/untar.m, |
|
205 miscellaneous/bunzip2.m, miscellaneous/gunzip.m: |
|
206 Special case nargout == 0. |
|
207 |
6597
|
208 2007-04-27 Kim Hansen <kimhanse@gmail.com> |
|
209 |
|
210 * general/sub2ind.m: Handle empty input, add tests. |
|
211 |
6590
|
212 2007-04-27 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
213 |
|
214 * plot/contourc.m: Doc fix. |
|
215 |
6586
|
216 2007-04-26 David Bateman <dbateman@free.fr> |
|
217 |
|
218 * plot/hist.m: Partially remove previous patch. |
|
219 |
6582
|
220 2007-04-26 David Bateman <dbateman@free.fr> |
|
221 |
|
222 * plot/hist.m: Support returning of handle |
|
223 * plot/__bar__.m: __pltopt__ should only be called on strings or |
|
224 cells. |
|
225 |
6575
|
226 2007-04-25 John W. Eaton <jwe@octave.org> |
|
227 |
6579
|
228 * plot/__go_draw_axes__.m: For images, set titlespec{data_idx} to |
|
229 "title \"\"", not "". |
|
230 |
6575
|
231 * plot/legend.m: Initialize WARNED to false. |
|
232 |
6567
|
233 2007-04-24 John W. Eaton <jwe@octave.org> |
|
234 |
|
235 * io/beep.m: Fix cut and paste error. |
|
236 From S�ren Hauberg <soren@hauberg.org>. |
|
237 |
|
238 2007-04-23 John W. Eaton <jwe@octave.org> |
|
239 |
|
240 * plot/box.m: Delete extra endfunction keyword. |
|
241 |
6560
|
242 2007-04-23 David Bateman <dbateman@free.fr> |
|
243 |
|
244 * plot/plot3.m: Call newplot. |
|
245 |
6553
|
246 2007-04-20 John W. Eaton <jwe@octave.org> |
|
247 |
|
248 * plot/Makefile.in (SOURCES): Fix typo in adding __bar__.m to the list. |
|
249 |
6546
|
250 2007-04-19 John W. Eaton <jwe@octave.org> |
|
251 |
|
252 * miscellaneous/unpack.m: Use gzip -d and bzip2 -d instead of |
|
253 gunzip and bunzip. From Michael Goffioul <michael.goffioul@swing.be>. |
|
254 |
6544
|
255 2007-04-19 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
256 |
|
257 * control/util/axis2dlim.m: Delete extraneous line. |
|
258 |
6542
|
259 2007-04-18 John W. Eaton <jwe@octave.org> |
|
260 |
|
261 * specfun/factorial.m: Increase tolerance in large value test. |
|
262 |
6540
|
263 2007-04-18 David Bateman <dbateman@free.fr> |
|
264 |
|
265 * __bar__.m: New support function for bar/hbar to support graphic |
|
266 handles, and additional arguments. |
|
267 * bar.m: Convert to use __bar__. |
|
268 * hbar.m: New function |
|
269 * hist.m: Explicitly set the width of the bar plot. |
|
270 |
6533
|
271 2007-04-17 John W. Eaton <jwe@octave.org> |
|
272 |
6534
|
273 * plot/stem.m (stem_line_spec): Pass false as third arg to __pltopt__. |
|
274 |
6533
|
275 * set/ismember.m: New tests. |
|
276 From David Grohmann <grohmann@arlut.utexas.edu> |
|
277 |
6532
|
278 2007-04-17 Paul Kienzle <pkienzle@users.sf.net> |
|
279 |
|
280 * specfun/factorial.m: Use gamma function instead of cumprod. |
|
281 Add tests. |
|
282 |
6527
|
283 2007-04-16 John W. Eaton <jwe@octave.org> |
|
284 |
6528
|
285 * gethelp.cc (looks_like_octave_copyright): Use same logic as in |
|
286 looks_like_copyright in src/help.cc. |
|
287 From S�ren Hauberg <soren@hauberg.org>. |
|
288 |
6527
|
289 * plot/__go_draw_axes__.m: For log plots, omit zero values too. |
|
290 |
6526
|
291 2007-04-13 John W. Eaton <jwe@octave.org> |
|
292 |
6527
|
293 * optimization/sqp.m: Initialize info to 0. |
|
294 |
6526
|
295 * optimization/qp.m: Undo previous change. |
|
296 |
6524
|
297 2007-04-13 Geordie McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
298 |
|
299 * spdiags.m: Fixed the four-argument case to work for columns of |
|
300 length one. |
|
301 |
6523
|
302 2007-04-12 John W. Eaton <jwe@octave.org> |
|
303 |
|
304 * optimization/qp.m: Avoid Octave indexing bug. |
|
305 |
6521
|
306 2007-04-12 Carlo de Falco <kingcrimson@tiscali.it> |
|
307 |
6522
|
308 * miscellaneous/menu.m, control/base/bddemo.m, |
|
309 control/hinf/dgkfdemo.m, control/system/packedform.m, |
|
310 control/system/sysrepdemo.m: |
|
311 Adapt to page_screen_output as a function. |
6521
|
312 |
6518
|
313 2007-04-11 John W. Eaton <jwe@octave.org> |
|
314 |
|
315 * miscellaneous/not.m: Delete. |
|
316 * miscellaneous/Makefile.in (SOURCES): Delete it from the list. |
|
317 |
|
318 2007-04-11 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
319 |
|
320 * control/util/axis2dlim.m: Try harder to handle min and max vals |
|
321 that are close but not exactly equal. |
|
322 |
6515
|
323 2007-04-11 David Bateman <dbateman@free.fr> |
|
324 |
|
325 * general/bitcmp.m: Make it work again. |
|
326 |
6512
|
327 2007-04-10 John W. Eaton <jwe@octave.org> |
|
328 |
|
329 * plot/__go_draw_axes__.m: Try harder to handle min and max vals |
|
330 that are close but not exactly equal. |
|
331 |
6511
|
332 2007-04-09 Daniel J. Sebald <daniel.sebald@ieee.org> |
|
333 |
|
334 * plot/stem.m: Add back the baseline line and let it be not adjustable |
|
335 in response to a change in x limits for now. |
|
336 |
6510
|
337 2007-04-09 John W. Eaton <jwe@octave.org> |
|
338 |
|
339 * plot/__go_draw_axes__.m (__gnuplot_write_data__): New function. |
|
340 (__go_draw_axes__): Use it to write data to plot stream. |
|
341 |
6509
|
342 2007-04-09 Daniel J Sebald <daniel.sebald@ieee.org> |
|
343 |
|
344 * plot/stem.m: Fix typos in doc string. Fix typo in call to |
|
345 zeros. Set markerfacecolor property in call to plot. |
|
346 |
6508
|
347 2007-04-06 John W. Eaton <jwe@octave.org> |
|
348 |
|
349 * linear-algebra/norm.m: Use new __vnorm__ function for vector args. |
|
350 |
|
351 2007-04-06 Daniel J Sebald <daniel.sebald@ieee.org> |
|
352 |
|
353 * plot/stem.m: Use plot instead of a series of calls to line. |
|
354 |
6494
|
355 2007-04-05 John W. Eaton <jwe@octave.org> |
|
356 |
6499
|
357 * sparse/nonzeros.m, sparse/normest.m, sparse/spconvert.m, |
|
358 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/spones.m, |
|
359 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, |
|
360 sparse/spstats.m, sparse/treeplot.m: Style fixes. |
|
361 |
6496
|
362 * pkg/pkg.m: Use "strcat (...)" instead of "[...]". |
6500
|
363 Use strcmpi instead of strcmp+tolower. |
6496
|
364 Style fixes. |
|
365 |
6494
|
366 * testfun/speed.m: Use "strcat (...)" instead of "[...]". |
|
367 Plotting fixes. Style fixes. |
|
368 |
|
369 * testfun/test.m: Use "strcat (...)" instead of "[...]". |
|
370 Style fixes. |
|
371 |
|
372 * testfun/fail.m: No need to check for evalin and lastwarn. |
|
373 Style fixes. |
|
374 |
|
375 * testfun/demo.m, testfun/example.m: Style fixes. |
|
376 Use "strcat (...)" instead of "[...]". |
|
377 Use format specifiers in calls to warning. |
|
378 |
|
379 * testfun/assert.m: Use "numel (x)" instead of "prod (size (x))". |
|
380 Use "strcat (...)" instead of "[...]". |
|
381 Use "x(end)" instead of "x(length (x))". |
|
382 Check NA before NaN. |
|
383 Style fixes. |
|
384 |
6473
|
385 2007-03-29 John W. Eaton <jwe@octave.org> |
|
386 |
6474
|
387 * plot/stem.m (stem, set_default_values): Use RGB triple for color. |
6473
|
388 |
6467
|
389 2007-03-27 John W. Eaton <jwe@octave.org> |
|
390 |
|
391 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
392 control/base/Makefile.in, control/hinf/Makefile.in, |
|
393 control/obsolete/Makefile.in, control/system/Makefile.in, |
|
394 control/util/Makefile.in, deprecated/Makefile.in, |
|
395 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, |
|
396 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, |
|
397 miscellaneous/Makefile.in, optimization/Makefile.in, |
|
398 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, |
|
399 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
400 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
401 special-matrix/Makefile.in, startup/Makefile.in, |
|
402 statistics/Makefile.in, statistics/base/Makefile.in, |
|
403 statistics/distributions/Makefile.in, |
|
404 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
405 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: |
|
406 Use ln instead of $(LN_S) in dist target. |
|
407 |
6465
|
408 2007-03-27 David Bateman <dbateman@free.fr> |
|
409 |
|
410 * plot/__go_draw_axes__.m: Allow linewidth settings to work with |
|
411 gnuplot 4.0. |
|
412 |
6464
|
413 2007-03-26 John W. Eaton <jwe@octave.org> |
|
414 |
|
415 * plot/__go_draw_axes__.m: Send image data to gnuplot via plot stream. |
|
416 |
6461
|
417 2007-03-26 Daniel J Sebald <daniel.sebald@ieee.org> |
|
418 |
|
419 * plot/__go_draw_axes__.m: Always end palette data to gnuplot via |
|
420 plot stream and using binary data. |
|
421 |
6459
|
422 2007-03-26 John W. Eaton <jwe@octave.org> |
|
423 |
|
424 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
425 lot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
426 plot/__plt2vv__.m: Accept properties in addtition to options struct. |
|
427 |
|
428 2007-03-26 David Bateman <dbateman@free.fr> |
|
429 |
6461
|
430 * plot/__go_draw_axes__.m: Send "set ticslevel 0" to plot stream. |
|
431 |
6459
|
432 * plot/plot3.m: Handle line properties. |
|
433 * plot/plot.m: Update docstring. |
|
434 * plot/__plotopt__.m, plot/__pltopt1__.m: New arg, err_on_invalid. |
|
435 * plot/__plt__.m: Also gather properties. |
|
436 |
6455
|
437 2007-03-26 Kim Hansen <kimhanse@gmail.com> |
|
438 |
|
439 * testfun/assert.m: Delete special check for empty objects. |
|
440 Add test. |
|
441 |
6453
|
442 2007-03-26 John W. Eaton <jwe@octave.org> |
|
443 |
6454
|
444 * plot/drawnow.m: Exit early if call is recursive. |
|
445 |
6453
|
446 * plot/__go_draw_axes__.m (get_data_limits): New function. |
|
447 Check for Inf too. |
|
448 (__go_draw_axes__): Use get_data_limits. |
|
449 |
6450
|
450 2007-03-24 John W. Eaton <jwe@octave.org> |
|
451 |
6451
|
452 * plot/drawnow.m: If GNUTERM is set to wxt in the environment, |
|
453 send terminal setting command with title option to plot stream. |
|
454 |
6450
|
455 * plot/legend.m: Correctly increment index into list of children.. |
|
456 |
6434
|
457 2007-03-23 John W. Eaton <jwe@octave.org> |
|
458 |
6448
|
459 * general/interp2.m, general/bicubic.m, control/base/rldemo.m, |
|
460 control/hinf/hinfdemo.m, control/hinf/dhinfdemo.m, |
|
461 control/base/nyquist.m, control/base/nichols.m, |
|
462 control/base/frdemo.m, signal/freqz_plot.m, |
|
463 control/base/__stepimp__.m, control/base/bode.m, |
|
464 quaternion/demoquat.m, quaternion/qcoordinate_plot.m, |
|
465 statistics/base/qqplot.m, statistics/base/ppplot.m, sparse/spy.m: |
6447
|
466 Update plotting code. |
|
467 |
|
468 * control/base/bode.m: Unwrap phase angle. |
|
469 |
|
470 * miscellaneous/dump_prefs.m: Remove automatic_replot from the list. |
|
471 |
|
472 * plot/axis.m: Don't check automatic_replot, or call replot. |
|
473 |
|
474 * quaternion/demoquat.m: Delete comments with obsolete plotting |
|
475 commands. |
6446
|
476 |
6442
|
477 * plot/__pltopt1__.m: Handle "@" marker same as "+". |
6444
|
478 Handle numeric color specs. |
6442
|
479 * plot/plot.m: Remove "-@" and "@" from docstring. |
|
480 |
6441
|
481 * plot/orient.m: Fix tests to avoid creating a plot window. |
|
482 |
6440
|
483 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, |
|
484 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, |
|
485 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m, |
|
486 general/arrayfun.m, miscellaneous/compare_versions.m, |
|
487 path/savepath.m, pkg/pkg.m, plot/__gnuplot_version__.m, |
|
488 plot/contour.m, plot/contourc.m, plot/legend.m, plot/stem.m, |
|
489 polynomial/pchip.m: Fix copyright notice, correct FSF address. |
|
490 |
6438
|
491 * plot/__go_draw_figure__.m: Send reset to gnuplot before every |
|
492 plot, not just multiplots. |
|
493 |
6436
|
494 * plot/__go_draw_axes__.m: Use %g for label coordinates, not %d. |
|
495 |
6434
|
496 * plot/contour.m: Don't call drawnow. |
|
497 |
6431
|
498 2007-03-22 John W. Eaton <jwe@octave.org> |
|
499 |
6432
|
500 * plot/drawnow.m: Check and optionally, set, the __modified__ |
|
501 property of each figure. |
|
502 |
6431
|
503 * plot/__go_draw_axes__.m: If no real data, plot a point at Inf, |
|
504 Inf to show axes. From Daniel J Sebald <daniel.sebald@ieee.org>. |
|
505 |
|
506 2007-03-21 John W. Eaton <jwe@octave.org> |
|
507 |
|
508 * linear-algebra/null.m: Set elements of retval with magnitudes |
|
509 less than eps to 0. |
|
510 |
6429
|
511 2007-03-21 David Bateman <dbateman@free.fr> |
6425
|
512 |
|
513 * plot/__go_draw_axes__.m: Handle some colors with older gnuplot. |
6429
|
514 * testfun/speed.m: Documentation and example fix. |
|
515 |
6424
|
516 2007-03-21 John W. Eaton <jwe@octave.org> |
|
517 |
|
518 * plot/subplot.m: If we find an existing subplot region, set |
|
519 it to be the "currentaxes" property for the current figure. |
6425
|
520 Delete old axes objects if the new axes object overlaps the old. |
6424
|
521 |
6422
|
522 2007-03-20 David Bateman <dbateman@free.fr> |
|
523 |
|
524 * general/Makefile.in: Include arrayfun.m in SOURCES. |
|
525 |
|
526 2007-03-20 Bill Denney <denney@seas.upenn.edu> |
|
527 |
|
528 * general/arrayfun.m: New function. |
|
529 |
6418
|
530 2007-03-20 John W. Eaton <jwe@octave.org> |
|
531 |
6419
|
532 * plot/newplot.m: Call __request_drawnow__ after initializing axes. |
|
533 * plot/text.m: Call __request_drawnow__ after creating text objects. |
|
534 |
|
535 * plot/clf.m: Don't call drawnow. |
|
536 |
6431
|
537 2007-03-20 Daniel J Sebald <daniel.sebald@ieee.org> |
6419
|
538 |
6420
|
539 * image/__img__.m: Maybe set yaxis to reverse for images. |
|
540 * plot/__go_draw_axes__.m: Don't add flipy to gnuplot command for |
|
541 images. |
|
542 |
6418
|
543 * plot/drawnow.m: Make __go_close_all_registered__ persistent |
6419
|
544 instead of global. Only register __go_close_all__ with atexit if |
|
545 the plot stream is successfully opened. |
6418
|
546 |
6413
|
547 2007-03-15 John W. Eaton <jwe@octave.org> |
|
548 |
6418
|
549 * plot/__go_draw_axes__.m: Make have_newer_gnuplot persistent. |
6413
|
550 From Daniel J Sebald <daniel.sebald@ieee.org>. |
|
551 |
|
552 2007-03-15 Daniel J Sebald <daniel.sebald@ieee.org> |
|
553 |
|
554 * plot/__go_draw_axes__.m (do_linestyle_command): Fix marker types. |
6415
|
555 Use numeric line types. |
6413
|
556 |
|
557 * control/base/rlocus.m: Add asymptotes to the plot. Use wider |
6415
|
558 lines and larger markers. Remove key titles from line type |
|
559 properties. |
6413
|
560 |
6405
|
561 2007-03-14 John W. Eaton <jwe@octave.org> |
|
562 |
6412
|
563 * plot/__axis_label__.m: Accept additional property-value pairs |
|
564 and pass them to __go_text__. Simply return the handle obtained |
|
565 from __go_text__ instead of calling get on the current axis. |
|
566 * plot/xlabel.m, plot/zlabel.m, plot/zlabel.m: Check args here. |
|
567 Allow for extra property value pairs to be passed along. |
|
568 * plot/title.m: Implement with __axis_label__ since it does all |
|
569 that title needs to do. |
|
570 |
6410
|
571 * plot/clf.m: Set currentaxes property for current figure to []. |
|
572 |
6405
|
573 * plot/__axis_label__.m: Convert arg to text handle before calling set. |
|
574 |
|
575 * plot/__plt__.m: Return line handles from all calls to __plt1__ |
|
576 and __plt2__, not just the last. |
|
577 |
|
578 * plot/Makefile.in (SOURCES): Rename from SOURCES_M. |
|
579 (SOURCES_IN, GEN_M): Delete. |
|
580 (FCN_FILES): Don't include $(GEN_M). |
|
581 (all): Don't depend on $(GEN_M). |
|
582 ($(GEN_M) : %.m : %.in): Delete pattern rule. |
|
583 |
|
584 * plot/text.m: Use __go_text__ instead of __uiboject_text_ctor__. |
|
585 |
|
586 * plot/newplot.m: Call __go_axes_init__ instead of |
|
587 __uiobject_axes_init__. |
|
588 |
|
589 * plot/mesh.m: Use __go_surface__ instead of |
|
590 __uiobject_surface_ctor__. Don't access object fields directly. |
|
591 |
|
592 * plot/line.m: Use __line__ to do actual work. |
|
593 * plot/__line__.m: New function. |
|
594 |
|
595 * plot/axes.m: Use __go_axes__ to create axes graphics handle. |
|
596 Use get and set instead of accessing object fields directly. |
|
597 |
|
598 * plot/figure.m: Use __go_figure__ to create figure graphics |
|
599 handle. |
|
600 |
|
601 * plot/drawnow.m: Register __go_close_all__ with atexit instead of |
|
602 __uiobject_close_all. Call __go_draw_figure__ instead of |
|
603 __uiobject_draw_figure__. |
|
604 |
|
605 * plot/clf.m: Use get instead of accessing object fields |
|
606 directly. Simply delete children. Don't set currentaxes. |
|
607 |
|
608 * plot/close.m (close_all_figures): New subfunction. |
|
609 Use it instead of getting list of figures to close from |
|
610 __uiobject_figures__. |
|
611 |
|
612 * plot/closereq.m: Simply delete the current figure. Don't set |
|
613 currentfigure. |
|
614 |
|
615 * plot/__errplot__.m: Call __line__ instead of |
|
616 __uiobject_line_ctor__. Use set instead of accesing object fields |
|
617 directly. Don't call __uiobject_adopt__. |
|
618 |
|
619 * plot/__uiobject_adopt__.m, plot/__uiobject_alloc__.in, |
|
620 plot/__uiobject_axes_ctor__.m, plot/__uiobject_axes_dtor__.m, |
|
621 plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m, |
|
622 plot/__uiobject_delete__.m, plot/__uiobject_figure_ctor__.m, |
|
623 plot/__uiobject_figures__.in, plot/__uiobject_free__.in, |
|
624 plot/__uiobject_get_handle__.in, plot/__uiobject_globals__.m, |
|
625 plot/__uiobject_grow_list__.in, plot/__uiobject_handle2idx__.in, |
|
626 plot/__uiobject_image_ctor__.m, plot/__uiobject_init_figure__.in, |
|
627 plot/__uiobject_init_root_figure__.in, |
|
628 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.in, |
|
629 plot/__uiobject_root_figure_ctor__.m, |
|
630 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m: |
|
631 plot/get.in, plot/include-globals.awk, plot/ishandle.m, |
|
632 plot/set.in: Delete. |
6408
|
633 * plot/Makefile.in (SOURCES_M, SOURCES_IN): Remove from lists. |
6405
|
634 |
|
635 * plot/__go_close_all__.m: Rename from __uiobject_close_all.m. |
|
636 Pass "hidden" as second arg to close. |
|
637 * plot/__go_draw_axes__.m: Rename from __uiobject_draw_axes.m. |
|
638 * plot/__go_draw_figure__.m: Rename from __uiobject_draw_figure.m. |
6408
|
639 * plot/Makefile.in (SOURCES_M): Rename in list. |
|
640 |
6405
|
641 * image/__img__.m: Use __go_image__ to create image graphics |
|
642 handle. |
|
643 |
|
644 * miscellaneous/delete.m: Call __go_delete__, not |
|
645 __uiobject_delete__. Check that arg is a graphics handle before |
|
646 calling __go_delete__. |
|
647 |
6403
|
648 2007-03-13 John W. Eaton <jwe@octave.org> |
|
649 |
|
650 * miscellaneous/cast.m: Use feval and strcmp with cell to check |
|
651 arg instead of switch statement. |
6528
|
652 From S�ren Hauberg <soren@hauberg.org>. |
6403
|
653 |
|
654 2007-03-12 John W. Eaton <jwe@octave.org> |
|
655 |
|
656 * miscellaneous/cast.m: New function. |
|
657 |
|
658 * miscellaneous/delete.m: Call __go_delete__, not __uiobject_delete__. |
|
659 |
6398
|
660 2007-03-08 John W. Eaton <jwe@octave.org> |
|
661 |
|
662 * miscellaneous/copyfile.m, miscellaneous/movefile.m: Perform |
|
663 tilde expansion on target filename before passing it to the shell. |
|
664 |
|
665 * statistics/base/Makefile.in (SOURCES): Remove unidrnd.m from list. |
|
666 * statistics/distributions/Makefile.in (SOURCES): Add it here. |
|
667 |
6396
|
668 2007-03-08 David Bateman <dbateman@free.fr> |
|
669 |
|
670 * statistics/base/unidrnd.m: Move to statistics/distributions |
|
671 replacing slower version based on dicrete_rnd. |
|
672 |
6392
|
673 2007-03-07 John W. Eaton <jwe@octave.org> |
|
674 |
6395
|
675 * control/base/rlocus.m: Update for current plotting functions. |
|
676 |
|
677 2007-03-07 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
678 |
|
679 * control/base/rlocus.m: Improve display. |
|
680 |
|
681 2007-03-07 John W. Eaton <jwe@octave.org> |
|
682 |
|
683 * plot/legend.m: Only handle positions -1:4. |
|
684 * plot/__pltopt1__.m: Don't set linestyle if only marker style is |
|
685 found in option string |
|
686 * plot/__uiobject_draw_axes__.m: Handle key position. |
|
687 |
6394
|
688 * plot/newplot.m: Always reset next line color. |
|
689 |
6392
|
690 * testfun/assert.m: Check that number of dimensions match before |
|
691 checking dimensions. |
|
692 |
6391
|
693 2007-03-07 Muthiah Annamalai <muthuspost@gmail.com> |
|
694 |
|
695 * specfun/perms.m, specfun/factorial.m: Check args. |
|
696 |
6387
|
697 2007-03-07 John W. Eaton <jwe@octave.org> |
|
698 |
6390
|
699 * plot/mesh.m: Call newplot before doing anything. |
|
700 |
|
701 * plot/__uiobject_draw_axes__.m: Send "e\n" at end of data, not |
|
702 just "e". Only flush plot stream once. |
|
703 From Daniel J Sebald <daniel.sebald@ieee.org>. |
|
704 |
6387
|
705 * strings/blanks.m: Omit first index in assignment. |
|
706 |
6386
|
707 2007-03-07 Paul Kienzle <pkienzle@users.sf.net> |
|
708 |
|
709 * set/setdiff.m: Some code cleanup and a fix for setdiff on rows. |
|
710 |
6385
|
711 2007-03-06 David Bateman <dbateman@free.fr> |
|
712 John W. Eaton <jwe@octave.org> |
|
713 |
|
714 * set/setdiff.m: Ignore "rows" for cell array args. |
|
715 Handle cellstr args. |
|
716 |
6382
|
717 2007-03-05 John W. Eaton <jwe@octave.org> |
|
718 |
|
719 * optimization/sqp.m: Defer first call to obj_hess until after |
|
720 calling obj_fun. |
|
721 |
6377
|
722 2007-03-02 Bob Weigel <rweigel@gmu.edu> |
|
723 |
|
724 * specfun/nchoosek.m: Fix nargin check. |
|
725 |
6376
|
726 2007-03-01 Daniel J Sebald <daniel.sebald@ieee.org> |
|
727 |
|
728 * image/__img__.m: Don't set xlim and ylim properties. |
|
729 |
6374
|
730 2007-03-01 Paul Kienzle <pkienzle@users.sf.net> |
|
731 |
|
732 * general/interp1.m: Fix *style cases for decreasing x. |
|
733 |
6372
|
734 2007-03-01 Muthiah Annamalai <muthuspost@gmail.com> |
|
735 |
|
736 * polynomial/roots.m: Check nargin before accessing arg. |
|
737 |
6369
|
738 2007-02-28 John W. Eaton <jwe@octave.org> |
|
739 |
|
740 * plot/__uiobject_draw_axes__.m: If looking at image data, Don't |
|
741 increment data_idx unless using gnuplot for display. |
|
742 |
6368
|
743 2007-02-28 Daniel J Sebald <daniel.sebald@ieee.org> |
|
744 |
|
745 * plot/__uiobject_draw_axes__.m: Improve calculation of limits for |
|
746 plots with images. |
|
747 * image/image.m, image/imagesc.m, image/imshow.m: |
|
748 Deprecate zoom argument. |
|
749 |
6366
|
750 2007-02-28 John W. Eaton <jwe@octave.org> |
|
751 |
|
752 * plot/__uiobject_draw_axes__.m: Use fullfile to generate |
|
753 temporary file names. Keep image and colormap file ids separate. |
|
754 |
|
755 * general/interp1.m: Correctly compute min and max values when |
|
756 values are decreasing and not evenly spaced. |
|
757 From Ricardo Marranita <ricardo.marranita@gmail.com>. |
|
758 |
6365
|
759 2007-02-27 John W. Eaton <jwe@octave.org> |
|
760 |
|
761 * testfun/test.m (test): Handle possibility of file_in_loadpath |
|
762 returning an empty cell array. |
|
763 |
6546
|
764 2007-02-27 Michael Goffioul <michael.goffioul@swing.be> |
6364
|
765 |
|
766 * pkg/pkg.m: Use fullfile to create filenames from parts. |
|
767 |
6546
|
768 2007-02-26 Michael Goffioul <michael.goffioul@swing.be> |
6358
|
769 |
|
770 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
771 control/base/Makefile.in, control/hinf/Makefile.in, |
|
772 control/obsolete/Makefile.in, control/system/Makefile.in, |
|
773 control/util/Makefile.in, deprecated/Makefile.in, |
|
774 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, |
|
775 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, |
|
776 miscellaneous/Makefile.in, optimization/Makefile.in, |
|
777 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, |
|
778 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
779 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
780 special-matrix/Makefile.in, startup/Makefile.in, |
|
781 statistics/Makefile.in, statistics/base/Makefile.in, |
|
782 statistics/distributions/Makefile.in, |
|
783 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
784 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: |
|
785 Use $(LN_S) instead of ln or ln -s. |
|
786 |
6356
|
787 2007-02-24 David Bateman <dbateman@free.fr> |
|
788 |
|
789 * pkg/pkg.m (configure_make): Ignore blank lines and trailing |
|
790 '\n' in FILES file. |
6357
|
791 (configure_make): Also install any mex files. |
6356
|
792 |
6353
|
793 2007-02-24 David Bateman <dbateman@free.fr> |
|
794 |
|
795 * statistics/distributions (SOURCES): Add nbincdf.m, |
|
796 nbininv.m, nbinpdf.m and nbinrnd.m. |
|
797 |
6351
|
798 2007-02-23 John W. Eaton <jwe@octave.org> |
|
799 |
|
800 * statistics/distributions/Makefile.in (SOURCES): Remove |
|
801 pascal_cdf.m pascal_inv.m pascal_pdf.m pascal_rnd.m from the list. |
|
802 |
|
803 * deprecated/Makefile.in (SOURCES): Add pascal_cdf.m, |
|
804 pascal_inv.m, pascal_pdf.m, and pascal_rnd.m to the list. |
|
805 |
6349
|
806 2007-02-23 David Bateman <dbateman@free.fr> |
|
807 |
|
808 * statistics/distributions/discrete_rnd.m, |
|
809 statistics/distributions/geornd.m, |
|
810 statistics/distributions/lognnd.m, |
|
811 statistics/distributions/nbinrnd.m, |
|
812 statistics/distributions/wblrnd.m: Accelerate distributions. |
|
813 |
|
814 * statistics/distributions/unidcdf.m, |
|
815 statistics/distributions/unidinv.m, |
|
816 statistics/distributions/unidpdf.m, |
|
817 statistics/distributions/unidrnd.m: New functions based on |
6351
|
818 discrete_cdf, etc. |
6349
|
819 |
|
820 * statistics/distributions/pascal_cdf.m, |
|
821 statistics/distributions/pascal_inv.m, |
|
822 statistics/distributions/pascal_pdf.m, |
|
823 statistics/distributions/pascal_rnd.m: Remove. |
|
824 * statistics/distributions/nbincdf.m, |
|
825 statistics/distributions/nbininv.m, |
|
826 statistics/distributions/nbinpdf.m, |
|
827 statistics/distributions/nbinrnd.m: Replace with matlab |
|
828 compatible functions. |
|
829 * deprecated/pascal_cdf.m, deprecated/pascal_inv.m, |
|
830 deprecated/pascal_pdf.m, deprecated/pascal_rnd.m: Use the new |
|
831 nbincdf, etc functions to implement these. |
|
832 |
6344
|
833 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
|
834 |
|
835 * plot/__uiobject_draw_axes__.m: Insert newline between plot |
|
836 command and data. |
|
837 |
|
838 2007-02-22 John W. Eaton <jwe@octave.org> |
|
839 |
|
840 * miscellaneous/doc.m: If index search fails, try again without |
|
841 the index search option. |
|
842 |
6339
|
843 2007-02-22 David Bateman <dbateman@free.fr> |
|
844 |
6341
|
845 * miscellaneous/doc.m: Find doc.info file correctly in user directories. |
|
846 |
6340
|
847 * statistics/distributions/frnd.m, statistics/distributions/exprnd.m, |
|
848 statistics/distributions/gamrnd.m, statistics/distributions/trnd.m, |
|
849 statistics/distributions/poissrnd.m, statistics/distributions/chi2rnd.m, |
|
850 statistics/distributions/betarnd.m: Convert to use randg, rande |
|
851 and randp to accelerate. |
|
852 |
6339
|
853 * pkg/pkg.m (fix_depends): Support > and < operators as well. |
|
854 |
6338
|
855 2007-02-22 John W. Eaton <jwe@octave.org> |
|
856 |
|
857 * plot/__uiobject_draw_axes__.m: If not using gnuplot for images, |
|
858 cache data and display after xlim and ylim have been determined. |
|
859 |
6337
|
860 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
|
861 |
|
862 * plot/__uiobject_draw_axes__.m: |
|
863 Allow multiple images to be displayed with gnuplot. |
|
864 |
6333
|
865 2007-02-20 Rafael Laboissiere <rafael@debian.org> |
|
866 |
|
867 * optimization/glpk.m: Document the fact that extra.mem does not work |
|
868 for versions of GLPK 4.15 and later. |
|
869 |
6328
|
870 2007-02-19 John W. Eaton <jwe@octave.org> |
|
871 |
|
872 * plot/__uiobject_alloc__.in: If next available element in |
|
873 __uiobject_list__ is 0, grow list before doing anything else. |
|
874 * plot/__uiobject_grow_list__.in: Only set __uiobject_head__ on |
|
875 first call when size of __uiobject_list__ is 0. |
|
876 |
6323
|
877 2007-02-16 John W. Eaton <jwe@octave.org> |
|
878 |
|
879 * miscellaneous/Makefile.in (SOURCES): Remove popen2.m from the list. |
|
880 |
6321
|
881 2007-02-16 Michael Goffioul <michael.goffioul@swing.be> |
|
882 |
|
883 * miscellaneous/popen2.m: Remove as replaced with builtin. |
|
884 |
6316
|
885 2007-02-16 Muthiah Annamalai <muthuspost@gmail.com> |
|
886 |
|
887 * specfun/nchoosek.m: Check nargin. |
|
888 |
6314
|
889 2007-02-15 John W. Eaton <jwe@octave.org> |
|
890 |
6315
|
891 * path/addpath.m, path/rmpath.m: Delete |
|
892 * path/Makefile.in (SOURCES): Remove them from the list. |
|
893 |
6314
|
894 * plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m: |
|
895 Delete title, xlabel, ylabel, and zlabel properties before |
|
896 reassigning. |
|
897 * plot/__uiobject_axes_init__.in: New arg, mode. |
|
898 Don't init outerposition if "mode" is "replace". |
|
899 * plot/newplot.m: Check both figure and axes nextplot properties. |
|
900 If axes nextplot property is replace, pass "replace" as mode arg |
|
901 to __uiobject_axes_init__. |
|
902 |
6308
|
903 2007-02-15 Daniel J Sebald <daniel.sebald@ieee.org> |
|
904 |
6310
|
905 * image/imshow.m: Don't restore old colormap. |
|
906 |
6309
|
907 * plot/__uiobject_image_ctor__.m: Set xdata and ydata properties. |
|
908 * image/__img__.m: New file containing common parts of image.m and |
|
909 imshow.m. |
6312
|
910 * image/Makefile.in (SOURCES): Add __img__.m to the list. |
6309
|
911 * image/image.m, image/imshow.m: Call __img__. |
|
912 * plot/__uiobject_draw_axes__.m: |
|
913 Handle rgb imaged data stored in 3-d arrays. |
|
914 |
6308
|
915 * plot/figure.m: Doc fix. |
|
916 |
6304
|
917 2007-02-14 Thomas Weber <thomas.weber.mail@gmail.com> |
|
918 |
|
919 * audio/wavread.m, audio/wavwrite.m: Use types with specific sizes |
|
920 for reading and writing data. New tests. Improve rounding. |
|
921 |
6302
|
922 2007-02-13 John W. Eaton <jwe@octave.org> |
|
923 |
6303
|
924 * plot/stem.m: New file, adapted from OctPlot. |
|
925 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
926 |
6302
|
927 * plot/__errcomm__.m, plot/__plr1__.m, plot/__plr2__.m, |
|
928 plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
929 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
930 plot/__plt2vv__.m, plot/__plt__.m, plot/loglog.m, |
|
931 plot/loglogerr.m, plot/plot.m, plot/plot3.m, plot/polar.m, |
|
932 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, |
|
933 plot/semilogyerr.m: Return handles to line objects. |
|
934 |
6301
|
935 2007-02-11 John W. Eaton <jwe@octave.org> |
|
936 |
|
937 * plot/__uiobject_close_all.m: New file. |
|
938 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
939 |
6298
|
940 2007-02-10 John W. Eaton <jwe@octave.org> |
|
941 |
|
942 * plot/drawnow.m: Arrange for plot streams to be close on exit. |
|
943 * plot/__uiobject_globals__.m: Don't call mlock. |
|
944 |
|
945 * plot/drawnow.m: Only check for DISPLAY if isunix returns true. |
|
946 * plot/__uiobject_delete__.m: Send quit command and flush stream |
|
947 before calling pclose. |
|
948 |
6291
|
949 2007-02-09 John W. Eaton <jwe@octave.org> |
|
950 |
6295
|
951 * plot/subplot.m: Delete spurious call to axes. |
|
952 |
6293
|
953 * plot/figure.m: Call drawnow for current figure before creating |
|
954 or switching to a new figure. |
|
955 * plot/__uiobject_init_figure__.in: Handle empty arg the same as |
|
956 nargin == 0 case. |
|
957 |
6291
|
958 * testfun/assert.m: Try to avoid problems when comparisons involve |
|
959 strange values like Inf+NaNi. |
|
960 |
6283
|
961 2007-02-08 John W. Eaton <jwe@octave.org> |
|
962 |
6286
|
963 * plot/drawnow.m: Use gnuplot_binary() instead of just "gnuplot" |
|
964 and check gnuplot_use_title_option instead of just assuming -title |
|
965 works. From Michael Goffioul <michael.goffioul@swing.be>. |
|
966 |
6285
|
967 * Makefile.in (DISTFILES): Add move-if-change to the list. |
|
968 |
6284
|
969 * audio/Makefile.in, control/base/Makefile.in, |
|
970 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
971 control/system/Makefile.in, control/util/Makefile.in, |
|
972 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, |
|
973 general/Makefile.in, image/Makefile.in, io/Makefile.in, |
|
974 linear-algebra/Makefile.in, miscellaneous/Makefile.in, |
|
975 optimization/Makefile.in, plot/Makefile.in, |
|
976 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
977 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
978 special-matrix/Makefile.in, startup/Makefile.in, |
|
979 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
980 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
981 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in, |
|
982 path/Makefile.in, pkg/Makefile.in: Explicitly list source files. |
|
983 |
6283
|
984 * plot/figure.m: Don't call drawnow. Correctly init figure when |
|
985 only given property list. |
|
986 |
6278
|
987 2007-02-07 John W. Eaton <jwe@octave.org> |
|
988 |
6280
|
989 * plot/__uiobject_draw_axes__.m: Handle xdir, ydir, and zdir axis |
|
990 properties. |
|
991 |
6278
|
992 * plot/sombrero.m: Call box ("off") after mesh. |
|
993 |
|
994 * plot/__uiobject_draw_axes__.m: Avoid rgb colors and "set style |
|
995 line default" commands with older versions of gnuplot. |
|
996 |
|
997 * plot/close.m: Use get (0, "currentifgure") instead of gcf. |
|
998 |
6273
|
999 2007-02-06 John W. Eaton <jwe@octave.org> |
|
1000 |
|
1001 * plot/__uiobject_draw_axes__.m: Set pt to 0 if marker is ".". |
|
1002 * sparse/gplot.m: Use line style - instead of 1. |
|
1003 |
6272
|
1004 2007-02-05 Rafael Laboissiere <rafael@debian.org> |
|
1005 |
|
1006 * plot/print.m: Avoid error message from cellidx. |
|
1007 |
|
1008 2007-02-05 John W. Eaton <jwe@octave.org> |
|
1009 |
|
1010 * plot/legend.m: Fix check for data. |
|
1011 |
6270
|
1012 2007-02-05 Thomas Treichl <Thomas.Treichl@gmx.net> |
|
1013 |
|
1014 * plot/__uiobject_draw_axes__.m (do_linestyle_command): |
|
1015 Always set lt and pt. |
|
1016 |
6269
|
1017 2007-02-05 Shai Ayal <shaiay@users.sourceforge.net> |
|
1018 |
|
1019 * plot/contourc.m: Correctly compute X and Y. |
|
1020 |
6268
|
1021 2007-02-05 John W. Eaton <jwe@octave.org> |
|
1022 |
|
1023 * plot/__uiobject_draw_axes__.m: Use title "" if no explicit title. |
|
1024 When setting {x,y,z}lim, also set {x,y,z}limmode to "auto. |
|
1025 |
6264
|
1026 2007-02-01 John W. Eaton <jwe@octave.org> |
|
1027 |
6266
|
1028 * plot/__uiobject_draw_axes__.m: |
|
1029 Don't try to set axis limits unless we have data. |
|
1030 |
6264
|
1031 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
1032 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
1033 plot/__plt2vv__.m, plot/__plt__.m, plot/__pltopt1__.m, |
|
1034 plot/__pltopt__.m, plot/plot3.m: Set and use options struct |
|
1035 instead of of key and fmt strings. |
|
1036 |
|
1037 * plot/__pltopt1__.m: Greatly simplify. |
|
1038 |
|
1039 * plot/__next_line_color__.m: New file. |
|
1040 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
1041 * plot/newplot.m: Call __next_line_color__ here to reset rotation. |
|
1042 |
|
1043 * plot/__default_plot_options__.m: New file. |
|
1044 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
1045 |
|
1046 * plot/__plt3__.m: Delete. |
|
1047 * plot/Makefile.in (SOURCES_M): Remove it from the list. |
|
1048 |
6259
|
1049 2007-01-31 John W. Eaton <jwe@octave.org> |
|
1050 |
6263
|
1051 * plot/__uiobject_draw_axes__.m: Set defaults for color, |
|
1052 linestyle, linewidth, marker, and markersize properties. |
|
1053 * plot/__uiobject_draw_axes__.m: Attempt to handle line and marker |
|
1054 colors and widths, and line styles. |
|
1055 |
|
1056 * plot/__plt__.m, image/image.m: Don't call drawnow. |
6262
|
1057 |
6261
|
1058 * plot/__gnuplot_version__.m: Restore from CVS Attic. |
|
1059 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
1060 |
|
1061 * plot/__uiobject_draw_axes__.m: Delete useless call to |
|
1062 __gnuplot_save_data__. |
|
1063 |
6259
|
1064 * image/image.m: Accept 2 args, but ignore the second for now. |
|
1065 |
6258
|
1066 2007-01-30 David Bateman <dbateman@free.fr> |
|
1067 |
|
1068 * pkg/pkg.m (pkg, isautoload, install, load_packages): Add ability |
|
1069 to flag a package as to be autoloaded. Add install flags -noauto, |
|
1070 -auto to force autoload behavior. |
|
1071 (installed_packages): Make list of installed packages unique. |
|
1072 |
6259
|
1073 2007-01-30 John W. Eaton <jwe@octave.org> |
|
1074 |
|
1075 * Merge of changes from graphics-branch: |
|
1076 |
|
1077 2007-01-29 John W. Eaton <jwe@octave.org> |
6257
|
1078 |
|
1079 * plot/subplot.m: Set nextplot property of current figure to "add". |
|
1080 |
|
1081 * plot/__uiobject_draw_axes__.m: Only handle outerposition |
|
1082 property if it exists. |
|
1083 |
6259
|
1084 2007-01-26 John W. Eaton <jwe@octave.org> |
6257
|
1085 |
|
1086 * plot/__uiobject_draw_axes__.m: Move initialization of max and |
|
1087 min values outside of loop over child objects. |
|
1088 |
|
1089 * plot/contour.m, plot/contourc.m: New files. |
|
1090 * plot/Makefile.in (SOURCES_M): Add them to the list. |
|
1091 |
|
1092 * image/image_viewer.m: Set view_fcn to "gnuplot_internal" if we |
|
1093 find a gnuplot version newer than 4.0. |
|
1094 * image/__img_gnuplot__.m: Delete. |
|
1095 * image/image.m: Create image graphics object. |
|
1096 Call newplot to setup and drawnow to finish. |
|
1097 Eliminate ZOOM arg. |
|
1098 |
|
1099 * plot/__uiobject_draw_axes__.m: Handle image data. |
|
1100 |
|
1101 * plot/legend.m: Eliminate useless variable "warned". |
|
1102 |
|
1103 * plot/__uiobject_image_ctor__.m: New file. |
|
1104 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
1105 |
|
1106 * plot/gcf.m: Also create new figure if currentfigure is 0. |
|
1107 * plot/drawnow.m: Use get (0, "currentfigure") instead of gcf. |
|
1108 |
|
1109 * plot/__uiobject_root_figure_ctor__.m: Set visible property. |
|
1110 |
|
1111 * plot/__default_colormap__.m: New file. |
|
1112 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
1113 * plot/__uiobject_figure_ctor__.m: Use it to set default colormap |
|
1114 property. |
|
1115 * image/colormap.m: Use colormap property of current figure |
|
1116 to store colormap instead of using persistent variable. |
|
1117 Call __default_colormap__ to get default map value. |
|
1118 * image/ocean.m, image/gray.m: Set colormap for current figure. |
|
1119 |
|
1120 * plot/__uiobject_draw_axes__.m: Handle aspect ratio property. |
|
1121 Handle some tick mark options. |
|
1122 |
|
1123 * plot/__uiobject_axes_setr__.m: If we see xtick, ytick, or ztick, |
|
1124 set corresponding *mode to "manual". If we set dataaspectratio, |
|
1125 set dataaspectratiomode to "manual". |
|
1126 |
|
1127 * plot/__uiobject_axes_init__.m: Include *tick, *tickmode, |
|
1128 *ticklabelmode, dataaspectratio, dataaspectratiomode properties. |
|
1129 |
|
1130 * plot/axis.m: New file. |
|
1131 * plot/Makefile.in (SOURCES_M): Include it in the list. |
|
1132 |
|
1133 * plot/__uiobject_axes_setr__.m: If we see xlim, ylim, or zlim, |
|
1134 set corresponding *limmode to "manual". |
|
1135 * plot/__uiobject_draw_axes__.m (get_axis_limits): New subfunction. |
|
1136 Use it to compute autosclaled limits. |
|
1137 Arg is now handle, not object. Change all callers. |
|
1138 Compute data limits. |
|
1139 |
6259
|
1140 2007-01-25 John W. Eaton <jwe@octave.org> |
6257
|
1141 |
|
1142 * plot/drawnow: Fix visibility check for zero args. |
|
1143 |
|
1144 * plot/text.m: New file. |
|
1145 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
1146 * plot/__uiobject_draw_axes__.m: Handle text objects. |
|
1147 * plot/__uiobject_text_ctor__.m: Include units, position, and |
|
1148 horizontalalignment properties. |
|
1149 |
|
1150 * plot/figure.m: Set options for f we just constructed or were |
|
1151 given as an argument, not gcf. Only return handle if nargout > 0. |
|
1152 |
|
1153 * plot/drawnow.m: Handle visible field for figure here. |
|
1154 * plot/__uiobject_figure_ctor__.m: Set default visible field. |
|
1155 |
|
1156 * plot/__uiobject_draw_axes__.m: Call undo_string_escapes on |
|
1157 title and axis labels. |
|
1158 |
|
1159 * plot/plot3.m, plot/mesh.m: Set default 3-d view here. |
|
1160 * plot/__uiobject_draw_axes__.m: Handle view for 3-d plots. |
|
1161 * plot/__uiobject_axes_init__.in: Set default view field for object. |
|
1162 * plot/view.m: New file. |
|
1163 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
1164 |
|
1165 * plot/__uiobject_make_handle__.in, plot/set.m, plot/drawnow.m: |
|
1166 Call __request_drawnow__. |
|
1167 |
|
1168 * plot/newplot.m: For "replace" action, call __uiobject_axes_init__. |
|
1169 |
|
1170 * plot/__uiobject_axes_ctor__.m, plot/__uiobject_text_ctor__.m: |
|
1171 Call set to set properties. Return handle instead of structure. |
|
1172 Change all callers. |
|
1173 |
|
1174 * plot/__uiobject_axes_setr__.m: New file. |
|
1175 * plot/set.in: Check for __setter__ field. |
|
1176 |
|
1177 * plot/__uiobject_axes_init__.in: |
|
1178 Rename from plot/__uiobject_axes_init__.m. |
|
1179 Include __uiobject_globals__. |
|
1180 Accept handle as arg instead of structure |
|
1181 * plot/Makefile.in (SOURCES_M): Remove __uiobject_axes_init__.m |
|
1182 from the list. |
|
1183 (SOURCES_IN): Add __uiobject_axes_init__.in to the list. |
|
1184 |
6259
|
1185 2007-01-24 John W. Eaton <jwe@octave.org> |
6257
|
1186 |
|
1187 * plot/Makefile.in ($(GEN_M)): Depend on __uiobject_globals__.m. |
|
1188 |
|
1189 * plot/__uiobject_globals__.m: Call __lock_global__ when |
|
1190 initializing each global variable. |
|
1191 |
6259
|
1192 2007-01-18 John W. Eaton <jwe@octave.org> |
6257
|
1193 |
|
1194 * plot/__uiobject_globals__.m (__uiobject_handles_free_list__, |
|
1195 __uiobject_figure_handles_free_list__): New global variables. |
|
1196 * plot/__uiobject_get_handle__.m, plot/__uiobject_free__.m: |
|
1197 Place unused handles on the free list. |
|
1198 |
|
1199 * plot/__uiobject_get_figure_handle__.in: Delete. |
|
1200 * plot/Makefile.in: Delete it from the SOURCES_IN list. |
|
1201 |
|
1202 * plot/__uiobject_init_figure__.in: Perform allocation of figure |
|
1203 handles here. Return figure handle. |
|
1204 * plot/figure.m: Call __uiobject_init_figure__ to allocate handle. |
|
1205 |
6259
|
1206 2007-01-11 John W. Eaton <jwe@octave.org> |
6257
|
1207 |
|
1208 * plot/__uiobject_draw_axes__.m: Use "%g", not "%.4g" when writing |
|
1209 data for gnuplot. |
|
1210 |
|
1211 * plot/Makefile.in (SOURCES_M, SOURCES_IN, GEN_M): New lists of |
|
1212 files. |
|
1213 (SOURCES): Include $(SOURCES_M) and $(SOURCES_M) in the list. |
|
1214 (DISTFILES): Include include-globals.awk in the list. |
|
1215 (FCN_FILES): Define using $(SOURCES_M) and $(GEN_M). |
|
1216 ($(GEN_M) : %.m : %.in): New rule. |
|
1217 |
|
1218 * include-globals.awk: New file. |
|
1219 |
|
1220 * plot/__uiobject_alloc__.in, plot/__uiobject_figures__.in, |
|
1221 plot/__uiobject_free__.in, plot/__uiobject_get_figure_handle__.in, |
|
1222 plot/__uiobject_get_handle__.in, plot/__uiobject_grow_list__.in, |
|
1223 plot/__uiobject_handle2idx__.in, plot/__uiobject_init_figure__.in, |
|
1224 plot/__uiobject_init_root_figure__.in, |
|
1225 plot/__uiobject_make_handle__.in, plot/get.in, plot/set.in: |
|
1226 Rename from corresponding .m files. |
|
1227 |
|
1228 * move-if-change: New file. |
|
1229 |
|
1230 * plot/__uiobject_delete__.m: New file. |
|
1231 * plot/delete.m, plot/__uiobject_delete_children__.m, |
|
1232 plot/__uiobject_delete_child__.m: Delete. |
|
1233 * miscellaneous/delete.m: Forward to __uiobject_delete__ if arg is |
|
1234 not a character string. |
|
1235 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2vm__.m: |
|
1236 Fix assignment to tmp key value in loop. |
|
1237 * plot/__uiobject_axes_dtor__.m: No need to Call __uiobject_free__ |
|
1238 for obj.title, obj.xlabel, obj.ylabel, obj.zlabel. |
|
1239 * plot/__uiobject_axes_dtor__.m, plot/__uiobject_axis_init__.m: |
|
1240 Inline code to delete children. |
|
1241 * plot/__uiobject_free__.m: Arg is now handle, not index into |
|
1242 __uiobject_list__. |
|
1243 * plot/clf.m, plot/closereq.m, plot/newplot.m: No need to remove |
|
1244 and free child. |
|
1245 |
6259
|
1246 2006-12-08 John W. Eaton <jwe@octave.org> |
|
1247 |
|
1248 * plot/gcf.m: Check if the root figure object's currentfigure |
|
1249 handle is empty, not 0. |
|
1250 * plot/__uiobject_root_figure_ctor__.m: |
|
1251 Set currentfigure to [], not 0. |
|
1252 |
|
1253 * plot/stairs.m: Handle matrix arguments. Improve compatibility. |
|
1254 |
|
1255 2006-12-07 John W. Eaton <jwe@octave.org> |
|
1256 |
|
1257 * plot/__plt_get_axis_arg__.m, plot/__uiobject_adopt__.m, |
|
1258 plot/__uiobject_alloc__.m, plot/__uiobject_axes_ctor__.m, |
|
1259 plot/__uiobject_axes_dtor__.m, plot/__uiobject_axes_init__.m, |
|
1260 plot/__uiobject_delete_children__.m, |
|
1261 plot/__uiobject_draw_axes__.m, plot/__uiobject_draw_figure__.m, |
|
1262 plot/__uiobject_figure_ctor__.m, plot/__uiobject_figures__.m, |
|
1263 plot/__uiobject_free__.m, plot/__uiobject_get_figure_handle__.m, |
|
1264 plot/__uiobject_get_handle__.m, plot/__uiobject_globals__.m, |
|
1265 plot/__uiobject_grow_list__.m, plot/__uiobject_handle2idx__.m, |
|
1266 plot/__uiobject_init_figure__.m, |
|
1267 plot/__uiobject_init_root_figure__.m, |
|
1268 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.m, |
|
1269 plot/__uiobject_remove_child__.m, |
|
1270 plot/__uiobject_root_figure_ctor__.m, |
|
1271 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m, |
|
1272 plot/axes.m, plot/box.m, plot/closereq.m, plot/delete.m, |
|
1273 plot/drawnow.m, plot/gca.m, plot/gcf.m, plot/get.m, |
|
1274 plot/isfigure.m, plot/ishandle.m, plot/line.m, plot/newplot.m, |
|
1275 plot/set.m: New files. |
|
1276 |
|
1277 * plot/__plt3__.m, plot/errorbar.m, plot/__axis_label__.m, |
|
1278 plot/__plr1__.m, plot/__errcomm__.m, plot/print.m, plot/zlabel.m, |
|
1279 plot/__plt1__.m, plot/__plt2__.m, plot/sombrero.m, plot/shg.m, |
|
1280 plot/fplot.m, plot/ndgrid.m, plot/clf.m, plot/hold.m, |
|
1281 plot/ishold.m, plot/meshdom.m, plot/ylabel.m, plot/__plt2ss__.m, |
|
1282 plot/__plt2vv__.m, plot/__plr2__.m, plot/__plt2mm__.m, |
|
1283 plot/__pltopt1__.m, plot/meshgrid.m, plot/__plt2mv__.m, |
|
1284 plot/figure.m, plot/xlabel.m, plot/stairs.m, plot/__plt2vm__.m, |
|
1285 plot/bar.m, plot/__errplot__.m, plot/semilogx.m, plot/semilogy.m, |
|
1286 plot/loglog.m, plot/polar.m, plot/legend.m, plot/orient.m, |
|
1287 plot/title.m, plot/__pltopt__.m, plot/grid.m, plot/hist.m, |
|
1288 plot/subplot.m, plot/plot.m, plot/mesh.m, plot/__plt__.m, |
|
1289 plot/close.m, plot/loglogerr.m, plot/plot3.m, plot/semilogxerr.m, |
|
1290 plot/semilogyerr.m, plot/replot.m: |
|
1291 Adapt to new graphics data structure. |
|
1292 |
|
1293 * plot/__do_legend__.m, plot/__gnuplot_version__.m, |
|
1294 plot/__init_plot_vars__.m, plot/__make_using_clause__.m, |
|
1295 plot/__plot_globals__.m, plot/__plr__.m, plot/__render_plot1__.m, |
|
1296 plot/__render_plot__.m, plot/__setup_plot__.m, plot/axis.m, |
|
1297 plot/contour.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, |
|
1298 plot/plot_border.m, plot/subwindow.m: Delete. |
|
1299 |
|
1300 2007-01-24 David Bateman <dbateman@free.fr> |
|
1301 |
|
1302 * pkg/pkg.m: Install ChangeLog file if it exists. |
|
1303 Delete bare newline in string passed to write_INDEX. |
|
1304 |
|
1305 * sparse/sprandsym.m: Make work for even values of N. |
|
1306 |
|
1307 2007-01-24 John W. Eaton <jwe@octave.org> |
|
1308 |
|
1309 * miscellaneous/news.m: New file. |
|
1310 |
|
1311 2007-01-23 Luis F. Ortiz <lortiz@interactivesupercomputing.com> |
|
1312 |
|
1313 * strings/strncmpi.m: Use strncmp instead of calling strtrunc on args. |
|
1314 |
|
1315 * strings/strncmp.m: Delete (we now have a built-in version). |
|
1316 |
|
1317 2007-01-22 Bob Weigel <rweigel@gmu.edu> |
|
1318 |
|
1319 * testfun/test.m: Check for all files in path, use first found. |
|
1320 |
|
1321 2007-01-22 David Bateman <dbateman@free.fr> |
|
1322 |
|
1323 * polynomial/spline.m: Make DG a column instead of a row vector. |
|
1324 |
|
1325 2007-01-18 S�ren Hauberg <hauberg@gmail.com> |
|
1326 |
|
1327 * pkg/pkg.m (copy_files): Call write_INDEX with correct target |
|
1328 file name. |
|
1329 |
|
1330 * image/ind2rgb.m: Better input checking. Return 3-d array if |
|
1331 nargout is 1. Handle colormaps that have too few colors. |
|
1332 |
|
1333 * pkg/pkg.m (create_pkgadddel): Call fullfile with nm, not "nm". |
|
1334 (configure_make): Use fullfile instead of concatenating with "/". |
|
1335 |
6258
|
1336 2007-01-10 Baylis Shanks <bshanks3@hotmail.com> |
|
1337 |
|
1338 * set/ismember.m: Handle N-d arrays. |
|
1339 |
|
1340 2007-01-10 David Bateman <dbateman@free.fr> |
|
1341 |
|
1342 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, |
|
1343 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, |
|
1344 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m: |
|
1345 New files. |
|
1346 |
|
1347 2007-01-09 S�ren Hauberg <hauberg@gmail.com> |
|
1348 |
|
1349 * pkg/pkg.m: Allow filenames to contain glob patterns. |
|
1350 |
|
1351 2007-01-08 S�ren Hauberg <hauberg@gmail.com> |
|
1352 |
|
1353 * pkg/pkg.m: Use copyfile instead of calling system. Use fullfile |
|
1354 instead of concatenating with "/". Use mlock to ensure that |
|
1355 persistent variables are not clobbered if user types clear all. |
|
1356 |
|
1357 2007-01-08 John W. Eaton <jwe@octave.org> |
|
1358 |
|
1359 * miscellaneous/copyfile.m, miscellaneous/movefile.m: |
|
1360 Improve handling of file names containing globbing characters. |
|
1361 From S�ren Hauberg <hauberg@gmail.com>. |
|
1362 |
|
1363 2007-01-05 John W. Eaton <jwe@octave.org> |
|
1364 |
|
1365 * optimization/optimset.m, optimization/__fsolve_defopts__.m: |
|
1366 New files. |
|
1367 |
|
1368 2006-12-30 John W. Eaton <jwe@octave.org> |
|
1369 |
|
1370 * sparse/spfun.m: Check for "function_handle" not "function handle". |
|
1371 * plot/fplot.m: Likewise. Use isa instead of strcmp + class. |
|
1372 |
|
1373 2006-12-27 S�ren Hauberg <hauberg@gmail.com> |
|
1374 |
|
1375 * image/imshow.m: Strip NaNs from image. |
|
1376 |
|
1377 2006-12-08 David Bateman <dbateman@free.fr> |
|
1378 |
|
1379 * sparse/normest.m: New file. |
|
1380 |
6286
|
1381 2006-12-06 Michael Goffioul <michael.goffioul@swing.be> |
6209
|
1382 |
6210
|
1383 * miscellaneous/copyfile.m, miscellaneous/movefile.m: |
|
1384 Work on Windows systems without cp or mv. |
|
1385 |
6209
|
1386 * startup/inputrc: Include sequences for Windows. |
|
1387 |
6203
|
1388 2006-12-06 S�ren Hauberg <hauberg@gmail.com> |
|
1389 |
|
1390 * pkg/pkg.m (unload_packages): New function. |
|
1391 (pkg): Handle unload action. |
|
1392 |
|
1393 * __errplot__.m: Add missing semicolon. |
|
1394 |
6193
|
1395 2006-11-30 John W. Eaton <jwe@octave.org> |
|
1396 |
|
1397 * miscellaneous/mexext.m: New file. |
|
1398 |
6189
|
1399 2006-11-29 David Bateman <dbateman@free.fr> |
|
1400 |
|
1401 * pkg/pkg.m: Add local_list and global_list options that allow the |
|
1402 location of package lists to be probed and set. |
|
1403 |
6179
|
1404 2006-11-17 John W. Eaton <jwe@octave.org> |
|
1405 |
6181
|
1406 * plot/__render_plot1__.m: Reverse y axis for images. |
|
1407 |
6179
|
1408 * plot/__render_plot__.m: New args, terminal and output. |
|
1409 * plot/print.m: Don't set output and term here. Instead, call |
|
1410 __render_plot__ with terminal and output. |
|
1411 |
6178
|
1412 2006-11-16 John W. Eaton <jwe@octave.org> |
|
1413 |
|
1414 * plot/__render_plot1__.m: New file. |
|
1415 * plot/__render_plot__.m: Use it. Loop over multiplots. |
|
1416 * plot/print.m, plot/subplot.m: Don't send "set multiplot" to |
|
1417 gnuplot. Let __render_plot__ do that. |
|
1418 |
6177
|
1419 2006-11-16 Francesco Potorti` <Potorti@isti.cnr.it> |
|
1420 |
|
1421 * plot/plot.m: Fix doc string. |
|
1422 |
6173
|
1423 2006-11-16 John W. Eaton <jwe@octave.org> |
|
1424 |
|
1425 * plot/__render_plot__.m: Check for mix of 2-d and 3-d plots |
|
1426 before sending anything to the plotter. |
|
1427 |
6172
|
1428 2006-11-15 John W. Eaton <jwe@octave.org> |
|
1429 |
|
1430 * image/__img_gnuplot__.m: Store more info in global plot |
|
1431 structures and use __render_plot__ to build plot command to |
|
1432 display image. |
|
1433 |
|
1434 * plot/__plt3__.m: New arg, parametric. Change all callers. |
|
1435 |
|
1436 * plot/__plot_globals__.m (__plot_line_offset__, __plot_command__, |
|
1437 __plot_command_sep__): Delete. |
|
1438 (__plot_data_type__, __plot_data_parametric__, |
|
1439 __plot_image_colormap__, __plot_image_dims__, __plot_fmtstr__, |
|
1440 __plot_usingstr__, __plot_withstr__): New variables. |
|
1441 * plot/__init_plot_vars__.m: Initialize them. |
|
1442 |
|
1443 * plot/__init_plot_vars__.m, plot/__setup_plot__.m: |
|
1444 Don't handle sep or cmd. |
|
1445 |
|
1446 * plot/__render_plot__.m: New function. |
|
1447 * plot/__plt__.m, plot/__plt3__.m, plot/__errplot__.m: |
|
1448 Store more info in global plot structures and use __render_plot__ |
|
1449 to build plot command. |
|
1450 * plot/replot.m: Simply call __render_plot__. |
|
1451 |
|
1452 * plot/contour.m, plot/mesh.m, plot/plot3.m: |
|
1453 Set __plot_data_parametric__ here. |
|
1454 |
6164
|
1455 2006-11-14 John W. Eaton <jwe@octave.org> |
|
1456 |
6166
|
1457 * plot/bottom_title.m, plot/top_title.m: Delete. |
|
1458 |
6164
|
1459 * image/image_viewer.m: Set default values here. |
|
1460 * image/image.m: Not here. |
|
1461 |
|
1462 * image/image_viewer.m: Always return old values. Check arguments. |
|
1463 * image/__img_gnuplot__.m: Rename from __img__m. |
|
1464 |
|
1465 2006-11-14 S�ren Hauberg <soren@hauberg.org> |
|
1466 |
|
1467 * image/image_viewer.m: New function. |
|
1468 * image/__img_via_file__.m: New function. |
|
1469 * image/image.m: Use image_viewer to determine which program to |
|
1470 use for image viewing. |
|
1471 * scripts/image/__img__.m: Silently accept more than 3 args. |
|
1472 |
6163
|
1473 2006-11-14 John W. Eaton <jwe@octave.org> |
|
1474 |
|
1475 * plot/__do_legend__.m, plot/__errplot__.m, |
|
1476 plot/__init_plot_vars__.m, plot/__plot_globals__.m, |
|
1477 plot/__plt3__.m, plot/__plt__.m, plot/__setup_plot__.m, |
|
1478 plot/legend.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, |
|
1479 plot/replot.m, plot/subplot.m, plot/subwindow.m: |
|
1480 Use __plot_globals__ for multiplot variables. Keep track of |
|
1481 multiplot info for each figure. Eliminate __multiplot_xscale__. |
|
1482 |
6157
|
1483 2006-11-13 John W. Eaton <jwe@octave.org> |
|
1484 |
6158
|
1485 * plot/mesh.m: Use proper dimensions for y in call to repmat. |
|
1486 |
6157
|
1487 * miscellaneous/substruct.m: New function. |
|
1488 |
|
1489 * testfun/assert.m: Force orientation to match when comparing |
|
1490 struct elements. |
|
1491 |
|
1492 * general/__isequal__.m: Avoid assignment of comma-separated lists |
|
1493 when comparing structs. |
|
1494 |
|
1495 2006-11-13 S�ren Hauberg <hauberg@gmail.com> |
|
1496 |
|
1497 * scripts/general/bicubic.m, scripts/general/cart2pol.m |
|
1498 scripts/general/cart2sph.m, scripts/plot/contour.m, |
|
1499 scripts/linear-algebra/cross.m, scripts/general/cumtrapz.m, |
|
1500 scripts/linear-algebra/dot.m, scripts/image/imshow.m, |
|
1501 scripts/general/interp2.m, scripts/general/mod.m, |
|
1502 scripts/plot/plot3.m, scripts/plot/__plr2__.m, |
|
1503 scripts/plot/__plr__.m, scripts/general/pol2cart.m, |
|
1504 scripts/general/polyarea.m, scripts/polynomial/polyfit.m, |
|
1505 scripts/general/rem.m, scripts/image/rgb2ind.m, |
|
1506 scripts/general/sph2cart.m, scripts/general/trapz.m, |
|
1507 scripts/miscellaneous/xor.m: Use size_equal |
|
1508 |
6156
|
1509 2006-11-13 John W. Eaton <jwe@octave.org> |
|
1510 |
|
1511 * plot/mesh.m: Use size_equal to compare dimensions. |
|
1512 |
6154
|
1513 2006-11-13 S�ren Hauberg <soren@hauberg.org> |
|
1514 |
|
1515 * plot/mesh.m: Simplify. Set hidden3d for the plot. |
|
1516 |
6152
|
1517 2006-11-11 S�ren Hauberg <soren@hauberg.org> |
|
1518 |
|
1519 * miscellaneous/copyfile.m: Fix docs to match function. |
|
1520 |
6145
|
1521 2006-11-08 John W. Eaton <jwe@octave.org> |
|
1522 |
6146
|
1523 * plot/legend.m: New function, adapted from Octave Forge. |
|
1524 |
|
1525 * plot/__do_legend__.m: New function. |
|
1526 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m, |
|
1527 plot/replot.m: Call it before plotting. |
|
1528 |
|
1529 * plot/plot3.m, plot/mesh.m, plot/contour.m: Don't send "set |
|
1530 noparametric" to gnuplot.. |
|
1531 |
|
1532 * plot/__plotopt__.m, plot/__pltopt1__.m, plot/__plt1__.m, |
|
1533 plot/__plt2__.m, plot/__plt2mm__.m, plot/__plt2mv__.m, |
|
1534 plot/__plt2ss__.m, plot/__plt2vm__.m, plot/__plt2vv__.m: Accept |
|
1535 and return key title separate from line format. Accept format and |
|
1536 key as cellstr. Always return data as cell array. Return format |
|
1537 and key title as cellstr. |
|
1538 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m: |
|
1539 Handle line format and key titles separately. |
|
1540 * plot/__plt3__.m, plot/__plt__.m: Handle data as cell array only. |
|
1541 |
|
1542 * plot/__plot_globals__.m (__plot_line_offset__, |
|
1543 __plot_key_labels__, __plot_key_properties__): New global |
|
1544 variables. Initialize them. |
|
1545 * plot/__init_plot_vars__.m (__plot_line_offset__, |
|
1546 __plot_key_labels__, __plot_key_properties__): Initialize. |
|
1547 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m |
|
1548 (__plot_line_offset__, __plot_key_labels__, |
|
1549 __plot_key_properties__): Store information about plot key titles. |
|
1550 |
|
1551 * plot/__errplot__.m, plot/__init_plot_vars__.m, plot/__plt3__.m, |
|
1552 plot/__plt__.m: Use cf, mxi, and myi as shorthand for |
|
1553 __current_figure__, __multiplot_xi__, and __multiplot_yi__, |
|
1554 respectively. |
|
1555 |
|
1556 * plot/__errcomm__.m: Allow fmt to be cellstr. |
|
1557 |
6145
|
1558 * strings/strcat.m: Disable Octave:empty-list-elements warning |
|
1559 whle concatenating args. |
|
1560 |
6144
|
1561 2006-11-07 John W. Eaton <jwe@octave.org> |
|
1562 |
|
1563 * startup/main-rcfile: Conditionally set PAGER_FLAGS. |
|
1564 |
6142
|
1565 2006-11-06 S�ren Hauberg <soren@hauberg.org> |
|
1566 |
6143
|
1567 * pkg/pkg.m (extract_pkg): No need to pass "dotexceptnewline" |
|
1568 option to regexp. |
|
1569 |
6142
|
1570 * image/__img__.m: Send "set size ratio -1" before plotting. |
|
1571 |
6138
|
1572 2006-11-03 Bill Denney <denney@seas.upenn.edu> |
|
1573 |
6139
|
1574 * strings/index.m: New arg, direction. Simplify and speed up. |
|
1575 * strings/rindex.m: Implement using index (..., "last"); |
|
1576 |
6138
|
1577 * scripts/blanks.m, scripts/strcat.m: Simplify. Add tests. |
|
1578 |
6130
|
1579 2006-11-01 Bill Denney <denney@seas.upenn.edu> |
|
1580 |
|
1581 * general/__isequal__.m: Test size and class more consistently. |
|
1582 |
6116
|
1583 2006-10-27 John W. Eaton <jwe@octave.org> |
|
1584 |
6117
|
1585 * miscellaneous/ls_command.m: Use /D instead of /w. |
|
1586 From Michael Goffioul <michael.goffioul@swing.be>. |
|
1587 |
6116
|
1588 * miscellaneous/ls.m, miscellaneous/ls_command.m: New files. |
|
1589 * miscellaneous/dir.m: Mark as a command. |
|
1590 |
6112
|
1591 2006-10-27 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
1592 |
|
1593 * miscellaneous/unpack.m: Fix missing comma in strcat call. |
|
1594 |
6088
|
1595 2006-10-25 John W. Eaton <jwe@octave.org> |
|
1596 |
|
1597 * image/image.m: Set x = y = [] when nargin == 0; |
|
1598 |
|
1599 2006-10-25 Quentin Spencer <qspencer@ieee.org> |
|
1600 |
|
1601 * image/image.m: Call __img__ if gnuplot version is > 4.0. |
|
1602 * image/__img__.m: New file, originally from |
|
1603 Daniel J Sebald <daniel.sebald@ieee.org>. |
|
1604 |
6087
|
1605 2006-10-25 John W. Eaton <jwe@octave.org> |
|
1606 |
|
1607 * plot/__gnuplot_version__.m: New function, originally from |
|
1608 Daniel J Sebald <daniel.sebald@ieee.org> by way of |
|
1609 Quentin Spencer <qspencer@ieee.org>. |
|
1610 |
6085
|
1611 2006-10-25 S�ren Hauberg <soren@hauberg.org> |
|
1612 |
|
1613 * plot/__pltopt__.m: Update symbol marker id numbers for gnuplot 4. |
|
1614 |
6081
|
1615 2006-10-24 Bill Denney <denney@seas.upenn.edu> |
|
1616 |
|
1617 * miscellaneous/unpack.m, miscellaneous/bunzip2.m, |
|
1618 miscellaneous/gunzip.m: New files. |
|
1619 * miscellaneous/untar.m, miscellaneous/unzip.m: |
|
1620 Call unpack to do the real work. |
|
1621 |
6075
|
1622 2006-10-24 John W. Eaton <jwe@octave.org> |
|
1623 |
6078
|
1624 * plot/plot3.m: If we have a format string, then also pass using |
|
1625 string to __plt3__. |
|
1626 |
6077
|
1627 * plot/sombrero.m: Don't return anything if nargout == 0. |
|
1628 |
6075
|
1629 * plot/__plt3__.m: Create using clause if none is supplied. |
6077
|
1630 * plot/mesh.m: Always pass empty using string to __plt3__. |
6075
|
1631 |
6069
|
1632 2006-10-20 Bill Denney <denney@seas.upenn.edu> |
|
1633 |
|
1634 * movefile.m, copyfile.m: Handle cellstr lists of files. |
|
1635 Quote filenames in shell commands. |
|
1636 |
6055
|
1637 2006-10-17 David Bateman <dbateman@free.fr> |
|
1638 |
|
1639 * pkg/pkg.m (uninstall): Allow the uninstall to proceed even if |
|
1640 the package directory is missing. |
|
1641 |
6052
|
1642 2006-10-13 John W. Eaton <jwe@octave.org> |
|
1643 |
|
1644 * plot/box.m: New function. |
|
1645 |
6050
|
1646 2006-10-13 Etienne Grossmann <etienne@tyzx.com> |
|
1647 |
|
1648 * general/ind2sub.m, general/sub2ind.m: Handle empty indices. |
|
1649 |
6049
|
1650 2006-10-12 Quentin Spencer <qspencer@ieee.org> |
|
1651 |
|
1652 * plot/sombrero.m: Only plot if nargout == 0. Otherwise, return data. |
|
1653 |
6047
|
1654 2006-10-10 John W. Eaton <jwe@octave.org> |
|
1655 |
|
1656 * miscellaneous/copyfile.m, miscellaneous/movefile.m: New functions. |
|
1657 |
6046
|
1658 2006-10-10 Bill Denney <denney@seas.upenn.edu> |
|
1659 |
|
1660 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, |
|
1661 audio/playaudio.m, audio/record.m, audio/saveaudio.m, |
|
1662 audio/setaudio.m, audio/wavread.m, audio/wavwrite.m, |
|
1663 control/base/__bodquist__.m, control/base/__freqresp__.m, |
|
1664 control/base/are.m, control/base/bode.m, control/base/ctrb.m, |
|
1665 control/base/damp.m, control/base/dare.m, control/base/dcgain.m, |
|
1666 control/base/dre.m, control/base/impulse.m, control/base/lqg.m, |
|
1667 control/base/lsim.m, control/base/lyap.m, control/base/nichols.m, |
|
1668 control/base/nyquist.m, control/base/obsv.m, control/base/pzmap.m, |
|
1669 control/base/rlocus.m, control/base/step.m, control/base/tzero.m, |
|
1670 control/hinf/h2norm.m, control/hinf/h2syn.m, |
|
1671 control/hinf/hinfnorm.m, control/hinf/hinfsyn.m, |
|
1672 control/hinf/is_dgkf.m, control/hinf/wgt1o.m, |
|
1673 control/obsolete/dezero.m, control/system/__sysdefioname__.m, |
|
1674 control/system/buildssic.m, control/system/c2d.m, |
|
1675 control/system/cellidx.m, control/system/d2c.m, |
|
1676 control/system/dmr2d.m, control/system/fir2sys.m, |
|
1677 control/system/is_abcd.m, control/system/is_controllable.m, |
|
1678 control/system/is_detectable.m, control/system/is_digital.m, |
|
1679 control/system/is_observable.m, control/system/is_siso.m, |
|
1680 control/system/is_stabilizable.m, control/system/is_stable.m, |
|
1681 control/system/jet707.m, control/system/listidx.m, |
|
1682 control/system/ord2.m, control/system/parallel.m, |
|
1683 control/system/ss.m, control/system/ss2zp.m, |
|
1684 control/system/starp.m, control/system/sys2ss.m, |
|
1685 control/system/sys2tf.m, control/system/sys2zp.m, |
|
1686 control/system/sysadd.m, control/system/sysappend.m, |
|
1687 control/system/syschtsam.m, control/system/sysconnect.m, |
|
1688 control/system/syscont.m, control/system/sysdimensions.m, |
|
1689 control/system/sysdisc.m, control/system/sysdup.m, |
|
1690 control/system/sysgetsignals.m, control/system/sysgettsam.m, |
|
1691 control/system/sysgroup.m, control/system/sysidx.m, |
|
1692 control/system/sysmin.m, control/system/sysmult.m, |
|
1693 control/system/sysout.m, control/system/sysprune.m, |
|
1694 control/system/sysscale.m, control/system/syssetsignals.m, |
|
1695 control/system/syssub.m, control/system/sysupdate.m, |
|
1696 control/system/tf.m, control/system/tfout.m, |
|
1697 control/system/ugain.m, control/system/zp.m, |
|
1698 control/system/zpout.m, control/util/__outlist__.m, |
|
1699 control/util/__zgpbal__.m, control/util/prompt.m, |
|
1700 control/util/sortcom.m, control/util/strappend.m, |
|
1701 deprecated/com2str.m, elfun/acot.m, elfun/acoth.m, elfun/acsc.m, |
|
1702 elfun/acsch.m, elfun/asec.m, elfun/asech.m, elfun/cot.m, |
|
1703 elfun/coth.m, elfun/csc.m, elfun/csch.m, elfun/lcm.m, elfun/sec.m, |
|
1704 elfun/sech.m, finance/fv.m, finance/fvl.m, finance/irr.m, |
|
1705 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, |
|
1706 finance/pvl.m, finance/rate.m, finance/vol.m, |
|
1707 general/__isequal__.m, general/bitcmp.m, general/bitget.m, |
|
1708 general/bitset.m, general/blkdiag.m, general/cart2sph.m, |
|
1709 general/cell2mat.m, general/circshift.m, general/cplxpair.m, |
|
1710 general/cumtrapz.m, general/deal.m, general/diff.m, |
|
1711 general/flipdim.m, general/fliplr.m, general/flipud.m, |
|
1712 general/ind2sub.m, general/int2str.m, |
|
1713 general/is_duplicate_entry.m, general/isdefinite.m, |
|
1714 general/isequal.m, general/isequalwithequalnans.m, |
|
1715 general/isscalar.m, general/issquare.m, general/issymmetric.m, |
|
1716 general/isvector.m, general/logical.m, general/logspace.m, |
|
1717 general/mod.m, general/nargchk.m, general/nextpow2.m, |
|
1718 general/perror.m, general/postpad.m, general/prepad.m, |
|
1719 general/randperm.m, general/rem.m, general/repmat.m, |
|
1720 general/rot90.m, general/rotdim.m, general/shift.m, |
|
1721 general/shiftdim.m, general/sph2cart.m, general/strerror.m, |
|
1722 general/sub2ind.m, general/trapz.m, general/tril.m, |
|
1723 general/triu.m, image/gray.m, image/gray2ind.m, image/hsv2rgb.m, |
|
1724 image/image.m, image/imagesc.m, image/ind2gray.m, image/ind2rgb.m, |
|
1725 image/loadimage.m, image/ntsc2rgb.m, image/ocean.m, |
|
1726 image/rgb2hsv.m, image/rgb2ntsc.m, image/saveimage.m, io/beep.m, |
|
1727 linear-algebra/commutation_matrix.m, linear-algebra/cond.m, |
|
1728 linear-algebra/cross.m, linear-algebra/dmult.m, |
|
1729 linear-algebra/dot.m, linear-algebra/duplication_matrix.m, |
|
1730 linear-algebra/krylov.m, linear-algebra/krylovb.m, |
|
1731 linear-algebra/logm.m, linear-algebra/norm.m, |
|
1732 linear-algebra/null.m, linear-algebra/orth.m, |
|
1733 linear-algebra/qzhess.m, linear-algebra/rank.m, |
|
1734 linear-algebra/trace.m, linear-algebra/vec.m, |
|
1735 linear-algebra/vech.m, miscellaneous/bincoeff.m, |
|
1736 miscellaneous/delete.m, miscellaneous/dir.m, miscellaneous/dos.m, |
|
1737 miscellaneous/fileattrib.m, miscellaneous/fileparts.m, |
|
1738 miscellaneous/flops.m, miscellaneous/fullfile.m, |
|
1739 miscellaneous/ispc.m, miscellaneous/isunix.m, |
|
1740 miscellaneous/menu.m, miscellaneous/not.m, miscellaneous/popen2.m, |
|
1741 miscellaneous/single.m, miscellaneous/unix.m, miscellaneous/ver.m, |
|
1742 miscellaneous/xor.m, optimization/glpk.m, optimization/glpkmex.m, |
|
1743 optimization/qp.m, optimization/sqp.m, plot/__axis_label__.m, |
|
1744 plot/__errplot__.m, plot/__plr1__.m, plot/__plr2__.m, |
|
1745 plot/__plr__.m, plot/__plt1__.m, plot/__plt2__.m, |
|
1746 plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, |
|
1747 plot/__plt2vm__.m, plot/__plt2vv__.m, plot/__pltopt1__.m, |
|
1748 plot/__pltopt__.m, plot/bar.m, plot/bottom_title.m, plot/close.m, |
|
1749 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/fplot.m, |
|
1750 plot/grid.m, plot/hist.m, plot/hold.m, plot/ishold.m, |
|
1751 plot/loglogerr.m, plot/mesh.m, plot/meshdom.m, plot/meshgrid.m, |
|
1752 plot/multiplot.m, plot/orient.m, plot/polar.m, plot/replot.m, |
|
1753 plot/semilogxerr.m, plot/semilogyerr.m, plot/sombrero.m, |
|
1754 plot/stairs.m, plot/subplot.m, plot/subwindow.m, plot/title.m, |
|
1755 plot/top_title.m, polynomial/compan.m, polynomial/conv.m, |
|
1756 polynomial/deconv.m, polynomial/mkpp.m, polynomial/poly.m, |
|
1757 polynomial/polyder.m, polynomial/polyderiv.m, |
|
1758 polynomial/polyfit.m, polynomial/polygcd.m, |
|
1759 polynomial/polyinteg.m, polynomial/polyout.m, |
|
1760 polynomial/polyreduce.m, polynomial/polyval.m, |
|
1761 polynomial/polyvalm.m, polynomial/ppval.m, polynomial/residue.m, |
|
1762 polynomial/roots.m, polynomial/unmkpp.m, quaternion/quaternion.m, |
|
1763 set/complement.m, set/create_set.m, set/intersect.m, |
|
1764 set/ismember.m, set/setdiff.m, set/setxor.m, set/union.m, |
|
1765 set/unique.m, signal/arch_fit.m, signal/arch_rnd.m, |
|
1766 signal/arma_rnd.m, signal/autocor.m, signal/autoreg_matrix.m, |
|
1767 signal/bartlett.m, signal/blackman.m, signal/detrend.m, |
|
1768 signal/diffpara.m, signal/durbinlevinson.m, signal/fftconv.m, |
|
1769 signal/fftfilt.m, signal/fftshift.m, signal/filter2.m, |
|
1770 signal/freqz.m, signal/hamming.m, signal/hanning.m, |
|
1771 signal/hurst.m, signal/ifftshift.m, signal/sinetone.m, |
|
1772 signal/sinewave.m, signal/spencer.m, signal/stft.m, |
|
1773 signal/synthesis.m, signal/unwrap.m, sparse/gplot.m, |
|
1774 sparse/spfun.m, sparse/sprand.m, sparse/sprandn.m, |
|
1775 sparse/sprandsym.m, sparse/spstats.m, specfun/beta.m, |
|
1776 specfun/betai.m, specfun/betaln.m, specfun/erfinv.m, |
|
1777 specfun/gammai.m, specfun/log2.m, specfun/pow2.m, |
|
1778 special-matrix/hankel.m, special-matrix/hilb.m, |
|
1779 special-matrix/invhilb.m, special-matrix/sylvester_matrix.m, |
|
1780 special-matrix/toeplitz.m, special-matrix/vander.m, |
|
1781 statistics/base/center.m, statistics/base/cloglog.m, |
|
1782 statistics/base/cor.m, statistics/base/corrcoef.m, |
|
1783 statistics/base/cov.m, statistics/base/cut.m, |
|
1784 statistics/base/gls.m, statistics/base/iqr.m, |
|
1785 statistics/base/kendall.m, statistics/base/kurtosis.m, |
|
1786 statistics/base/logit.m, statistics/base/mahalanobis.m, |
|
1787 statistics/base/mean.m, statistics/base/meansq.m, |
|
1788 statistics/base/median.m, statistics/base/moment.m, |
|
1789 statistics/base/ols.m, statistics/base/ppplot.m, |
|
1790 statistics/base/probit.m, statistics/base/qqplot.m, |
|
1791 statistics/base/range.m, statistics/base/ranks.m, |
|
1792 statistics/base/run_count.m, statistics/base/skewness.m, |
|
1793 statistics/base/spearman.m, statistics/base/statistics.m, |
|
1794 statistics/base/std.m, statistics/base/studentize.m, |
|
1795 statistics/base/table.m, statistics/base/values.m, |
|
1796 statistics/base/var.m, statistics/distributions/betacdf.m, |
|
1797 statistics/distributions/betainv.m, |
|
1798 statistics/distributions/betapdf.m, |
|
1799 statistics/distributions/betarnd.m, |
|
1800 statistics/distributions/binocdf.m, |
|
1801 statistics/distributions/binoinv.m, |
|
1802 statistics/distributions/binopdf.m, |
|
1803 statistics/distributions/binornd.m, |
|
1804 statistics/distributions/cauchy_cdf.m, |
|
1805 statistics/distributions/cauchy_inv.m, |
|
1806 statistics/distributions/cauchy_pdf.m, |
|
1807 statistics/distributions/cauchy_rnd.m, |
|
1808 statistics/distributions/chi2cdf.m, |
|
1809 statistics/distributions/chi2inv.m, |
|
1810 statistics/distributions/chi2pdf.m, |
|
1811 statistics/distributions/chi2rnd.m, |
|
1812 statistics/distributions/discrete_cdf.m, |
|
1813 statistics/distributions/discrete_inv.m, |
|
1814 statistics/distributions/discrete_pdf.m, |
|
1815 statistics/distributions/discrete_rnd.m, |
|
1816 statistics/distributions/empirical_rnd.m, |
|
1817 statistics/distributions/expcdf.m, |
|
1818 statistics/distributions/expinv.m, |
|
1819 statistics/distributions/exppdf.m, |
|
1820 statistics/distributions/exprnd.m, |
|
1821 statistics/distributions/fcdf.m, statistics/distributions/finv.m, |
|
1822 statistics/distributions/fpdf.m, statistics/distributions/frnd.m, |
|
1823 statistics/distributions/gamcdf.m, |
|
1824 statistics/distributions/gaminv.m, |
|
1825 statistics/distributions/gampdf.m, |
|
1826 statistics/distributions/gamrnd.m, |
|
1827 statistics/distributions/geocdf.m, |
|
1828 statistics/distributions/geoinv.m, |
|
1829 statistics/distributions/geopdf.m, |
|
1830 statistics/distributions/geornd.m, |
|
1831 statistics/distributions/hygecdf.m, |
|
1832 statistics/distributions/hygeinv.m, |
|
1833 statistics/distributions/hygepdf.m, |
|
1834 statistics/distributions/hygernd.m, |
|
1835 statistics/distributions/kolmogorov_smirnov_cdf.m, |
|
1836 statistics/distributions/laplace_cdf.m, |
|
1837 statistics/distributions/laplace_inv.m, |
|
1838 statistics/distributions/laplace_pdf.m, |
|
1839 statistics/distributions/laplace_rnd.m, |
|
1840 statistics/distributions/logistic_cdf.m, |
|
1841 statistics/distributions/logistic_inv.m, |
|
1842 statistics/distributions/logistic_pdf.m, |
|
1843 statistics/distributions/logistic_rnd.m, |
|
1844 statistics/distributions/logncdf.m, |
|
1845 statistics/distributions/logninv.m, |
|
1846 statistics/distributions/lognpdf.m, |
|
1847 statistics/distributions/lognrnd.m, |
|
1848 statistics/distributions/normcdf.m, |
|
1849 statistics/distributions/norminv.m, |
|
1850 statistics/distributions/normpdf.m, |
|
1851 statistics/distributions/normrnd.m, |
|
1852 statistics/distributions/pascal_cdf.m, |
|
1853 statistics/distributions/pascal_inv.m, |
|
1854 statistics/distributions/pascal_pdf.m, |
|
1855 statistics/distributions/pascal_rnd.m, |
|
1856 statistics/distributions/poisscdf.m, |
|
1857 statistics/distributions/poissinv.m, |
|
1858 statistics/distributions/poisspdf.m, |
|
1859 statistics/distributions/poissrnd.m, |
|
1860 statistics/distributions/stdnormal_cdf.m, |
|
1861 statistics/distributions/stdnormal_inv.m, |
|
1862 statistics/distributions/stdnormal_pdf.m, |
|
1863 statistics/distributions/stdnormal_rnd.m, |
|
1864 statistics/distributions/tcdf.m, statistics/distributions/tinv.m, |
|
1865 statistics/distributions/tpdf.m, statistics/distributions/trnd.m, |
|
1866 statistics/distributions/unifcdf.m, |
|
1867 statistics/distributions/unifinv.m, |
|
1868 statistics/distributions/unifpdf.m, |
|
1869 statistics/distributions/unifrnd.m, |
|
1870 statistics/distributions/wblcdf.m, |
|
1871 statistics/distributions/wblinv.m, |
|
1872 statistics/distributions/wblpdf.m, |
|
1873 statistics/distributions/wblrnd.m, |
|
1874 statistics/distributions/wienrnd.m, statistics/tests/anova.m, |
|
1875 statistics/tests/bartlett_test.m, |
|
1876 statistics/tests/chisquare_test_homogeneity.m, |
|
1877 statistics/tests/chisquare_test_independence.m, |
|
1878 statistics/tests/cor_test.m, statistics/tests/f_test_regression.m, |
|
1879 statistics/tests/hotelling_test.m, |
|
1880 statistics/tests/hotelling_test_2.m, |
|
1881 statistics/tests/kolmogorov_smirnov_test.m, |
|
1882 statistics/tests/kolmogorov_smirnov_test_2.m, |
|
1883 statistics/tests/kruskal_wallis_test.m, statistics/tests/manova.m, |
|
1884 statistics/tests/mcnemar_test.m, statistics/tests/prop_test_2.m, |
|
1885 statistics/tests/run_test.m, statistics/tests/sign_test.m, |
|
1886 statistics/tests/t_test.m, statistics/tests/t_test_2.m, |
|
1887 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, |
|
1888 statistics/tests/var_test.m, statistics/tests/welch_test.m, |
|
1889 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, |
|
1890 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, |
|
1891 strings/deblank.m, strings/dec2base.m, strings/dec2bin.m, |
|
1892 strings/dec2hex.m, strings/findstr.m, strings/hex2dec.m, |
|
1893 strings/index.m, strings/isletter.m, strings/lower.m, |
|
1894 strings/rindex.m, strings/split.m, strings/str2mat.m, |
|
1895 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, |
|
1896 strings/strfind.m, strings/strjust.m, strings/strmatch.m, |
|
1897 strings/strncmp.m, strings/strncmpi.m, strings/strrep.m, |
|
1898 strings/strtrunc.m, strings/strvcat.m, strings/substr.m, |
|
1899 strings/upper.m, testfun/assert.m, testfun/demo.m, |
|
1900 testfun/example.m, testfun/fail.m, testfun/speed.m, |
|
1901 testfun/test.m, time/asctime.m, time/calendar.m, time/ctime.m, |
|
1902 time/datenum.m, time/datestr.m, time/datevec.m, time/eomday.m, |
|
1903 time/etime.m, time/is_leap_year.m: |
|
1904 Use print_usage instead of usage. |
|
1905 |
6044
|
1906 2006-10-09 David Bateman <dbateman@free.fr> |
|
1907 |
|
1908 * time/datevec.m: Add additional compatible default parsing strings. |
|
1909 |
6395
|
1910 2006-10-09 Bill Denney <denney@seas.upenn.edu> |
6041
|
1911 |
6042
|
1912 * pkg/pkg.m: Remove trailing "\n" from error messages. |
|
1913 Remove compare_versions subfunction. |
|
1914 |
|
1915 * miscellaneous/compare_versions.m: New function to compare |
|
1916 version numbers as strings with any boolean operators. |
|
1917 |
6041
|
1918 * miscellaneous/untar.m: Check more rigorously to see if the tar |
|
1919 file exists. |
|
1920 |
6036
|
1921 2006-10-04 John W. Eaton <jwe@octave.org> |
|
1922 |
|
1923 * pkg/pkg.m: Use fullfile to concatenate directory and file names. |
|
1924 |
6032
|
1925 2006-10-04 S�ren Hauberg <soren@hauberg.org> |
|
1926 |
6037
|
1927 * pkg/pkg.m: Update docs. Handle prefix option. |
|
1928 Handle dependencies for load option. |
6032
|
1929 |
6029
|
1930 2006-10-04 John W. Eaton <jwe@octave.org> |
|
1931 |
6030
|
1932 * deprecated/clearplot.m, deprecated/clg.m: New functions. |
|
1933 |
|
1934 * plot/clg.m: Delete. |
|
1935 * plot/__init_plot_vars__.m: New function. |
|
1936 * plot/__setup_plot__.m: Use __init_plot_vars__. |
6029
|
1937 |
6025
|
1938 2006-10-03 S�ren Hauberg <soren@hauberg.org> |
|
1939 |
|
1940 * pkg/pkg.m: Avoid calling addpath with no args. |
|
1941 |
6024
|
1942 2006-10-03 Bill Denney <denney@seas.upenn.edu> |
|
1943 |
|
1944 * audio/loadaudio.m, control/base/nyquist.m, |
|
1945 control/system/__zp2ssg2__.m, linear-algebra/cross.m, |
|
1946 linear-algebra/krylov.m, statistics/base/center.m, |
|
1947 statistics/base/median.m, statistics/base/std.m, |
|
1948 statistics/base/var.m, testfun/test.m: Use the new find syntax to |
|
1949 find first or last element matching a condition. |
|
1950 |
6023
|
1951 2006-10-02 Bill Denney <denney@seas.upenn.edu> |
|
1952 |
|
1953 * strings/deblank.m, strings/upper.m, strings/lower.m, |
|
1954 general/__isequal__.m: Minimize looping using cellfun. |
|
1955 |
6020
|
1956 2006-10-02 David Bateman <dbateman@free.fr> |
|
1957 |
|
1958 * pkg/pkg.m (copy_files): always create installation directory. |
|
1959 |
6016
|
1960 2006-10-02 Thomas Weber <thomas.weber.mail@gmail.com> |
|
1961 |
|
1962 * miscellaneous/doc.m: Swap file and directory args to info. |
|
1963 |
|
1964 2006-10-01 Arno Onken <whyly@gmx.net> |
|
1965 |
|
1966 * statistics/distributions/exprnd.m: Fix typo. |
|
1967 |
6014
|
1968 2006-09-30 Benjamin Lindner <lindnerben@gmx.net> |
|
1969 |
|
1970 * polynomial/ppval.m: Use .' instead of '. |
|
1971 * polynomial/spline.m: Likewise. New tests. |
|
1972 |
6004
|
1973 2006-09-26 David Bateman <dbateman@free.fr> |
|
1974 |
|
1975 * __plt3__.m: Using global variables __plot_data__, |
|
1976 __plot_data_offset__ and __plot_command__ to store plots and |
|
1977 correctly handle multiplots, and hold state. Only accept a single |
|
1978 data parameter plus, using, format and with strings. Remove |
|
1979 setting of gnuplot parameters. |
|
1980 * __make_using_clause__.m: New function extracted from __plt__.m. |
|
1981 * __setup_plot__.m: Convert to a function and pass the plotting |
|
1982 command to use. |
|
1983 * __plt__.m: Change call to __setup_plot__ and __make_using_clause__. |
|
1984 * contour.m: Use unwind protect on the parametric state of plot |
|
1985 and __plt3__ instead of calling __gnuplot_splot__ directly. |
|
1986 * mesh.m: ditto. |
|
1987 * plot3.m: Error checking, setting of parametric state and |
|
1988 formation of matrix to plot moved from old __plt3__. |
|
1989 |
5996
|
1990 2006-09-22 Michael Creel <michael.creel@uab.es> |
|
1991 |
5997
|
1992 * deprecated/chisquare_pdf.m: Typo in documentation. |
5996
|
1993 |
|
1994 2006-09-22 S�ren Hauberg <soren@hauberg.org> |
|
1995 |
|
1996 * signal/filter2.m: Correct texinfo doc. |
|
1997 |
|
1998 2006-09-22 David Bateman <dbateman@free.fr> |
|
1999 |
|
2000 * miscellaneous/parseparams.m: Correct texinfo doc. |
|
2001 |
5993
|
2002 2006-09-15 David Bateman <dbateman@free.fr> |
|
2003 |
|
2004 * pkg/pkg.m (prepare_installation): Don't create package |
|
2005 installation directory here. |
|
2006 (copy_files): Create it here instead, to avoid issues with |
|
2007 upgrades. Also install the COPYING file in packinfo. |
|
2008 |
5989
|
2009 2006-09-13 John W. Eaton <jwe@octave.org> |
|
2010 |
|
2011 * general/blkdiag.m: Adjust to new cellfun rules. |
|
2012 |
5987
|
2013 2006-08-30 David Bateman <dbateman@free.fr> |
|
2014 |
|
2015 * pkg/pkg.m (install): Disallow bundles of packages. More verbose |
|
2016 error message for archive name not matching package name. |
|
2017 (installed_packages): Size header of printed results to |
|
2018 arguments. Sort the list of installed packages before printing |
|
2019 them. |
|
2020 |
5986
|
2021 2006-09-11 Paul Kienzle <pkienzle@users.sf.net> |
|
2022 |
|
2023 * signal/freqz.m: Update tests. |
|
2024 |
|
2025 2006-09-11 Ken Kouno <kouno@mk.ecei.tohoku.ac.jp> |
|
2026 |
|
2027 * signal/freqz.m: Corretly postpad arrays. |
|
2028 Don't call fliplr on a column vector. |
|
2029 |
5984
|
2030 2006-09-11 Luis F. Ortiz <lortiz@interactivesupercomputing.com> |
|
2031 |
|
2032 * general/shiftdim.m: Use permute instead of reshape. |
|
2033 |
5981
|
2034 2006-09-05 Alexander Barth <abarth93@users.sourceforge.net> |
|
2035 |
|
2036 * miscellaneous/parseparams.m: New function. |
|
2037 |
5980
|
2038 2006-09-05 Rafael Laboissiere <rafael@debian.org> |
|
2039 |
|
2040 * miscellaneous/doc.m: Swap order of --file and --directory |
|
2041 options for info program invocation. |
|
2042 |
5976
|
2043 2006-08-30 David Bateman <dbateman@free.fr> |
|
2044 |
5987
|
2045 * pkg/pkg.m (create_pkgadddel): Resolve variable name-clash from |
5976
|
2046 previous change. |
|
2047 |
5974
|
2048 2006-08-26 David Bateman <dbateman@free.fr> |
|
2049 |
|
2050 * pkg/pkg.m (install, uninstall, installed_packages): Allow for |
|
2051 absence of trailing "/" in OCTAVE_HOME. |
|
2052 |
5973
|
2053 2006-08-25 Alexander Barth <abarth@marine.usf.edu> |
|
2054 |
|
2055 * time/datenum.m: Allow arg to be character string. |
|
2056 |
5971
|
2057 2006-08-25 David Bateman <dbateman@free.fr> |
|
2058 |
|
2059 * pkg/pkg.m (install): Verify that package name correponds to the |
|
2060 archive name. Treat both PKG_ADD and PKG_DEL and remove them if |
|
2061 they are empty. If package directory is empty, remove it to fail |
|
2062 gracefully for system specific packages. |
|
2063 (extract_pkgadd, create_pkgadd): delete. |
|
2064 (extract_pkg, create_pkg): Generalized versions of deleted functions |
|
2065 (copy_files): Install both bin/ and doc/ directories, adding the |
|
2066 bin/ to the EXEC_PATH when the package is loaded. |
|
2067 |
5962
|
2068 2006-08-24 John W. Eaton <jwe@octave.org> |
|
2069 |
|
2070 * image/saveimage.m: Use logical indexing instead of |
|
2071 indices computed by calling find on the logical index. |
|
2072 |
5961
|
2073 2006-08-24 S�ren Hauberg <soren@hauberg.org> |
|
2074 |
5967
|
2075 * miscellaneous/bincoeff.m, specfun/factorial.m: |
5963
|
2076 Use logical indexing instead of indices computed by calling find |
|
2077 on the logical index. |
|
2078 |
|
2079 * linear-algebra/krylov.m: Delete unused local var nzidx. |
5961
|
2080 |
5959
|
2081 2006-08-23 Quentin Spencer <qspencer@ieee.org> |
|
2082 |
|
2083 * control/system/tf2zp.m: Simplify gain calculation. |
|
2084 |
5958
|
2085 2006-08-23 John W. Eaton <jwe@octave.org> |
|
2086 |
|
2087 * plot/__plt__.m: Insert using clauses for all plots. |
|
2088 |
5957
|
2089 2006-08-23 A S Hodel <hodelas@auburn.edu> |
|
2090 |
|
2091 * control/system/sysscale.m: Call tf and zp with correct number of |
|
2092 args. |
|
2093 |
5955
|
2094 2006-08-22 David Bateman <dbateman@free.fr> |
|
2095 |
|
2096 * pkg/pkg.m (extract_pkgadd, create_pkgadd): New functions to |
|
2097 Search inst/*.m and src/*.m files in the package for |
|
2098 PKG_ADD directives and append user supplied PKG_ADD. |
|
2099 (pkg): Call create_pkgadd after copying files. |
|
2100 |
5947
|
2101 2006-08-21 S�ren Hauberg <soren@hauberg.org> |
|
2102 |
|
2103 * pkg/pkg.m: Handle multiple packages in a single file. |
|
2104 Insert directory separator between OCTAVE_HOME and rest of package |
|
2105 installation directory. |
|
2106 |
|
2107 2006-08-21 John W. Eaton <jwe@octave.org> |
|
2108 |
|
2109 * general/num2str.m: Early return if arg is empty. |
|
2110 From Thomas Treichl <Thomas.Treichl@gmx.net>. |
|
2111 |
5946
|
2112 2006-08-21 David Bateman <dbateman@free.fr> |
|
2113 |
|
2114 * strings/mat2str.m: Compute NC before using. |
|
2115 |
5937
|
2116 2006-08-17 John W. Eaton <jwe@octave.org> |
|
2117 |
|
2118 * audio/wavread.m: Fix calculation of sample count. |
|
2119 |
5934
|
2120 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
|
2121 |
|
2122 * image/imshow.m: New Matlab-compatible version. |
|
2123 |
5930
|
2124 2006-08-15 John W. Eaton <jwe@octave.org> |
|
2125 |
|
2126 * deprecated/is_global.m: Delete. |
|
2127 |
5928
|
2128 2006-08-14 John W. Eaton <jwe@octave.org> |
|
2129 |
|
2130 * pkg/Makefile.in (script_sub_dir): Change from plot to pkg. |
|
2131 |
5926
|
2132 2006-08-14 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
2133 |
|
2134 * sparse/spy.m, control/base/bode.m, control/base/__stepimp__.m, |
|
2135 signal/freqz_plot.m: Adapt to new automatic_replot definition. |
|
2136 |
5928
|
2137 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
|
2138 |
|
2139 * pkg/pkg.m: Don't pass function name to print_usage. |
|
2140 Use addpath and rmpath instead of manipulating LOADPATH. |
|
2141 Handle changes to system function. |
|
2142 (rm_rf): New subfunction. Use it to avoid confirmation dialog for |
|
2143 recursive directory removal. |
5922
|
2144 |
5924
|
2145 * strings/bin2dec.m: Ignore spaces in input for compatibility. |
|
2146 |
5923
|
2147 * colormap.m: Change global variable to persistent. |
|
2148 |
5922
|
2149 * rgb2ind.m: Handle single 3-d array as rgb image. |
|
2150 |
5920
|
2151 2006-08-14 John W. Eaton <jwe@octave.org> |
|
2152 |
|
2153 * strings/str2double.m: Fix missing semicolon. |
|
2154 |
5910
|
2155 2006-07-27 Jim Peterson <jpeterson@annapmicro.com> |
|
2156 |
|
2157 * plot/plot3.m: Accept one complex or one real and one complex |
|
2158 argument and plot real and imaginary components for y and z. |
|
2159 |
5908
|
2160 2006-07-27 John W. Eaton <jwe@octave.org> |
|
2161 |
|
2162 * testfun/test.m: Call fflush after each block of calls to |
|
2163 fprintf, fputs, or fdisp. |
|
2164 |
5904
|
2165 2006-07-26 John W. Eaton <jwe@octave.org> |
|
2166 |
|
2167 * miscellaneous/mex.m: New function. |
|
2168 |
5901
|
2169 2006-07-22 John W. Eaton <jwe@octave.org> |
|
2170 |
|
2171 * special-matrix/hadamard.m: Coerce bool matrix to double. |
|
2172 |
5881
|
2173 2006-07-07 John W. Eaton <jwe@octave.org> |
|
2174 |
|
2175 * miscellaneous/orderfields.m: New file. |
|
2176 |
5873
|
2177 2006-06-30 John W. Eaton <jwe@octave.org> |
|
2178 |
|
2179 * time/datevec.m: Make another attempt to account for precision of |
|
2180 datenum format. |
|
2181 |
5868
|
2182 2006-06-29 John W. Eaton <jwe@octave.org> |
|
2183 |
|
2184 * miscellaneous/dump_prefs.m: Remove obsolete symbols from the list. |
|
2185 Use feval instead of "type -q" to get values now that all the |
|
2186 symbols are functions. |
|
2187 |
5860
|
2188 2006-06-16 John W. Eaton <jwe@octave.org> |
|
2189 |
|
2190 * time/datevec.m: Avoid computing log of non-positive values. |
|
2191 |
5859
|
2192 2006-06-14 John W. Eaton <jwe@octave.org> |
|
2193 |
|
2194 * time/datevec.m: Attempt to account for precision of datenum format. |
|
2195 |
5839
|
2196 2006-06-01 Quentin H. Spencer <qspencer@ieee.org> |
|
2197 |
|
2198 * audio/wavread.m: Fix file range error and add read support for |
|
2199 24-bit WAV files. |
|
2200 |
5837
|
2201 2006-06-01 David Bateman <dbateman@free.fr> |
|
2202 |
|
2203 * general/interpft.m, general/quadl.m, general/polyarea.m, |
|
2204 general/interp1.m, general/gradient.m, general/interp2.m, |
|
2205 general/bicubic.m, miscellaneous/inputname.m, plot/__plt3__.m, |
|
2206 plot/ndgrid.m, plot/plot3.m, polynomial/pchip.m, sparse/pcg.m, |
|
2207 sparse/pcr.m, strings/mat2str.m: New files from Octave Forge. |
|
2208 |
5835
|
2209 2006-05-31 Bill Denney <bill@givebillmoney.com> |
|
2210 |
|
2211 * miscellaneous/fileparts.m, miscellaneous/fullfile.m: Add seealso. |
|
2212 * miscellaneous/texas_lotto.m: Fix warning message. |
|
2213 |
5830
|
2214 2006-05-26 John W. Eaton <jwe@octave.org> |
|
2215 |
|
2216 * miscellaneous/doc.m: Also handle nargin == 0. |
|
2217 |
5829
|
2218 2006-05-23 John W. Eaton <jwe@octave.org> |
|
2219 |
|
2220 * plot/mesh.m: Use __gnupot_raw__ except where __gnuplot_set__ is |
|
2221 really needed. |
|
2222 |
5827
|
2223 2006-05-22 John W. Eaton <jwe@octave.org> |
|
2224 |
|
2225 * scripts/general/lookup.m: New file from Octave Forge. |
|
2226 |
|
2227 2006-05-22 David Bateman <dbateman@free.fr> |
|
2228 |
|
2229 * scripts/general/nthroot.m, scripts/linear-algebra/rref.m, |
|
2230 scripts/specfun/isprime.m, scripts/specfun/primes.m, |
|
2231 scripts/specfun/factor.m, scripts/specfun/nchoosek.m, |
|
2232 scripts/specfun/legendre.m, scripts/specfun/perms.m, |
|
2233 scripts/special-matrix/rosser.m, |
|
2234 scripts/special-matrix/wilkinson.m, |
|
2235 scripts/special-matrix/pascal.m, scripts/special-matrix/magic.m, |
|
2236 scripts/special-matrix/hadamard.m, scripts/strings/strtok.m: |
|
2237 New files from Octave Forge. |
|
2238 |
5824
|
2239 2006-05-19 David Bateman <dbateman@free.fr> |
|
2240 |
|
2241 * polynomial/unmkpp.m, polynomial/mkpp.m, polynomial/spline.m, |
5825
|
2242 polynomial/ppval.m, set/setxor.m: New files from Octave Forge. |
5824
|
2243 |
5821
|
2244 2006-05-17 John W. Eaton <jwe@octave.org> |
|
2245 |
|
2246 * set/intersection.m: Delete |
|
2247 * deprecated/intersection.m: New file. |
|
2248 |
5820
|
2249 2006-05-17 David Bateman <dbateman@free.fr> |
|
2250 |
|
2251 * general/cplxpair.m, general/trapz.m, general/cumtrapz.m, |
|
2252 general/isdir.m, miscellaneous/dos.m, miscellaneous/getfield.m, |
|
2253 miscellaneous/setfield.m, plot/fplot.m, set/intersect.m, |
|
2254 signal/ifftshift.m, signal/filter2.m, specfun/betaln.m, |
|
2255 specfun/factorial.m, strings/strvcat.m: New files from Octave |
|
2256 Forge. |
|
2257 |
5809
|
2258 2006-05-11 John W. Eaton <jwe@octave.org> |
|
2259 |
5815
|
2260 * path/path.m: Delete (now a built-in function). |
|
2261 |
5811
|
2262 * pkg/Makefile.in: New file. |
|
2263 * configure.in (AC_CONFIG_FILES): Add pkg/Makefile to the list. |
5812
|
2264 * Makefile.in (SUBDIRS): Add pkg to the list. |
5809
|
2265 |
5808
|
2266 2006-05-10 John W. Eaton <jwe@octave.org> |
|
2267 |
|
2268 * tar.m, untar.m, unzip.m: Adapt to Octave coding style. |
|
2269 * tar.m, untar.m: Only tar; don't compress or uncompress. |
|
2270 |
5807
|
2271 2006-05-10 Soren Hauberg <hauberg@gmail.com> |
|
2272 |
|
2273 * tar.m, untar.m, unzip.m: New files. |
|
2274 |
5801
|
2275 2006-05-10 John W. Eaton <jwe@octave.org> |
|
2276 |
5804
|
2277 * path/addpath.m, path/rmpath.m: Improve compatibility. |
|
2278 * path/setpath.m: Delete. |
|
2279 |
5801
|
2280 * pkg/pkg.m: New file. |
|
2281 |
5798
|
2282 2006-05-09 Keith Goodman <kwgoodman@gmail.com> |
|
2283 |
|
2284 * plot/plot.m: Doc string fix. |
|
2285 |
|
2286 2006-05-09 Paul Kienzle <pkienzle@users.sf.net> |
|
2287 |
|
2288 * testfun/speeed.m: Use new interface to unique and assert. |
|
2289 Improve documentation. Approximate time complexity from log-log |
|
2290 plot. Return time complexity and raw times if requested. The |
|
2291 mean ratio is no longer returned. Provide complete control over |
|
2292 which n are computed. |
|
2293 |
|
2294 2006-05-09 John W. Eaton <jwe@octave.org> |
|
2295 |
|
2296 * path/path.m: Move here from miscellaneous. |
|
2297 Adapt to new LOADPATH definition. |
|
2298 |
5789
|
2299 2006-05-03 David Bateman <dbateman@free.fr> |
|
2300 |
|
2301 * path/rmpath.m, path/addpath.m, miscellaneous/path.m: Replace all |
|
2302 explicit uses of a path seperation character with pathsep(). |
|
2303 |
5786
|
2304 2006-05-03 Bob Weigel <rweigel@gmu.edu> |
|
2305 |
|
2306 * scripts/set/setdiff.m: New arg, byrows. New tests. |
|
2307 |
5781
|
2308 2006-04-29 John W. Eaton <jwe@octave.org> |
|
2309 |
|
2310 * startup/main-rcfile: Disable some warnings. |
|
2311 |
5762
|
2312 2006-04-14 Bill Denney <denney@seas.upenn.edu> |
|
2313 |
|
2314 * strings/strcmpi.m: Return false instead of error if args are not |
|
2315 char or cellstr. |
|
2316 |
5750
|
2317 2006-04-10 John W. Eaton <jwe@octave.org> |
|
2318 |
|
2319 * miscellaneous/dir.m: Ensure that returned structure array is |
|
2320 Nx1, not 1xN. |
|
2321 |
5746
|
2322 2006-04-06 Olli Saarela <olli.saarela@kcl.fi> |
|
2323 |
|
2324 * plot/hist.m: Ignore NaN in inputs. |
|
2325 |
5745
|
2326 2006-04-06 Keith Goodman <kwgoodman@gmail.com> |
|
2327 |
|
2328 * miscellaneous/mkoctfile.m: Doc string fix. |
|
2329 |
5741
|
2330 2006-04-05 John W. Eaton <jwe@octave.org> |
|
2331 |
|
2332 * plot/__plt2__.m: Return data = [] and fmtstr = "" if x1 and x2 |
|
2333 are both empty. |
|
2334 * plot/__plt__.m: Ignore empty data and format strings returned |
|
2335 from __plt1__ or __plt2__. |
|
2336 |
5737
|
2337 2006-04-04 Bob Weigel <rweigel@gmu.edu> |
|
2338 |
|
2339 * scripts/set/unique.m: Properly handle single column input when |
|
2340 "rows" is specified. |
|
2341 |
5732
|
2342 2006-04-04 John W. Eaton <jwe@octave.org> |
|
2343 |
5736
|
2344 * path/setpath.m: New file. |
|
2345 * path/savepath.m: Use setpath to set path instead of assigning |
|
2346 directly to LOADPATH. |
|
2347 |
5732
|
2348 * path/Makefile.in, path/addpath.m, path/rmpath.m, path/savepath.m: |
|
2349 New files, adapted from Octave Forge by Keith Goodman |
|
2350 <kwgoodman@gmail.com>. |
|
2351 * path: New directory. |
|
2352 * Makefile.in (SUBDIRS): Add it to the list. |
|
2353 * configure.in (AC_CONFIG_FILES): Include path/Makefile here. |
|
2354 |
5731
|
2355 2006-04-02 David Bateman <dbateman@free.fr> |
|
2356 |
|
2357 * general/tril.m, general.triu.m: |
|
2358 Use resize (resize (x, 0), nr, nc) rather than zeros (nr, nc) |
|
2359 to allow user types to work correctly. |
|
2360 * special-matrix/hankel.m, special-matrix/toeplitz.m: Ditto. |
|
2361 |
5727
|
2362 2006-04-03 David Bateman <dbateman@free.fr> |
|
2363 |
|
2364 * plot/grid.m: Cache the state of the grid to allow toggling. |
|
2365 Accept keyword "minor" for minor grid. |
|
2366 |
5721
|
2367 2006-03-28 John W. Eaton <jwe@octave.org> |
|
2368 |
|
2369 * general/isscalar.m: Only require that all dimensions are 1 for |
|
2370 compatiblity. |
|
2371 |
|
2372 2006-03-28 Bill Denney <bill@givebillmoney.com> |
|
2373 |
|
2374 * general/isvector.m: Allow non-numeric objects to be vectors for |
|
2375 compatibility. |
|
2376 |
5720
|
2377 2006-03-28 Keith Goodman <kwgoodman@gmail.com> |
|
2378 |
|
2379 * plot/__errplot__.m: Doc string fix. |
|
2380 |
|
2381 * miscellaneous/doc.m: Mark as command. |
|
2382 |
|
2383 * general/isequal.m, general/__isequal__.m, general/cell2mat.m, |
|
2384 general/isequalwithequalnans.m, general/blkdiag.m, |
|
2385 strings/strfind.m, miscellaneous/doc.m: Update FSF address. |
|
2386 |
5717
|
2387 2006-03-27 Don Bindner <dbindner@truman.edu> |
|
2388 |
|
2389 * plot/meshgrid.m: If nargout == 3 and vectors are supplied, |
|
2390 return 3d matrices. |
|
2391 |
|
2392 2006-03-27 Keith Goodman <kwgoodman@gmail.com> |
|
2393 |
|
2394 * time/toc.m: Don't print "Elapsed time..." if tic has not been set. |
|
2395 |
5708
|
2396 2006-03-22 John W. Eaton <jwe@octave.org> |
|
2397 |
|
2398 * plot/print.m: Don't replot after popping terminal setting. |
|
2399 |
5696
|
2400 2006-03-20 John W. Eaton <jwe@octave.org> |
|
2401 |
|
2402 * miscellaneous/mkoctfile.m: Use version-specific name of |
|
2403 mkoctfile. Use fullfile to construct file name. |
|
2404 |
5695
|
2405 2006-03-20 Keith Goodman <kwgoodman@gmail.com> |
|
2406 |
|
2407 * miscellaneous/mkoctfile.m: Make it possible to call mkoctfile |
|
2408 shell script from Octave prompt. |
|
2409 |
5690
|
2410 2006-03-17 John W. Eaton <jwe@octave.org> |
|
2411 |
5693
|
2412 * deprecated/weibcdf.m, deprecated/weibinv.m, |
|
2413 deprecated/weibpdf.m, deprecated/weibrnd.m: New functions. |
|
2414 |
|
2415 * deprecated/weibull_cdf.m, deprecated/weibull_inv.m, |
|
2416 deprecated/weibull_pdf.m, deprecated/weibull_rnd.m: |
|
2417 Call new wbl functions to do the real work. |
|
2418 Swap args and provide default values as necessary to preserve |
|
2419 compatibility with old version of Octave. |
|
2420 |
|
2421 * statistics/distributions/wblcdf.m: Rename from weibcdf.m. |
|
2422 statistics/distributions/wblinv.m: Rename from weibinv.m. |
|
2423 statistics/distributions/wblpdf.m: Rename from weibpdf.m. |
|
2424 statistics/distributions/wblrnd.m: Rename from weibrnd.m. |
|
2425 Swap scale and shape args for compatibility. |
|
2426 |
5692
|
2427 * deprecated/lognormal_cdf.m, deprecated/lognormal_inv.m, |
|
2428 deprecated/lognormal_pdf.m, deprecated/lognormal_rnd.m: |
|
2429 Preserve compatibility with old versions of Octave given new |
|
2430 definitions of logncdf, logninv, lognpdf, and lognrnd. |
5693
|
2431 |
5692
|
2432 * statistics/distributions/logncdf.m, |
|
2433 statistics/distributions/logninv.m, |
|
2434 statistics/distributions/lognpdf.m, |
|
2435 statistics/distributions/lognrnd.m: Compatibility fixes. |
|
2436 From Ben Barrowes <barrowes@alum.mit.edu> |
|
2437 |
5691
|
2438 * deprecated/hypergeometric_rnd.m: Update interface to match |
|
2439 current 2.1.x version. |
|
2440 |
|
2441 * deprecated/t_rnd.m: Call trnd, not t_rnd. |
|
2442 |
5690
|
2443 * miscellaneous/dir.m: Use readdir instead of glob. |
|
2444 Special case for "." to avoid globbing. Use list_in_columns. |
|
2445 Eliminate unused variables len and finfo. |
|
2446 |
5689
|
2447 2006-03-16 Bill Denney <bill@givebillmoney.com> |
|
2448 |
|
2449 * miscellaneous/dir.m: Improve compatibility. |
|
2450 |
5687
|
2451 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
2452 |
|
2453 * time/calendar.m, time/datestr.m, time/datevec.m, time/eomday.m, |
|
2454 time/now.m, time/weekday.m: New functions from Octave Forge. |
|
2455 |
5686
|
2456 2006-03-16 John W. Eaton <jwe@octave.org> |
|
2457 |
|
2458 * control/base/bode_bounds.m: Check for iip and iiz empty instead |
|
2459 of looking at sum of max dimensions. |
|
2460 |
5681
|
2461 2006-03-16 David Bateman <dbateman@free.fr> |
|
2462 |
|
2463 * testfun/test.m: Clear last warning before warning test to avoid |
|
2464 issues with previously set warnings. |
|
2465 * build_sparse_test.sh: Tests for multiple RHS for rectanguar |
|
2466 sparse matrices. Force matrix type from spqr solution to be |
|
2467 singular to force QR solvers to be used for assert. |
|
2468 |
5678
|
2469 2006-03-16 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
2470 |
|
2471 * strings/strfind.m: New file. |
|
2472 |
5677
|
2473 2006-03-16 John W. Eaton <jwe@octave.org> |
|
2474 |
|
2475 * general/rows.m, general/columns.m: Delete. |
|
2476 |
5674
|
2477 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
2478 |
|
2479 * strings/strcmpi.m: Simplify. |
|
2480 * strings/strncmpi.m: Import from octave-forge, simplify. |
5678
|
2481 * strings/strtrunc.m: New file. |
5674
|
2482 |
5676
|
2483 * strings/lower.m, strings/upper.m: Handle cellstr arguments. |
|
2484 |
5672
|
2485 2006-03-15 John W. Eaton <jwe@octave.org> |
|
2486 |
|
2487 * miscellaneous/doc.m: New file. |
|
2488 From Soren Hauberg <soren@hauberg.org>. |
|
2489 |
5671
|
2490 2006-03-15 Keith Goodman <kwgoodman@gmail.com> |
|
2491 |
|
2492 * miscellaneous/mkoctfile.m: New file. |
|
2493 |
5670
|
2494 2006-03-15 John W. Eaton <jwe@octave.org> |
|
2495 |
|
2496 * polynomial/residue.m: Use & instead of && to generate arg for find. |
|
2497 |
5666
|
2498 2006-03-14 Keith Goodman <kwgoodman@gmail.com> |
|
2499 |
|
2500 * strings/bin2dec.m: Doc fix. |
|
2501 |
5661
|
2502 2006-03-10 Paul Kienzle <pkienzle@users.sf.net> |
|
2503 |
|
2504 * time/etime.m: Use datenum to support times spanning year boundaries. |
|
2505 * time/datenum.m: New function to compute day number from time. |
|
2506 |
5659
|
2507 2006-03-09 John W. Eaton <jwe@octave.org> |
|
2508 |
|
2509 * miscellaneous/unix.m, plot/print.m: |
|
2510 Swap order of outputs from system. |
|
2511 |
5642
|
2512 2006-03-06 Keith Goodman <kwgoodman@gmail.com> |
|
2513 |
|
2514 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, |
|
2515 audio/playaudio.m, audio/record.m, audio/saveaudio.m, |
|
2516 audio/wavread.m, audio/wavwrite.m, control/base/DEMOcontrol.m, |
|
2517 control/base/__stepimp__.m, control/base/are.m, |
|
2518 control/base/controldemo.m, control/base/damp.m, |
|
2519 control/base/dare.m, control/base/impulse.m, control/base/lqg.m, |
|
2520 control/base/step.m, control/system/abcddim.m, |
|
2521 control/system/is_abcd.m, control/system/is_controllable.m, |
|
2522 control/system/is_detectable.m, control/system/is_observable.m, |
|
2523 control/system/is_stabilizable.m, control/system/is_stable.m, |
|
2524 control/system/jet707.m, control/system/sys2fir.m, |
|
2525 control/system/sysdimensions.m, control/system/sysupdate.m, |
|
2526 control/system/tfout.m, control/system/ugain.m, |
|
2527 control/system/zpout.m, elfun/lcm.m, finance/irr.m, |
|
2528 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, |
|
2529 finance/rate.m, general/__isequal__.m, general/bitcmp.m, |
|
2530 general/bitget.m, general/bitset.m, general/blkdiag.m, |
|
2531 general/cart2pol.m, general/cart2sph.m, general/cell2mat.m, |
|
2532 general/circshift.m, general/columns.m, general/flipdim.m, |
|
2533 general/fliplr.m, general/flipud.m, general/ind2sub.m, |
|
2534 general/int2str.m, general/isdefinite.m, general/isequal.m, |
|
2535 general/isequalwithequalnans.m, general/isscalar.m, |
|
2536 general/issquare.m, general/issymmetric.m, general/isvector.m, |
|
2537 general/logspace.m, general/mod.m, general/nextpow2.m, |
|
2538 general/num2str.m, general/perror.m, general/pol2cart.m, |
|
2539 general/rem.m, general/rot90.m, general/rotdim.m, general/rows.m, |
|
2540 general/shiftdim.m, general/sph2cart.m, general/sub2ind.m, |
|
2541 general/tril.m, image/hsv2rgb.m, image/image.m, image/imagesc.m, |
|
2542 image/imshow.m, image/ind2gray.m, image/ind2rgb.m, |
|
2543 image/loadimage.m, image/rgb2hsv.m, image/rgb2ind.m, |
|
2544 image/saveimage.m, io/beep.m, linear-algebra/cond.m, |
|
2545 linear-algebra/norm.m, miscellaneous/comma.m, miscellaneous/dir.m, |
|
2546 miscellaneous/license.m, miscellaneous/menu.m, |
|
2547 miscellaneous/semicolon.m, miscellaneous/texas_lotto.m, |
|
2548 miscellaneous/unix.m, miscellaneous/ver.m, optimization/sqp.m, |
|
2549 plot/__errcomm__.m, plot/__errplot__.m, plot/__pltopt1__.m, |
|
2550 plot/__pltopt__.m, plot/bar.m, plot/contour.m, plot/errorbar.m, |
|
2551 plot/grid.m, plot/hist.m, plot/loglog.m, plot/loglogerr.m, |
|
2552 plot/mesh.m, plot/meshgrid.m, plot/plot.m, plot/polar.m, |
|
2553 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, |
|
2554 plot/semilogyerr.m, plot/shg.m, plot/stairs.m, plot/title.m, |
|
2555 plot/xlabel.m, polynomial/compan.m, polynomial/conv.m, |
|
2556 polynomial/deconv.m, polynomial/polyderiv.m, polynomial/polygcd.m, |
|
2557 polynomial/polyinteg.m, polynomial/polyout.m, |
|
2558 polynomial/polyreduce.m, polynomial/polyval.m, |
|
2559 polynomial/polyvalm.m, polynomial/residue.m, set/complement.m, |
|
2560 set/create_set.m, set/intersection.m, set/ismember.m, |
|
2561 set/setdiff.m, set/union.m, set/unique.m, sparse/etreeplot.m, |
|
2562 sparse/gplot.m, sparse/spalloc.m, sparse/sphcat.m, |
|
2563 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, |
|
2564 sparse/spvcat.m, sparse/treeplot.m, specfun/erfinv.m, |
|
2565 specfun/log2.m, specfun/pow2.m, special-matrix/hankel.m, |
|
2566 special-matrix/hilb.m, special-matrix/invhilb.m, |
|
2567 special-matrix/sylvester_matrix.m, special-matrix/toeplitz.m, |
|
2568 special-matrix/vander.m, statistics/base/median.m, |
|
2569 statistics/base/std.m, statistics/distributions/gamcdf.m, |
|
2570 statistics/distributions/gaminv.m, |
|
2571 statistics/distributions/gampdf.m, |
|
2572 statistics/distributions/gamrnd.m, strings/base2dec.m, |
|
2573 strings/bin2dec.m, strings/dec2base.m, strings/dec2bin.m, |
|
2574 strings/dec2hex.m, strings/hex2dec.m, strings/isletter.m, |
|
2575 strings/lower.m, strings/upper.m, testfun/assert.m, |
|
2576 testfun/demo.m, testfun/example.m, testfun/test.m, time/etime.m: |
|
2577 Move @seealso inside @defXXX macro. Remove "and" from @seealso. |
|
2578 |
5633
|
2579 2006-02-27 John W. Eaton <jwe@octave.org> |
|
2580 |
|
2581 * time/tic.m: Move here from miscellaneous/tic.m. |
|
2582 * time/toc.m: Move here from miscellaneous/toc.m. |
|
2583 |
|
2584 2006-02-26 Keith Goodman <kwgoodman@gmail.com> |
|
2585 |
|
2586 * miscellaneous/toc.m: Display "Elapsed time is X seconds" if user |
|
2587 does not assign output of toc to a variable. |
|
2588 |
5627
|
2589 2006-02-16 Bill Denney <denney@seas.upenn.edu> |
|
2590 |
|
2591 * axis.m: Catch limits that are the same and return an error. |
|
2592 |
5625
|
2593 2006-02-15 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
2594 |
|
2595 * plot/print.m: Accept emf device option to support Enhanced |
|
2596 Metafile format. |
|
2597 |
|
2598 2006-02-15 A S Hodel <hodelas@auburn.edu> |
|
2599 |
|
2600 * control/base/lqe.m: Doc fix. |
|
2601 |
5623
|
2602 2006-02-15 Keith Goodman <kwgoodman@gmail.com> |
|
2603 |
|
2604 * statistics/distributions/gamcdf.m: Doc fix. |
|
2605 * statistics/distributions/gaminv.m: Doc fix. |
|
2606 * statistics/distributions/gampdf.m: Doc fix. |
|
2607 * statistics/distributions/gamrnd.m: Doc fix. |
|
2608 |
5610
|
2609 2006-02-09 David Bateman <dbateman@free.fr> |
|
2610 |
|
2611 * general/triu.m: Minimum change to allow sparse matrix. More needed |
|
2612 for arbitrary user type. |
|
2613 * general/tril.m: ditto. |
5820
|
2614 * sparse/sprand.m: Doc fix. |
5610
|
2615 * sparse/sprandn.m: Ditto. |
|
2616 * sparse/sprandsym.m: New function. |
|
2617 * audio/setaudio.m, general/cart2pol.m, general/cart2sph.m, |
|
2618 general/pol2cart.m, general/sph2cart.m, signal/freqz_plot.m: |
|
2619 Update for syntax error for latest texinfo.tex file. |
|
2620 |
5605
|
2621 2006-02-02 John W. Eaton <jwe@octave.org> |
|
2622 |
|
2623 * plot/grid.m: Append ";\n" to "set grid" command. |
|
2624 |
|
2625 2006-02-02 A S Hodel <hodelas@auburn.edu> |
|
2626 |
|
2627 * control/base/rlocus.m: Don't atttempt to plot rlzer if it is empty. |
|
2628 |
5597
|
2629 2006-01-13 John W. Eaton <jwe@octave.org> |
|
2630 |
|
2631 * audio/Makefile.in, control/base/Makefile.in, |
|
2632 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
2633 control/system/Makefile.in, control/util/Makefile.in, |
|
2634 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, |
|
2635 general/Makefile.in, image/Makefile.in, io/Makefile.in, |
|
2636 linear-algebra/Makefile.in, miscellaneous/Makefile.in, |
|
2637 optimization/Makefile.in, plot/Makefile.in, |
|
2638 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
2639 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
2640 special-matrix/Makefile.in, startup/Makefile.in, |
|
2641 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
2642 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
2643 strings/Makefile.in, time/Makefile.in, testfun/Makefile.in: |
|
2644 (all): Depend on PKG_ADD. |
|
2645 (PKG_ADD): New target. |
|
2646 |
|
2647 2006-01-13 Bill Denney <bill@givebillmoney.com> |
|
2648 |
|
2649 * miscellaneous/dir.m: Add @seealso{} to docstring. |
|
2650 |
5596
|
2651 2006-01-13 John W. Eaton <jwe@octave.org> |
|
2652 |
|
2653 * time/etime.m: Move here from miscellaneous/etime.m. |
|
2654 * time/is_leap_year.m: Move here from miscellaneous/is_leap_year.m. |
|
2655 |
5595
|
2656 2006-01-13 Bill Denney <bill@givebillmoney.com> |
|
2657 |
|
2658 * miscellaneous/dir.m: Use filesep instead of "/" where needed. |
|
2659 * miscellaneous/fullfile.m: Likewise. |
|
2660 |
5592
|
2661 2006-01-12 David Bateman <dbateman@free.fr> |
|
2662 |
|
2663 * general/blkdiag.m: Compatible behavior for empty matrices |
|
2664 * statistics/base/unidrnd.m: Documentation buglet. |
|
2665 |
5583
|
2666 2005-12-14 David Bateman <dbateman@free.fr> |
|
2667 |
5589
|
2668 * testfun/assert.m, testfun/fail.m, testfun/test.m, testfun/demo.m, |
|
2669 testfun/speed.m, testfun/example.m, Makefile.in: New files. |
|
2670 |
|
2671 * Makefile.in (SUBDIRS): Include testfun. |
|
2672 * configure.in (AC_CONFIG_FILES): Include testfun/Makefile. |
|
2673 |
5583
|
2674 * miscellaneous/dir.m: Transpose sub-assignment for cleanness. |
|
2675 |
|
2676 * general/__isequal__.m: Remove reference to getfield. |
|
2677 |
|
2678 * plot/hist.m: Update test code for row/column discrepencies. |
|
2679 * signal/freqz.m: Alter output row/column for matlab compatibility. |
|
2680 Update the test code for this. |
|
2681 * sparse/spstats.m: Fix small bug in the dimension of output. |
|
2682 |
5579
|
2683 2005-12-13 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
2684 |
|
2685 * cell/cell2mat.m: New file, from octave-forge. |
|
2686 |
5576
|
2687 2005-12-13 Ivana Varekova <varekova@redhat.com> |
|
2688 |
|
2689 * sparse/treeplot.m, sparse/etreeplot.m, sparse/gplot.m: |
|
2690 New graph theory functions. |
|
2691 |
5574
|
2692 2005-12-13 John W. Eaton <jwe@octave.org> |
|
2693 |
|
2694 * general/blkdiag.m: Use "isempty" instead of @isempty. |
|
2695 |
|
2696 * control/system/ss.m: Doc fix. |
|
2697 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
2698 |
5572
|
2699 2005-12-12 Michael Zeising <michael@michaels-website.de> |
|
2700 |
|
2701 * audio/wavread.m, audio/wavwrite.m: |
|
2702 Correct scaling for 8-bit linear pcm samples. |
|
2703 Improve scaling for all other linear pcm resolutions. |
|
2704 |
5568
|
2705 2005-12-07 John W. Eaton <jwe@octave.org> |
|
2706 |
|
2707 * statistics/base/moment.m: Don't save and restore warn_str_to_num. |
|
2708 |
|
2709 * sparse/spdiags.m: Don't save and restore warn_fortran_indexing. |
|
2710 * strings/strjust.m: Likewise. |
|
2711 |
|
2712 * general/shift.m: Don't save and restore warn_empty_list_elements. |
|
2713 * signal/arma_rnd.m: Likewise. |
|
2714 * strings/strcat.m: Likewise. |
|
2715 * control/base/__freqresp__.m: Likewise. |
|
2716 * control/base/place.m: Likewise. |
|
2717 * control/base/pzmap.m: Likewise. |
|
2718 * control/base/pzmap.m: Likewise. |
|
2719 * control/system/sysappend.m: Likewise. |
|
2720 * control/system/syscont.m: Likewise. |
|
2721 * control/system/sysdisc.m: Likewise. |
|
2722 * control/system/sysgroup.m: Likewise. |
|
2723 * control/system/tfout.m: Likewise. |
|
2724 * control/system/zpout.m: Likewise. |
|
2725 * control/util/__outlist__.m: Likewise. |
|
2726 |
5567
|
2727 2005-12-06 John W. Eaton <jwe@octave.org> |
|
2728 |
|
2729 * audio/wavread.m, audio/wavwrite.m: Adapt to Octave coding style. |
|
2730 Avoid for loop in interleave/deinterleave steps. |
|
2731 |
5565
|
2732 2005-12-06 Michael Zeising <michael@michaels-website.de> |
|
2733 |
|
2734 * audio/wavread.m, audio/wavwrite.m: New files. |
|
2735 |
5563
|
2736 2005-12-06 John W. Eaton <jwe@octave.org> |
|
2737 |
|
2738 * miscellaneous/dir.m: Return Nx1 instead of 1xN struct array. |
|
2739 |
5560
|
2740 2005-12-05 John W. Eaton <jwe@octave.org> |
|
2741 |
5561
|
2742 * plot/axis.m: Add "## PKG_ADD: mark_as_command axis" line. |
5560
|
2743 |
5558
|
2744 2005-12-02 John W. Eaton <jwe@octave.org> |
|
2745 |
|
2746 * miscellaneous/fileattrib.m: New function. |
|
2747 |
5556
|
2748 2005-12-01 John W. Eaton <jwe@octave.org> |
|
2749 |
|
2750 * general/columns.m: Use size (x, 2) instead of [nr, nc] = size (x). |
|
2751 * general/rows.m: Use size (x, 1) instead of [nr, nc] = size (x). |
|
2752 From William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com>. |
|
2753 |
5555
|
2754 2005-11-30 John W. Eaton <jwe@octave.org> |
|
2755 |
|
2756 * linear-algebra/krylov.m: Format doc string. |
|
2757 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
2758 |
5551
|
2759 2005-11-23 William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com> |
|
2760 |
|
2761 * general/blkdiag.m: Import from octave-forge. |
|
2762 Ignore empty matrices in the input. Add tests. |
5549
|
2763 |
|
2764 * general/isequal.m, general/isequalwithequalnans.m: |
|
2765 New wrapper scripts for general/__isequal__.m. |
|
2766 * general/__isequal__.m: Rename from general/isequal.m. |
|
2767 New arg, nans_compare_equal. |
|
2768 |
5548
|
2769 2005-11-29 John W. Eaton <jwe@octave.org> |
|
2770 |
|
2771 * miscellaneous/ver.m: Use new uname built-in function instead of |
|
2772 calling system. Only append octave_forge_string if |
|
2773 OCTAVE_FORGE_VERSION exists. Use puts instead of disp. |
|
2774 Call license instead of hard-coding license info here. |
|
2775 |
|
2776 * miscellaneous/license.m: Use persistent instead of global for |
5654
|
2777 __octave_licenses__. Use puts instead of disp. |
5548
|
2778 Use getuid and getpwuid instead of calling unix ("id -un"). |
|
2779 If nargout = 1, return license info instead of printing usage message. |
|
2780 |
5546
|
2781 2005-11-29 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
2782 |
|
2783 * miscellaneous/ver.m: New file. |
|
2784 * miscellaneous/license.m: New file. |
|
2785 |
5545
|
2786 2005-11-22 John W. Eaton <jwe@octave.org> |
|
2787 |
|
2788 * plot/axis.m: Use %.16g instead of just %g to format ranges for |
|
2789 gnuplot set command. |
|
2790 |
5539
|
2791 2005-11-15 John W. Eaton <jwe@octave.org> |
|
2792 |
|
2793 * general/shiftdim.m: Doc fix. |
|
2794 |
5532
|
2795 2005-11-07 Keith Goodman <kwgoodman@gmail.com> |
|
2796 |
|
2797 * set/unique.m: Doc string fix. |
|
2798 |
5527
|
2799 2005-11-01 John W. Eaton <jwe@octave.org> |
|
2800 |
|
2801 * Makefile.in (distclean, maintainer-clean): |
|
2802 Also remove autom4te.cache directory. |
|
2803 From Quentin Spencer <qspencer@ieee.org>. |
|
2804 |
5518
|
2805 2005-10-28 John W. Eaton <jwe@octave.org> |
|
2806 |
|
2807 * general/shiftdim.m: Compatibility fix for row vectors. |
|
2808 Correct check for non-scalar non-integer shift. For positive |
|
2809 N, shift is remainder of N and number of dims. Always return NS. |
|
2810 Simplify. |
|
2811 |
5500
|
2812 2005-10-18 Keith Goodman <kwgoodman@gmail.com> |
|
2813 |
|
2814 * general/randperm.m: Improve compatibility by allowing input |
|
2815 value of zero. |
|
2816 |
5493
|
2817 2005-10-13 John W. Eaton <jwe@octave.org> |
|
2818 |
|
2819 * plot/__plt__.m, plot/__errplot__.m, plot/replot.m: |
|
2820 If in multiplot mode, clear plot before issuing new plot command. |
|
2821 |
|
2822 * plot/__setup_plot__.m: New function. |
|
2823 * plot/__plt__.m, plot__errplot__.m: Use it. |
|
2824 Handle multiplot data and offsets here. |
|
2825 |
|
2826 * plot/__plot_globals__.m: Also keep track of multiplot options. |
|
2827 Move initialization to __setup_plot__.m. |
|
2828 |
|
2829 * plot/subplot.m: Multiplot globals now in __plot_globals__.m. |
|
2830 Don't reset gnuplot_command_replot. |
|
2831 |
|
2832 * plot/replot.m: Handle multiplot data and offsets here. |
|
2833 * plot__axis_label__.m, plot/axis.m, plot/grid.m, |
|
2834 plot/plot_border.m, plot/plot.m, plot/plot_title.m, |
|
2835 plot/top_title.m: Call replot, not __gnuplot_replot__. |
|
2836 |
5489
|
2837 2005-10-12 John W. Eaton <jwe@octave.org> |
|
2838 |
|
2839 * plot/figure.m: Handle __current_figure__, not gnuplot details. |
|
2840 |
5482
|
2841 2005-10-04 Rafael Laboissiere <rafael@debian.org> |
|
2842 |
|
2843 * binoinv.m, chi2pdf.m, frnd.m, poissinv.m, tinv.m, trnd.m, |
|
2844 weibrnd.m: Removed calls and references to deprecated _pdf and |
|
2845 _inv functions. |
|
2846 * chi2pdf.m: Fixed typos in the documentation. |
|
2847 |
5475
|
2848 2005-09-28 John W. Eaton <jwe@octave.org> |
|
2849 |
5476
|
2850 * miscellaneous/single.m: New function. |
|
2851 |
5475
|
2852 * statistics/base/unidrnd.m: New function. |
|
2853 |
5474
|
2854 2005-09-27 John W. Eaton <jwe@octave.org> |
|
2855 |
|
2856 * miscellaneous/dir.m: Filename never includes directory part. |
|
2857 |
5464
|
2858 2005-09-22 John W. Eaton <jwe@octave.org> |
|
2859 |
|
2860 * polynomial/residue.m: Use logical indexing instead of find.. |
|
2861 |
|
2862 2005-09-22 Julius Smith <jos@ccrma.stanford.edu> |
|
2863 |
|
2864 * polynomial/residue.m: Avoid division by zero for pure imaginary |
|
2865 and zero poles. |
|
2866 |
5462
|
2867 2005-09-22 Bill Denney <denney@seas.upenn.edu> |
|
2868 |
|
2869 * strings/deblank.m: Handle cell arrays. |
|
2870 * strings/split.m: New argument, N, to limit number of splits. |
|
2871 |
|
2872 2005-09-22 Miroslaw Kwasniak <mirek@zind.ikem.pwr.wroc.pl> |
|
2873 |
|
2874 * plot/__pltopt1__.m: Handle plot colors "w" and "k" separately. |
|
2875 |
5460
|
2876 2005-09-20 "Orestes Mas" <orestes@tsc.upc.edu> |
|
2877 |
|
2878 * control/base/rlocus.m: Doc fix. |
|
2879 |
5459
|
2880 2005-09-20 John W. Eaton <jwe@octave.org> |
|
2881 |
|
2882 * general/isvector.m: Improve compatibility. |
|
2883 |
|
2884 * general/postpad.m: Allow first argument to be a scalar. |
|
2885 Allow padding to extend dimensionality. |
|
2886 * general/prepad.m: Likewise. |
|
2887 |
5448
|
2888 2005-09-14 Daniel <durbano@shbano.com> |
|
2889 |
|
2890 * statistics/tests/bartlett_test.m, linear-algebra/cross.m, |
5449
|
2891 statistics/distributions/discrete_cdf.m, general/fliplr.m, |
|
2892 /control/base/dgram.m: Doc string fixes. |
5448
|
2893 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
2894 |
5446
|
2895 2005-09-12 Stefan van der Walt <stefan@sun.ac.za> |
|
2896 |
|
2897 * saveimage.m: Do not ignore most significant bit when writing |
|
2898 black and white images to file. |
|
2899 |
5443
|
2900 2005-09-07 Bill Denney <denney@seas.upenn.edu> |
|
2901 |
|
2902 * audio/playaudio.m, control/base/__bodquist__.m, |
|
2903 control/base/lqg.m, control/obsolete/dezero.m, |
|
2904 control/system/__syschnamesl__.m, control/system/__sysconcat__.m, |
|
2905 control/system/c2d.m, control/system/cellidx.m, |
|
2906 control/system/d2c.m, control/system/dmr2d.m, |
|
2907 control/system/is_signal_list.m, control/system/listidx.m, |
|
2908 control/system/ss.m, control/system/sysappend.m, |
|
2909 control/system/sysconnect.m, control/system/sysdup.m, |
|
2910 control/system/sysgetsignals.m, control/system/sysidx.m, |
|
2911 control/system/sysprune.m, control/system/syssetsignals.m, |
|
2912 control/system/tfout.m, control/system/zpout.m, |
|
2913 control/util/prompt.m, control/util/sortcom.m, |
|
2914 control/util/strappend.m, finance/fv.m, finance/nper.m, |
|
2915 finance/pmt.m, finance/pv.m, finance/rate.m, general/diff.m, |
|
2916 general/num2str.m, general/repmat.m, general/sortrows.m, |
|
2917 general/strerror.m, image/colormap.m, image/imshow.m, |
|
2918 image/loadimage.m, image/saveimage.m, linear-algebra/norm.m, |
|
2919 miscellaneous/fileparts.m, miscellaneous/popen2.m, |
|
2920 plot/__axis_label__.m, plot/__errcomm__.m, plot/__plt1__.m, |
|
2921 plot/__plt2__.m, plot/__plt__.m, plot/__pltopt1__.m, |
|
2922 plot/__pltopt__.m, plot/axis.m, plot/bottom_title.m, plot/close.m, |
|
2923 plot/grid.m, plot/hist.m, plot/plot_border.m, plot/polar.m, |
|
2924 plot/print.m, plot/title.m, plot/top_title.m, |
|
2925 polynomial/polyout.m, set/unique.m, signal/freqz.m, signal/stft.m, |
|
2926 statistics/base/mean.m, statistics/base/moment.m, |
|
2927 statistics/tests/cor_test.m, |
|
2928 statistics/tests/kolmogorov_smirnov_test.m, |
|
2929 statistics/tests/kolmogorov_smirnov_test_2.m, |
|
2930 statistics/tests/prop_test_2.m, statistics/tests/sign_test.m, |
|
2931 statistics/tests/t_test.m, statistics/tests/t_test_2.m, |
|
2932 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, |
|
2933 statistics/tests/var_test.m, statistics/tests/welch_test.m, |
|
2934 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, |
|
2935 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, |
|
2936 strings/deblank.m, strings/dec2base.m, strings/index.m, |
|
2937 strings/rindex.m, strings/split.m, strings/str2mat.m, |
|
2938 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, |
|
2939 strings/strncmp.m, strings/strrep.m, strings/substr.m: |
|
2940 Avoid deprecated functions. Use ischar instead of isstr. Use |
|
2941 isvector instead of is_vector. Use isstruct instead of |
|
2942 is_struct. Use char instead of setstr. |
|
2943 |
5435
|
2944 2005-08-31 Daniel <durbano@shbano.com> |
|
2945 |
|
2946 * special-matrix/invhilb.m, statistics/base/iqr.m, |
|
2947 control/system/is_controllable.m, set/ismember.m: Doc fixes. |
|
2948 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
2949 |
5431
|
2950 2005-08-29 Bill Denney <denney@seas.upenn.edu> |
|
2951 |
|
2952 * image/saveimage.m: Open output file in binary mode. |
|
2953 |
|
2954 * miscellaneous/bug_report.m: Open prefs file in text mode. |
|
2955 |
5427
|
2956 2005-08-16 John W. Eaton <jwe@octave.org> |
|
2957 |
|
2958 * miscellaneous/computer.m: Handle optional maxsize and endian |
|
2959 outputs. |
|
2960 |
5426
|
2961 2005-08-15 John W. Eaton <jwe@octave.org> |
|
2962 |
|
2963 * strings/strcat.m: Allow single argument. |
|
2964 |
5416
|
2965 2005-07-18 John W. Eaton <jwe@octave.org> |
|
2966 |
|
2967 * strings/strcmp.m: Delete. |
|
2968 |
5413
|
2969 2005-07-13 John W. Eaton <jwe@octave.org> |
|
2970 |
|
2971 * deprecated/hypergeometric_rnd.m: Preserve compatibility with old |
|
2972 versions of Octave. |
|
2973 |
|
2974 2005-07-13 Ben Barrowes <barrowes@alum.mit.edu> |
|
2975 |
|
2976 * statistics/distributions/betacdf.m: Rename from beta_cdf.m. |
|
2977 * statistics/distributions/betainv.m: Rename from beta_inv.m. |
|
2978 * statistics/distributions/betapdf.m: Rename from beta_pdf.m. |
|
2979 * statistics/distributions/betarnd.m: Rename from beta_rnd.m. |
|
2980 * statistics/distributions/binocdf.m: Rename from binomial_cdf.m. |
|
2981 * statistics/distributions/binoinv.m: Rename from binomial_inv.m. |
|
2982 * statistics/distributions/binopdf.m: Rename from binomial_pdf.m. |
|
2983 * statistics/distributions/binornd.m: Rename from binomial_rnd.m. |
|
2984 * statistics/distributions/chi2cdf.m: Rename from chisquare_cdf.m. |
|
2985 * statistics/distributions/chi2inv.m: Rename from chisquare_inv.m. |
|
2986 * statistics/distributions/chi2pdf.m: Rename from chisquare_pdf.m. |
|
2987 * statistics/distributions/chi2rnd.m: Rename from chisquare_rnd.m. |
|
2988 * statistics/distributions/expcdf.m: Rename from exponential_cdf.m. |
|
2989 * statistics/distributions/expinv.m: Rename from exponential_inv.m. |
|
2990 * statistics/distributions/exppdf.m: Rename from exponential_pdf.m. |
|
2991 * statistics/distributions/exprnd.m: Rename from exponential_rnd.m. |
|
2992 * statistics/distributions/fcdf.m: Rename from f_cdf.m. |
|
2993 * statistics/distributions/finv.m: Rename from f_inv.m. |
|
2994 * statistics/distributions/fpdf.m: Rename from f_pdf.m. |
|
2995 * statistics/distributions/frnd.m: Rename from f_rnd.m. |
|
2996 * statistics/distributions/gamcdf.m: Rename from gamma_cdf.m. |
|
2997 * statistics/distributions/gaminv.m: Rename from gamma_inv.m. |
|
2998 * statistics/distributions/gampdf.m: Rename from gamma_pdf.m. |
|
2999 * statistics/distributions/gamrnd.m: Rename from gamma_rnd.m. |
|
3000 * statistics/distributions/geocdf.m: Rename from geometric_cdf.m. |
|
3001 * statistics/distributions/geoinv.m: Rename from geometric_inv.m. |
|
3002 * statistics/distributions/geopdf.m: Rename from geometric_pdf.m. |
|
3003 * statistics/distributions/geornd.m: Rename from geometric_rnd.m. |
|
3004 * statistics/distributions/hygecdf.m: Rename from hypergeometric_cdf.m. |
|
3005 * statistics/distributions/hygeinv.m: Rename from hypergeometric_inv.m. |
|
3006 * statistics/distributions/hygepdf.m: Rename from hypergeometric_pdf.m. |
|
3007 * statistics/distributions/hygernd.m: Rename from hypergeometric_rnd.m. |
|
3008 * statistics/distributions/logncdf.m: Rename from lognormal_cdf.m. |
|
3009 * statistics/distributions/logninv.m: Rename from lognormal_inv.m. |
|
3010 * statistics/distributions/lognpdf.m: Rename from lognormal_pdf.m. |
|
3011 * statistics/distributions/lognrnd.m: Rename from lognormal_rnd.m. |
|
3012 * statistics/distributions/normcdf.m: Rename from normal_cdf.m. |
|
3013 * statistics/distributions/norminv.m: Rename from normal_inv.m. |
|
3014 * statistics/distributions/normpdf.m: Rename from normal_pdf.m. |
|
3015 * statistics/distributions/normrnd.m: Rename from normal_rnd.m. |
|
3016 * statistics/distributions/poisscdf.m: Rename from poisson_cdf.m. |
|
3017 * statistics/distributions/poissinv.m: Rename from poisson_inv.m. |
|
3018 * statistics/distributions/poisspdf.m: Rename from poisson_pdf.m. |
|
3019 * statistics/distributions/poissrnd.m: Rename from poisson_rnd.m. |
|
3020 * statistics/distributions/tcdf.m: Rename from t_cdf.m. |
|
3021 * statistics/distributions/tinv.m: Rename from t_inv.m. |
|
3022 * statistics/distributions/tpdf.m: Rename from t_pdf.m. |
|
3023 * statistics/distributions/trnd.m: Rename from t_rnd.m. |
5431
|
3024 * statistics/distributions/unifcdf.m: Rename from unifoxorm_cdf.m. |
5413
|
3025 * statistics/distributions/unifinv.m: Rename from uniform_inv.m. |
|
3026 * statistics/distributions/unifpdf.m: Rename from uniform_pdf.m. |
|
3027 * statistics/distributions/unifrnd.m: Rename from uniform_rnd.m. |
|
3028 * statistics/distributions/weibcdf.m: Rename from weibull_cdf.m. |
|
3029 * statistics/distributions/weibinv.m: Rename from weibull_inv.m. |
|
3030 * statistics/distributions/weibpdf.m: Rename from weibull_pdf.m. |
|
3031 * statistics/distributions/wienrnd.m: Rename from wiener_rnd.m. |
|
3032 |
|
3033 * deprecated/beta_cdf.m, deprecated/beta_inv.m, |
|
3034 deprecated/beta_pdf.m, deprecated/beta_rnd.m, |
|
3035 deprecated/binomial_cdf.m, deprecated/binomial_inv.m, |
|
3036 deprecated/binomial_pdf.m, deprecated/binomial_rnd.m, |
|
3037 deprecated/chisquare_cdf.m, deprecated/chisquare_inv.m, |
|
3038 deprecated/chisquare_pdf.m, deprecated/chisquare_rnd.m, |
|
3039 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, |
|
3040 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m, |
|
3041 deprecated/f_cdf.m, deprecated/f_inv.m, deprecated/f_pdf.m, |
|
3042 deprecated/f_rnd.m, deprecated/gamma_cdf.m, |
|
3043 deprecated/gamma_inv.m, deprecated/gamma_pdf.m, |
|
3044 deprecated/gamma_rnd.m, deprecated/geometric_cdf.m, |
|
3045 deprecated/geometric_inv.m, deprecated/geometric_pdf.m, |
|
3046 deprecated/geometric_rnd.m, deprecated/hypergeometric_cdf.m, |
|
3047 deprecated/hypergeometric_inv.m, deprecated/hypergeometric_pdf.m, |
|
3048 deprecated/hypergeometric_rnd.m, deprecated/lognormal_cdf.m, |
|
3049 deprecated/lognormal_inv.m, deprecated/lognormal_pdf.m, |
|
3050 deprecated/lognormal_rnd.m, deprecated/normal_cdf.m, |
|
3051 deprecated/normal_inv.m, deprecated/normal_pdf.m, |
|
3052 deprecated/normal_rnd.m, deprecated/poisson_cdf.m, |
|
3053 deprecated/poisson_inv.m, deprecated/poisson_pdf.m, |
|
3054 deprecated/poisson_rnd.m, deprecated/t_cdf.m, deprecated/t_inv.m, |
|
3055 deprecated/t_pdf.m, deprecated/t_rnd.m, deprecated/uniform_cdf.m, |
|
3056 deprecated/uniform_inv.m, deprecated/uniform_pdf.m, |
|
3057 deprecated/uniform_rnd.m, deprecated/weibull_cdf.m, |
|
3058 deprecated/weibull_inv.m, deprecated/weibull_pdf.m, |
|
3059 deprecated/wiener_rnd.m: New files. |
|
3060 |
5408
|
3061 2005-07-08 John W. Eaton <jwe@octave.org> |
|
3062 |
|
3063 * statistics/distributions/weibrnd.m: Rename from weibull_rnd.m. |
|
3064 * deprecated/weibull_rnd.m: New file. |
|
3065 |
5407
|
3066 2005-07-08 cctsim <cctsim@yahoo.co.uk> |
|
3067 |
|
3068 * strings/dec2base.m: Allow matrix arguments. |
|
3069 |
5406
|
3070 2005-07-08 John W. Eaton <jwe@octave.org> |
|
3071 |
|
3072 * plot/__errplot__.m: Use __plot_globals__. |
|
3073 * plot/__plt__.m: Likewise. |
|
3074 * plot/figure.m: Likewise. |
|
3075 |
|
3076 * plot/hold.m: New file. |
|
3077 * plot/ishold.m: New file. |
|
3078 * plot/__plot_globals__.m: New file. |
|
3079 |
5400
|
3080 2005-07-05 cctsim <cctsim@yahoo.co.uk> |
|
3081 |
|
3082 * strings/dec2base.m: Don't remove all leading zeros if result is zero. |
|
3083 |
|
3084 2005-07-05 John W. Eaton <jwe@octave.org> |
|
3085 |
|
3086 * strings/findstr.m: Return [] for no matches. |
|
3087 |
5399
|
3088 2005-06-17 Keith Goodman <kwgoodman@gmail.com> |
|
3089 |
|
3090 * miscellaneous/tic.m: Fix doc string. |
|
3091 |
5395
|
3092 2005-06-15 John W. Eaton <jwe@octave.org> |
|
3093 |
|
3094 * polynomial/polyfit.m: Force return value to be a row vector. |
|
3095 |
5393
|
3096 2005-06-15 Tom Holroyd <tomh@kurage.nimh.nih.gov> |
|
3097 |
|
3098 * general/isequal.m: Correct nargin check. |
|
3099 |
5388
|
3100 2005-06-14 John W. Eaton <jwe@octave.org> |
|
3101 |
|
3102 * general/isvector.m: Handle N-d arrays. |
|
3103 From Bill Denney <denney@seas.upenn.edu>. |
|
3104 |
5381
|
3105 2005-06-02 Ben Barrowes <barrowes@alum.mit.edu> |
|
3106 |
|
3107 * plot/meshgrid.m: Handle 3 input arguments. |
5378
|
3108 |
5377
|
3109 2005-06-02 Paul Kienzle <pkienzle@users.sf.net> |
|
3110 |
|
3111 * signal/freqz.m: Use correct calculations when given a vector of |
|
3112 frequencies. Improve accuracy of returned frequency vector. |
|
3113 Improve speed for medium length filters (at a slight cost for slow |
|
3114 filters). Add test cases. |
|
3115 |
5373
|
3116 2005-05-27 "Dmitri A. Sergatskov" <dasergatskov@gmail.com> |
|
3117 |
|
3118 * plot/loglog.m: Fix set commands. |
|
3119 |
5381
|
3120 2005-05-25 John W. Eaton <jwe@octave.org> |
|
3121 |
|
3122 * plot/sombrero.m: Default n to 41 if nargin == 0. |
|
3123 |
5371
|
3124 2005-05-24 John W. Eaton <jwe@octave.org> |
|
3125 |
5373
|
3126 * statistics/tests/anova.m: Use mean (y(:)) to compute total_mean. |
|
3127 |
5372
|
3128 * strings/strncmp.m: New file, from Tom Holroyd |
|
3129 <tomh@kurage.nimh.nih.gov>. |
|
3130 |
5371
|
3131 * strings/strcmp.m: Return logical values in all cases. |
|
3132 |
5366
|
3133 2005-05-23 John W. Eaton <jwe@octave.org> |
|
3134 |
|
3135 * plot/orient.m: New file. Adapt to Octave coding style. |
|
3136 Texinfoize doc string. |
|
3137 |
|
3138 * plot/print.m: New file. Adapt to Octave coding style. Include |
|
3139 PKG_ADD command. Use set terminal consistently throughout. Use |
|
3140 set terminal push/pop and unconditionally set output to screen |
|
3141 when done to avoid requiring gget. Use a cell array for dev_list |
|
3142 and cellidx to search for items in the list. Delete local |
|
3143 variable endl. Don't set and restore automatic_replot. Use {} |
|
3144 instead of nth to index varargin. Delete local variable |
|
3145 va_arg_cnt. |
|
3146 |
5355
|
3147 2005-05-18 John W. Eaton <jwe@octave.org> |
|
3148 |
|
3149 * general/num2str.m: Return early if X is a character string. |
|
3150 |
5347
|
3151 2005-05-11 John W. Eaton <jwe@octave.org> |
|
3152 |
5348
|
3153 * strings/findstr.m: Allow non-string arguments for compatiblity. |
|
3154 From Tom Holroyd <tomh@kurage.nimh.nih.gov>. |
|
3155 |
5347
|
3156 * plot/polar.m: Don't call __pltopt__ here. |
|
3157 |
5333
|
3158 2005-05-02 John W. Eaton <jwe@octave.org> |
|
3159 |
|
3160 * mkdoc: Print header message. |
|
3161 |
5319
|
3162 2005-04-28 John W. Eaton <jwe@octave.org> |
|
3163 |
|
3164 * configure.in (AC_CONFIG_SRCDIR): Look for startup/inputrc, not |
|
3165 startup/octaverc. |
|
3166 |
5318
|
3167 2005-04-28 Stefan van der Walt <stefan@sun.ac.za> |
|
3168 |
|
3169 * image/imshow.m: Handle various image depths and 3d RGB images. |
|
3170 (__im_numeric_limits__): New internal function. |
|
3171 |
5317
|
3172 2005-04-28 toni saarela <toni.saarela@helsinki.fi> |
|
3173 |
|
3174 * statistics/tests/anova.m: Compute total_mean as mean of all |
|
3175 data, not mean of group_mean. |
|
3176 |
|
3177 2005-04-28 John W. Eaton <jwe@octave.org> |
|
3178 |
|
3179 * startup/local-rcfile: New file. |
|
3180 * startup/main-rcfile: Rename from startup/octaverc. |
|
3181 * startup/Makefile.in (SOURCES): Add inputrc to the list. |
|
3182 (install install-strip): Install main-rcfile in $(fcnfiledir)/startup. |
|
3183 Install local-rcfile in $(localfcnfiledir)/startup. |
|
3184 |
|
3185 2005-04-28 Keith Goodman <kwgoodman@gmail.com> |
|
3186 |
|
3187 * startup/inputrc: New file. |
|
3188 * startup/octaverc: Configure readline using inputrc from |
|
3189 startupfiledir. |
|
3190 * startup/Makefile.in (install, install-strip): Install octaverc |
|
3191 in $(fcnfiledir)/startup. |
|
3192 |
5310
|
3193 2005-04-27 John W. Eaton <jwe@octave.org> |
|
3194 |
|
3195 * optimization/qp.m: Define n_in after removing -Inf bounds from Ain. |
|
3196 |
5289
|
3197 2005-04-21 John W. Eaton <jwe@octave.org> |
|
3198 |
|
3199 * optimization/glpk.m: Handle SENSE argument. |
|
3200 |
|
3201 * optimization/qp.m, optimization/sqp.m: New files. |
|
3202 |
5276
|
3203 2005-04-08 John W. Eaton <jwe@octave.org> |
|
3204 |
|
3205 * Makefile.in (clean, distclean, maintainer-clean): |
|
3206 Avoid duplication in rules. |
|
3207 |
5252
|
3208 2005-03-28 John W. Eaton <jwe@octave.org> |
|
3209 |
|
3210 * plot/contour.m, plot/mesh.m: Continue to use __gnuplot_raw__ for |
|
3211 setting {no,}parametric. |
|
3212 * plot/figure.m: Likewise, for setting terminal type. |
|
3213 |
|
3214 * __axis_label__.m:, plot/axis.m, plot/bottom_title.m, |
|
3215 plot/contour.m, plot/figure.m, plot/multiplot.m, plot/mplot.m, |
|
3216 plot/plot_border.m, plot/subplot.m, plot/subwindow.m, |
|
3217 plot/title.m, plot/top_title.m: Avoid eval. |
|
3218 |
5251
|
3219 2005-03-28 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
3220 |
5253
|
3221 * plot/__axis_label__.m, plot/axis.m, plot/grid.m, |
|
3222 plot/plot_border.m, plot/replot.m, plot/title.m, plot/top_title.m: |
|
3223 Use __gnuplot_replot__ instead of replot. |
|
3224 |
5252
|
3225 * plot/__axis_label__.m, plot/axis.m, plot/bottom_title.m, |
|
3226 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/grid.m, |
|
3227 plot/loglogerr.m, plot/loglog.m, plot/mesh.m, plot/mplot.m, |
|
3228 plot/multiplot.m, plot/oneplot.m, plot/plot_border.m, plot/plot.m, |
|
3229 plot/polar.m, plot/semilogxerr.m, plot/semilogx.m, |
|
3230 plot/semilogyerr.m, plot/semilogy.m, plot/shg.m, plot/subplot.m, |
|
3231 plot/subwindow.m, plot/title.m, plot/top_title.m: |
5654
|
3232 Use __gnuplot_raw__ instead of __gnuplot_set__. |
5252
|
3233 |
5251
|
3234 * plot/replot.m: Use __gnuplot_replot__, not __greplot__. |
|
3235 |
5244
|
3236 2005-03-24 John W. Eaton <jwe@octave.org> |
|
3237 |
|
3238 * optimization/glpkmex.m: Texinfoize Doc string. |
|
3239 * optimization/glpk.m: Likewise. |
|
3240 Allow VARTYPE and CTYPE to be row or column vectors of characters |
|
3241 (row vectors are orginary character strings). |
|
3242 * optimization/glpkparam.m: Delete. |
|
3243 |
5243
|
3244 2005-03-24 Quentin Spencer <qspencer@ieee.org> |
|
3245 |
|
3246 * statistics/base/mean.m: Allow DIMS arg greater than the number |
|
3247 of dimensions of X. |
|
3248 |
5237
|
3249 2005-03-23 John W. Eaton <jwe@octave.org> |
|
3250 |
5239
|
3251 * general/tril.m, general/triu.m: Return value of same class as |
|
3252 argument. |
|
3253 |
5237
|
3254 * optimization/glpk.m: Simplify interface. By default, solve |
|
3255 standard LP min C'*x s.t. A*x = b, x >= 0. |
|
3256 * optimization/glpkmex.m: New file. |
|
3257 |
5232
|
3258 2005-03-22 John W. Eaton <jwe@octave.org> |
|
3259 |
5237
|
3260 * configure.in (AC_CONFIG_FILES): Add optimization/Makefile to the |
|
3261 list. |
|
3262 |
5233
|
3263 * optimization/glpk.m: Adapt to Octave coding style. |
|
3264 No need for varargout or varargin. |
|
3265 Print usage message if nargin > 11. |
|
3266 Allow any value of nargout. |
|
3267 Use repmat (C, nr, nc) instead of char (C * ones (nr, nc)). |
|
3268 Avoid looping when checking character classes. |
|
3269 |
5232
|
3270 * optimization: New directory. |
|
3271 * Makefile.in (SUBDIRS): Add it to the list. |
|
3272 * optimization/Makefile.in: New file. |
|
3273 * optimization/glpk.m, optimization/glpkparams.m, |
|
3274 optimization/glpktest1, optimization/glpktest2: New files. |
|
3275 |
5218
|
3276 2005-03-16 Soren Hauberg <soren@hauberg.org> |
|
3277 |
|
3278 * strings/split.m: Quick return for empty second arg. |
|
3279 Improve warning for multi-line strings. |
|
3280 Speed up by avoiding sprintf in loop and eval. |
|
3281 |
5217
|
3282 2005-03-16 Paul Kienzle <pkienzle@users.sf.net> |
|
3283 |
|
3284 * polynomial/polyderiv.m : Accept a*b, a/b. Auto-reduce common terms. |
|
3285 * polynomial/polyder.m: Ditto. |
|
3286 * polynomial/polygcd.m: New function. |
|
3287 |
5214
|
3288 2005-03-16 John W. Eaton <jwe@octave.org> |
|
3289 |
5215
|
3290 * control/base/__stepimp__.m, control/base/bode.m, |
|
3291 control/base/frdemo.m, control/base/nichols.m, |
|
3292 control/base/nyquist.m, control/base/pzmap.m, |
|
3293 control/base/rldemo.m, control/base/rlocus.m, |
|
3294 control/hinf/dhinfdemo.m, control/hinf/hinfdemo.m, |
|
3295 plot/__axis_label__.m, plot/__errplot__.m, plot/__plt__.m, |
|
3296 plot/axis.m, plot/bar.m, plot/bottom_title.m, plot/contour.m, |
|
3297 plot/errorbar.m, plot/figure.m, plot/grid.m, plot/loglog.m, |
|
3298 plot/loglogerr.m, plot/mesh.m, plot/meshgrid.m, plot/mplot.m, |
|
3299 plot/multiplot.m, plot/oneplot.m, plot/plot.m, plot/plot_border.m, |
|
3300 plot/polar.m, plot/semilogx.m, plot/semilogxerr.m, |
|
3301 plot/semilogy.m, plot/semilogyerr.m, plot/shg.m, plot/stairs.m, |
|
3302 plot/subplot.m, plot/subwindow.m, plot/title.m, plot/top_title.m, |
|
3303 plot/xlabel.m, quaternion/demoquat.m, |
|
3304 quaternion/qcoordinate_plot.m, signal/freqz_plot.m, sparse/spy.m, |
|
3305 statistics/base/ppplot.m, statistics/base/qqplot.m: |
|
3306 Use __gnuplot_plot__ instead of gplot, __gnuplot_splot__ instead |
|
3307 of gsplot, and __gnuplot_set__ instead of gset. Remove gplot, |
|
3308 gsplot from @seealso docs. |
5214
|
3309 |
|
3310 * plot/replot.m: New file. |
|
3311 |
5205
|
3312 2005-03-15 David Bateman <dbateman@free.fr> |
|
3313 |
|
3314 * set/unique.m, set/ismember.m: Handle cell arrays. |
|
3315 |
5196
|
3316 2005-03-09 John W. Eaton <jwe@octave.org> |
|
3317 |
|
3318 * statistics/Makefile.in (bin-dist): Delete target. |
|
3319 (BINDISTSUBDIRS): Delete variable. |
|
3320 * scripts/control/Makefile.in: Likewise. |
|
3321 |
5378
|
3322 * audio/Makefile.in (bin-dist): Delete target. |
5196
|
3323 (BINDISTFILES): Delete variable. |
5378
|
3324 * control/base/Makefile.in: Likewise. |
|
3325 * control/hinf/Makefile.in: Likewise. |
|
3326 * control/obsolete/Makefile.in: Likewise. |
|
3327 * control/system/Makefile.in: Likewise. |
|
3328 * control/util/Makefile.in: Likewise. |
|
3329 * deprecated/Makefile.in: Likewise. |
|
3330 * elfun/Makefile.in: Likewise. |
|
3331 * finance/Makefile.in: Likewise. |
|
3332 * general/Makefile.in: Likewise. |
|
3333 * image/Makefile.in: Likewise. |
|
3334 * sparse/Makefile.in: Likewise. |
|
3335 * io/Makefile.in: Likewise. |
|
3336 * plot/Makefile.in: Likewise. |
|
3337 * Makefile.in: Likewise. |
|
3338 * miscellaneous/Makefile.in: Likewise. |
|
3339 * linear-algebra/Makefile.in: Likewise. |
|
3340 * polynomial/Makefile.in: Likewise. |
|
3341 * quaternion/Makefile.in: Likewise. |
|
3342 * set/Makefile.in: Likewise. |
|
3343 * signal/Makefile.in: Likewise. |
|
3344 * specfun/Makefile.in: Likewise. |
|
3345 * special-matrix/Makefile.in: Likewise. |
|
3346 * startup/Makefile.in: Likewise. |
|
3347 * statistics/base/Makefile.in: Likewise. |
|
3348 * statistics/distributions/Makefile.in: Likewise. |
|
3349 * statistics/models/Makefile.in: Likewise. |
|
3350 * statistics/tests/Makefile.in: Likewise. |
|
3351 * strings/Makefile.in: Likewise. |
|
3352 * time/Makefile.in: Likewise. |
5196
|
3353 |
5195
|
3354 2005-03-08 John W. Eaton <jwe@octave.org> |
|
3355 |
|
3356 * general/repmat.m: Correctly diagnose 3-argument non-scalar |
|
3357 dimensions case. From Matthew A Swabey <mas01r@ecs.soton.ac.uk>. |
|
3358 |
5192
|
3359 2005-03-04 John W. Eaton <jwe@octave.org> |
|
3360 |
|
3361 * plot/clg.m: New file. |
|
3362 |
5193
|
3363 2005-03-03 John W. Eaton <jwe@octave.org> |
|
3364 |
|
3365 * general/isequal.m, general/sortrows.m, set/ismember.m, |
|
3366 set/setdiff.m, strings/str2double.m, strings/strmatch.m, |
|
3367 strings/strcmpi.m: |
|
3368 New files from Octave-forge. Adapt to Octave coding standards. |
|
3369 |
5181
|
3370 2005-03-03 Paul Kienzle <pkienzle@users.sf.net> |
|
3371 |
|
3372 * statistics/distributions/binomial_pdf.m: Extend the feasible |
|
3373 computation range. |
|
3374 |
5164
|
3375 2005-02-25 John W. Eaton <jwe@octave.org> |
|
3376 |
|
3377 Sparse merge. |
|
3378 |
|
3379 2005-01-23 David Bateman <dbateman@free.fr> |
|
3380 |
|
3381 * sparse/randperm.m: Delete duplicate randperm.m. |
|
3382 |
|
3383 2005-01-10 John W. Eaton <jwe@octave.org> |
|
3384 |
|
3385 * sparse/Makefile.in: New file. |
|
3386 * configure.in (AC_CONFIG_FILES): Add sparse/Makefile to the list. |
|
3387 |
|
3388 2005-01-07 David Bateman <dbateman@free.fr> |
|
3389 |
|
3390 * set/unique.m: import file from octave-forge. |
|
3391 |
|
3392 2005-01-05 David Bateman <dbateman@free.fr> |
|
3393 |
|
3394 * Makefile.in: include sparse directory in SUBDIRS. |
|
3395 |
|
3396 2004-12-30 John W. Eaton <jwe@octave.org> |
|
3397 |
|
3398 * sparse/nzmax.m: Delete (there is an nzmax function in |
|
3399 src/DLD-FUNCTIONS/sparse.cc). |
|
3400 |
|
3401 2004-12-28 John W. Eaton <jwe@octave.org> |
|
3402 |
|
3403 Merge of sparse code from David Bateman <dbateman@free.fr> and |
|
3404 Andy Adler <adler@site.uottawa.ca>. |
|
3405 |
|
3406 * sparse/colperm.m, sparse/nonzeros.m, sparse/nzmax.m, |
|
3407 sparse/randperm.m, sparse/spalloc.m, sparse/spconvert.m, |
|
3408 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/sphcat.m, |
|
3409 sparse/spones.m, sparse/sprand.m, sparse/sprandn.m, |
|
3410 sparse/spstats.m, sparse/spvcat.m, sparse/spy.m: New files. |
|
3411 |
|
3412 * sparse: New directory. |
|
3413 |
5158
|
3414 2005-02-22 John W. Eaton <jwe@octave.org> |
|
3415 |
|
3416 * polynomial/residue.m: Force prepad to always create row vectors. |
|
3417 |
|
3418 * polynomial/poly.m: Quick return if m is 0. |
|
3419 From Carmen Navarrete <carmen.navarrete@uam.es>. |
|
3420 |
5154
|
3421 2005-02-21 David Bateman <dbateman@free.fr> |
|
3422 |
|
3423 * statistics/distributions/poisson_rnd.m: fix for lambda of zero. |
|
3424 From Mark van Rossum <mvanross@inf.ed.ac.uk>. |
|
3425 Fix for row vectors with at least one element of lambda not in |
|
3426 (0, Inf). |
|
3427 |
5152
|
3428 2005-02-21 John W. Eaton <jwe@octave.org> |
|
3429 |
5153
|
3430 * statistics/base/qqplot.m: Use feval instead of eval. |
|
3431 |
5152
|
3432 * plot/grid.m, plot/plot_border.m, plot/title.m, plot/top_title.m, |
|
3433 plot/__axis_label__.m: Issue replot command. |
|
3434 |
5135
|
3435 2005-02-09 John W. Eaton <jwe@octave.org> |
|
3436 |
|
3437 * polynomial/polyderiv.m: Force P to be a row vector. |
|
3438 |
5133
|
3439 2005-02-08 John W. Eaton <jwe@octave.org> |
|
3440 |
|
3441 * strings/dec2base.m: Don't delete leading zero if third arg is |
|
3442 provided and len <= computed max_len. |
|
3443 |
5125
|
3444 2005-01-27 David Bateman <dbateman@free.fr> |
|
3445 |
|
3446 * strings/dec2base.m: Be even more careful about handling all digits. |
|
3447 |
|
3448 2005-01-27 Paul Kienzle <pkienzle@users.sf.net> |
|
3449 |
|
3450 * strings/dec2base.m: Use integer arithmetic to count number of digits. |
|
3451 |
5123
|
3452 2005-01-27 Benjamin Hall <benjamin.hall@pw.utc.com> |
|
3453 |
|
3454 * statistics/base/median.m: Make it work for the scalar case too. |
|
3455 |
6308
|
3456 2005-01-25 Daniel J Sebald <daniel.sebald@ieee.org> |
5117
|
3457 |
|
3458 * plot/__plt__.m: Initialize fmt and sep outside of loop. |
5118
|
3459 Simplify logic for decoding args. |
5117
|
3460 |
5115
|
3461 2005-01-24 John W. Eaton <jwe@octave.org> |
|
3462 |
5116
|
3463 * plot/__plr__.m, plot/__plr2__.m: Pass name of caller to __plt__. |
|
3464 |
|
3465 * plot/__plt__.m: No need to save and reset hold state now. |
|
3466 (first_plot): Delete unused variable. |
|
3467 |
5115
|
3468 * plot/__plr2__.m, plot/__plt2__.m: Improve diagnostics. |
|
3469 |
|
3470 * plot/__plr__.m: Use __plt__, not specific __pltXX__ functions. |
|
3471 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
3472 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
3473 plot/__plt2vv__.m: |
|
3474 Return data and gnuplot commands instead of evaluating them. |
|
3475 * plot/__plt__.m: Handle evaluation of all gnuplot commands here. |
|
3476 Based on changes from Daniel J Sebald <daniel.sebald@ieee.org>. |
|
3477 |
5108
|
3478 2005-01-18 John W. Eaton <jwe@octave.org> |
|
3479 |
|
3480 * linear-algebra/cross.m: Allocate idx1 before use. |
|
3481 |
5096
|
3482 2004-12-08 Heikki Junes <Heikki.Junes@hut.fi> |
|
3483 |
|
3484 * statistics/base/range.m: Fix varargin usage. |
|
3485 |
5091
|
3486 2004-12-02 Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be> |
|
3487 |
|
3488 * strings/deblank.m: Remove all trailing whitespace (check with |
|
3489 isspace), not just SPC. |
|
3490 |
5090
|
3491 2004-12-02 Balint Reczey <balint_reczey@yahoo.com> |
|
3492 |
|
3493 * statistics/base/moment.m: Fix argument parsing for N-d arrays. |
|
3494 |
5073
|
3495 2004-11-09 John W. Eaton <jwe@octave.org> |
|
3496 |
|
3497 * miscellaneous/fileparts.m: Allow filenames with no extension. |
|
3498 From Julius Smith <jos@ccrma.stanford.edu>. |
|
3499 |
5072
|
3500 2004-11-08 John W. Eaton <jwe@octave.org> |
|
3501 |
|
3502 * plot/__plt2vm__.m: Delete debugging statement. |
|
3503 From Dmitri A. Sergatskov <dmitri@unm.edu>. |
|
3504 |
5065
|
3505 2004-11-04 John W. Eaton <jwe@octave.org> |
|
3506 |
|
3507 * plot/hist.m: Always return row vectors for vector args. |
|
3508 |
5031
|
3509 2004-09-23 John W. Eaton <jwe@octave.org> |
|
3510 |
|
3511 * strings/strcmp.m: If args are not strings or cell arrays of |
|
3512 strings, return zero instead of reporting an error. |
|
3513 |
5021
|
3514 2004-09-22 Federico Zenith <zenith@chemeng.ntnu.no> |
|
3515 |
|
3516 * control/base/analdemo.m, control/base/are.m, control/base/bddemo.m, |
|
3517 control/base/controldemo.m, control/base/damp.m, control/base/dare.m, |
|
3518 control/base/dcgain.m, control/base/dgram.m, control/base/dlyap.m, |
|
3519 control/base/dre.m, control/base/frdemo.m, control/base/gram.m, |
|
3520 control/base/impulse.m, control/base/lqp.m, control/base/obsv.m, |
|
3521 control/base/pzmap.m, control/base/rldemo.m, control/hinf/h2norm.m, |
|
3522 control/hinf/hinfsyn.m, control/hinf/hinfsyn_ric.m, |
|
3523 control/hinf/is_dgkf.m, control/system/c2d.m, |
|
3524 control/system/is_detectable.m, control/system/is_sample.m, |
|
3525 control/system/is_siso.m, control/system/is_stable.m, |
|
3526 control/system/ss2sys.m, control/system/ss.m, control/system/sys2ss.m, |
|
3527 control/system/sys2tf.m, control/system/sys2zp.m, |
|
3528 control/system/sysappend.m, control/system/sysconnect.m, |
|
3529 control/system/sysdisc.m, control/system/sysdup.m, |
|
3530 control/system/sysgetsignals.m, control/system/sysmult.m, |
|
3531 control/system/syssetsignals.m, control/system/syssub.m, |
|
3532 control/system/tf2sys.m, control/system/ugain.m, |
|
3533 control/system/zp2ss.m, control/system/zp2sys.m, |
|
3534 control/system/zp2tf.m, control/util/axis2dlim.m, polynomial/roots.m, |
|
3535 special-matrix/toeplitz.m: Fix typos in doc strings. |
|
3536 |
|
3537 * control/base/are.m, control/base/dare.m, control/base/lsim.m, |
|
3538 control/base/ltifr.m, control/base/place.m,control/base/tzero2.m, |
|
3539 control/base/tzero.m, control/hinf/hinf_ctr.m, control/hinf/wgt1o.m, |
|
3540 ontrol/system/is_abcd.m, control/system/parallel.m, |
|
3541 control/system/ss2tf.m, control/system/ss2zp.m, control/system/ss.m, |
|
3542 control/system/sysappend.m, control/system/sysconnect.m, |
|
3543 control/system/sysdup.m, control/system/sysgroup.m, |
|
3544 control/system/sysprune.m, control/system/sysreorder.m, |
|
3545 control/system/sysscale.m, control/system/syssub.m, |
|
3546 control/system/tf2ss.m, control/system/tf2zp.m, control/util/zgfmul.m, |
|
3547 control/util/zginit.m, control/util/zgscal.m, elfun/acoth.m, |
|
3548 polynomial/polyout.m, specfun/log2.m: |
|
3549 Add output arguments in doc strings. |
|
3550 |
|
3551 * control/base/are.m, control/base/bode_bounds, control/base/bode.m, |
|
3552 control/base/__bodquist__.m, control/base/ctrb.m, control/base/dare.m, |
|
3553 control/base/DEMOcontrol.m, control/base/dlyap.m, control/base/dre.m, |
|
3554 control/base/freqchkw.m, control/base/__freqresp__.m, |
|
3555 control/base/__freqresp__.m, control/base/lqp.m, control/base/lqr.m, |
|
3556 contol/base/lsim.m, control/base/lyap.m, control/base/nyquist.m, |
|
3557 control/base/obsv.m, control/base/place.m, control/base/pzmap.m, |
|
3558 control/base/__stepimp__.m, control/base/step.m, control/base/tzero2.m |
|
3559 control/base/tzero.m, control/hinf/dhinfdemo.m, control/hinf/h2norm.m, |
|
3560 control/hinf/h2syn.m, control/hinf/hinfdemo.m, |
|
3561 control/hinf/hinfnorm.m, control/hinf/hinfsyn_chk.m, |
|
3562 control/hinf/hinfsyn.m, control/hinf/is_dgkf.m, |
|
3563 control/obsolete/syschnames.m, control/obsolete/syschnames.m, |
|
3564 control/system/c2d.m, control/system/is_abcd.m, |
|
3565 control/system/is_controllable.m, control/system/is_detectable.m, |
|
3566 control/system/is_observable.m, control/system/is_stable.m, |
|
3567 control/system/jet707.m, control/system/ord2.m, |
|
3568 control/system/starp.m, control/system/sys2fir.m, |
|
3569 control/system/sys2ss.m, control/system/sys2tf.m, |
|
3570 control/system/sys2zp.m, control/system/syscont.m, |
|
3571 control/system/sysdisc.m, control/system/sysdup.m, |
|
3572 control/system/sysgettype.m, control/system/sysgroup.m, |
|
3573 control/system/sysmult.m, control/system/sysprune.m, |
|
3574 control/system/sysreorder.m, control/system/sysscale.m, |
|
3575 control/system/syssetsignals.m, control/system/sysupdate.m, |
|
3576 control/system/tf2ss.m, control/system/tf2sys.m, |
|
3577 control/system/zp2ss.m, control/system/zp2sys.m, |
|
3578 control/util/axis2dlim.m, control/util/prompt.m, |
|
3579 control/util/zgfmul.m, control/util/zginit.m, |
|
3580 control/util/__zgpbal__.m, control/util/zgscal.m: |
|
3581 Use @var, @strong, @command, @math, @acronym, @table and @cite |
|
3582 in doc strings. |
|
3583 |
|
3584 * control/base/bode_bounds.m, control/base/ctrb.m, control/base/dre.m, |
|
3585 control/base/dgram.m, control/base/dlyap.m, control/base/ltifr.m, |
|
3586 control/base/nyquist.m, control/base/obsv.m, control/base/tzero.m, |
|
3587 control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, |
|
3588 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
|
3589 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, |
|
3590 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, |
|
3591 control/hinf/wgt1o.m, control/obsolete/syschnames.m, |
|
3592 control/system/c2d.m, control/system/fir2sys.m, |
|
3593 control/system/is_stabilizable.m, control/system/jet707.m, |
|
3594 control/system/ord2.m, control/system/ss2tf.m, control/system/tf2ss.m, |
|
3595 control/util/zgshsr.m, polynomial/polyout.m: |
|
3596 New @tex section(s) in doc strings for better formating of printed |
|
3597 output. |
|
3598 |
|
3599 * control/base/__freqresp__.m, control/base/nyquist.m, |
|
3600 control/base/__stepimp__.m, control/hinf/hinfdemo.m, |
|
3601 control/obsolete/syschnames.m, control/system/sysprune.m: |
|
3602 Use proper double quote marks for TeX. |
|
3603 |
|
3604 * control/base/DEMOcontrol.m: Add missing ; |
|
3605 |
|
3606 * control/base/nichols.m, control/base/rlocus.m, |
|
3607 control/obsolete/minfo.m, control/system/is_digital.m, |
|
3608 control/system/ss2zp.m, control/system/sysmin.m, |
|
3609 control/system/tf2zp.m, control/util/sortcom.m: |
|
3610 Convert documentation to use or more completely use Texinfo. |
|
3611 |
|
3612 * control/base/rlocus.m, control/hinf/dhinfdemo.m, |
|
3613 control/hinf/hinfdemo.m, control/system/ord2.m, |
|
3614 control/system/parallel.m, control/system/ss2tf.m, |
|
3615 control/system/starp.m: Use "@group ... @end group" to avoid ascii |
|
3616 art splitting over a page boundary. |
|
3617 |
|
3618 * control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, |
|
3619 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
|
3620 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, |
|
3621 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, |
|
3622 control/hinf/wgt1o.m, control/system/buildssic.m: |
|
3623 Use {\cal H}_\infty for H-infinity and likewise for H-2 to |
|
3624 the TeX documentation. |
|
3625 |
|
3626 * control/system/is_stabilizable.m: |
|
3627 Add Copyright so that help is displayed correctly. |
|
3628 |
|
3629 * special-matrix/vander.m: Octave indexes start at 1. |
|
3630 |
5011
|
3631 2004-09-21 David Bateman <dbateman@free.fr> |
|
3632 |
|
3633 * general/rotdim.m: New function for rotation of an N-d array in an |
|
3634 arbitrary plane. |
|
3635 |
|
3636 * general/flipdim.m: New function to flip an N-d array about an |
|
3637 arbitrary axis. |
|
3638 |
5003
|
3639 2004-09-15 David Bateman <dbateman@free.fr> |
|
3640 |
|
3641 * general/bitget.m: Replace Bmax, which is undefined with bitmax |
|
3642 |
4992
|
3643 2004-09-15 John W. Eaton <jwe@octave.org> |
|
3644 |
|
3645 * strings/strcmp.m: Fix typo in cell/string array case. |
4993
|
3646 Use iscellstr to check for cells rather than iscell. |
|
3647 Improve diagnostics for invalid args. |
4992
|
3648 |
4983
|
3649 2004-09-10 David Bateman <dbateman@free.fr> |
|
3650 |
|
3651 * statistics/distributions/binomial_rnd.m: Fix error for scalar n |
|
3652 and p with n > 1, and fix for matrix n and p with n == 1. |
|
3653 |
|
3654 * statistics/distributions/poisson_rnd.m: Fix for matrix length, |
|
3655 due to row vs. column vector operations. |
|
3656 |
4964
|
3657 2004-09-03 David Bateman <dbateman@free.fr> |
|
3658 |
|
3659 * general/repmat.m: Fix to allow logical classes. |
|
3660 |
4950
|
3661 2004-08-31 John W. Eaton <jwe@octave.org> |
|
3662 |
|
3663 * general/isa.m: New function, from Octave-forge. |
|
3664 |
|
3665 2004-08-31 David Bateman <dbateman@free.fr> |
|
3666 |
|
3667 * general/bitcmp.m, general/bitget.m, general/bitset.m: Remove |
|
3668 limitation on the use of int64 and uint64 types, and the use |
|
3669 of the eval. |
|
3670 |
|
3671 * general/bitset.m: Remove superfluous cast to return type, as bug |
|
3672 in .^ with integer types is fixed. |
|
3673 |
|
3674 * general/repmat.m: Adapt to allow integer types. |
4945
|
3675 |
|
3676 2004-08-31 Paul Kienzle <pkienzle@users.sf.net> |
|
3677 |
|
3678 * plot/axis.m: Don't reset axes when querying them. |
|
3679 |
4942
|
3680 2004-08-27 David Bateman <dbateman@free.fr> |
|
3681 |
|
3682 * statistics/base/ranks.m: Handle non-consecutive ties. |
|
3683 Eliminate loop. |
|
3684 |
4918
|
3685 2004-07-27 David Bateman <dbateman@free.fr> |
|
3686 |
|
3687 * general/num2str.m: Also insert spaces in output when precision |
|
3688 argument is supplied. |
|
3689 |
4915
|
3690 2004-07-23 David Bateman <dbateman@free.fr> |
|
3691 |
|
3692 * general/bitcmp.m, general/bitget.m, general/bitset.m: New functions. |
|
3693 |
4911
|
3694 2004-07-22 Etienne Grossmann <etienne@cs.uky.edu> |
|
3695 |
|
3696 * general/sub2ind.m: Make reshaping index list unnecessary. |
|
3697 |
|
3698 2004-07-22 Paul Kienzle <pkienzle@users.sf.net> |
|
3699 |
|
3700 * miscellaneous/unix.m: Fix doc string. |
|
3701 |
|
3702 2004-07-22 Stefan van der Walt <stefan@sun.ac.za> |
|
3703 |
|
3704 * plot/figure.m: Clarification of documentation. |
|
3705 |
|
3706 * image/imshow.m: Warn for complex images. |
|
3707 Only estimate colourmap for images in [0, 65536]. |
|
3708 |
|
3709 2004-07-22 David Bateman <dbateman@free.fr> |
|
3710 |
|
3711 * general/num2str.m: Fix the case of an all zero input. |
|
3712 |
4906
|
3713 2004-06-22 Etienne Grossmann <etienne@cs.uky.edu> |
|
3714 |
|
3715 * general/ind2sub.m: Doc fix. |
|
3716 |
4900
|
3717 2004-06-08 John W. Eaton <jwe@octave.org> |
|
3718 |
|
3719 * statistics/tests/kolmogorov_smirnov_test.m: Use func2str to |
|
3720 convert function handle to string for eval. |
|
3721 |
4898
|
3722 2004-06-04 Paul Kienzle <pkienzle@users.sf.net> |
|
3723 |
|
3724 * plot/errorbar.m: Remove debugging output. |
|
3725 |
|
3726 2004-06-03 Stefan van der Walt <stefan@sun.ac.za> |
|
3727 |
|
3728 * plot/__pltopt__.m: Properly escape @ symbols in doc string. |
|
3729 |
4897
|
3730 2004-06-03 Paul Kienzle <pkienzle@users.sf.net> |
|
3731 |
4898
|
3732 * deprecated/com2str.m: Include 'i' suffix for pure imaginary numbers. |
|
3733 |
|
3734 * polynomial/polyout.m: Use parenthesis if necessary around |
|
3735 complex polynomial coefficient. |
|
3736 |
4897
|
3737 * plot/__errcomm__.m, plot/__errplot__.m: Simplify code and fix |
|
3738 the bug which causes __errplot__ to ignore the last argument. |
|
3739 |
4894
|
3740 2004-06-03 David Bateman <dbateman@free.fr> |
|
3741 |
|
3742 * general/shiftdim.m: New function based on JWE code snippet. |
|
3743 |
|
3744 * general/circdim.m: New function. |
|
3745 |
4890
|
3746 2004-05-06 David Bateman <dbateman@free.fr> |
|
3747 |
|
3748 * general/issquare.m: Fail if ndim(x) > 2. |
|
3749 |
|
3750 * linear-algebra/norm.m, linear-algebra/norm.m: Fail if ndim(x) > 2. |
|
3751 |
|
3752 * linear-alegbra/cross.m, linear-algebra/dot.m: Allow matrix and |
|
3753 N-d array arguments. Add optional dim argument to define |
|
3754 dimension along which to operate. |
|
3755 |
|
3756 * linear-algebra/dmult.m: Allow N-d arrays. |
|
3757 |
|
3758 * linear-algebra/vec.m: Use v(:) and not reshape. |
|
3759 |
4885
|
3760 2004-04-29 David Bateman <dbateman@free.fr> |
|
3761 |
|
3762 * statistics/base/ranks.m, statistics/base/run_count.m, |
|
3763 statistics/base/studentize.m, statistics/base/kurtosis.m |
|
3764 statistics/base/statistics.m, statistics/base/skewness.m |
|
3765 statistics/base/iqr.m: |
|
3766 Make N-d array aware. Allow optional argument to define the |
|
3767 dimension along which to operate. Update the documentation. |
|
3768 |
|
3769 * statistics/base/ranks.m: Change algorithm to use sort, |
|
3770 and adjust for the ties after. |
|
3771 |
|
3772 * statistics/base/run_counts.m: Change algorithm to use |
|
3773 the a combination of diff and find, rather than a for-loop. |
|
3774 |
4881
|
3775 2004-04-23 Paul Kienzle <pkienzle@users.sf.net> |
|
3776 |
|
3777 * plot/hist.m: Correctly determine cutoffs. New tests. |
|
3778 |
4878
|
3779 2004-04-23 David Bateman <dbateman@free.fr> |
|
3780 |
|
3781 * general/int2str.m: Treat only real part of argument, and treat |
|
3782 NDArrays by stacking the slices through the matrix vertically. |
|
3783 |
|
3784 * general/num2str.m: Improve format of integer matrices, and the |
|
3785 conversion of complex matrices added. Treat NDArrays by stacking |
|
3786 the slices through the matrix vertically. |
|
3787 |
|
3788 * deprecated/com2str.m: Moved here from general subdirectory. |
|
3789 |
4877
|
3790 2004-04-22 John W. Eaton <jwe@octave.org> |
|
3791 |
|
3792 * quaternion/qtransvmat.m: Use continuation characters to make |
|
3793 sure result is a matrix instead of a vector. From <aklark@atdot.it>. |
|
3794 |
4869
|
3795 2004-04-21 David Bateman <dbateman@free.fr> |
|
3796 |
5378
|
3797 * elfun/lcm.m: Make N-d aware. |
4870
|
3798 |
4869
|
3799 * general/diff.m: Make the code N-d array aware. Allow an |
|
3800 optional argument to define the dimension along which to perform |
|
3801 the differences and allow the order of the differences to be larger |
|
3802 than the dimension itself. |
|
3803 |
|
3804 * general/rot90.m, general/fliplr.m, general/flipud.m: Limit the |
|
3805 use of these functions to 1- and 2-d arrays. |
|
3806 |
4863
|
3807 2004-04-16 John W. Eaton <jwe@octave.org> |
|
3808 |
|
3809 * elfun/gcd.m: Delete. |
|
3810 |
4862
|
3811 2004-04-15 David Bateman <dbateman@free.fr> |
|
3812 |
|
3813 * set/create_set.m, general/is_duplicate_entry.m: Make N-d array aware. |
|
3814 |
|
3815 * general/shift.m, general/prepad.m, general/postpad.m: Make N-d |
|
3816 array aware and and optional argument for the dimension along |
|
3817 which to operate. |
|
3818 |
5378
|
3819 * signal/unwrap.m: Make N-d array aware and fix optional |
4862
|
3820 argument for the dimension to be consistent with other N-d array |
|
3821 functions. |
|
3822 |
4860
|
3823 2004-04-08 David Bateman <dbateman@free.fr> |
|
3824 |
|
3825 * statistics/distributions/discrete_cdf.m, |
|
3826 statistics/distributions/discrete_inv.m, |
|
3827 statistics/distributions/discrete_pdf.m, |
|
3828 statistics/distributions/discrete_rnd.m, |
|
3829 statistics/distributions/exponential_cdf.m, |
|
3830 statistics/distributions/exponential_inv.m, |
|
3831 statistics/distributions/exponential_pdf.m, |
|
3832 statistics/distributions/exponential_rnd.m, |
|
3833 statistics/distributions/f_cdf.m, |
|
3834 statistics/distributions/f_inv.m, |
|
3835 statistics/distributions/f_pdf.m, |
|
3836 statistics/distributions/f_rnd.m, |
|
3837 statistics/distributions/geometric_cdf.m, |
|
3838 statistics/distributions/geometric_inv.m, |
|
3839 statistics/distributions/geometric_pdf.m, |
|
3840 statistics/distributions/geometric_rnd.m, |
|
3841 statistics/distributions/hypergeometric_rnd.m, |
|
3842 statistics/distributions/kolmogorov_smirnov_cdf.m, |
|
3843 statistics/distributions/laplace_cdf.m, |
|
3844 statistics/distributions/laplace_inv.m, |
|
3845 statistics/distributions/laplace_pdf.m, |
|
3846 statistics/distributions/laplace_rnd.m, |
|
3847 statistics/distributions/logistic_inv.m, |
|
3848 statistics/distributions/logistic_rnd.m, |
|
3849 statistics/distributions/lognormal_cdf.m, |
|
3850 statistics/distributions/lognormal_inv.m, |
|
3851 statistics/distributions/lognormal_pdf.m, |
|
3852 statistics/distributions/lognormal_rnd.m, |
|
3853 statistics/distributions/pascal_cdf.m, |
|
3854 statistics/distributions/pascal_inv.m, |
|
3855 statistics/distributions/pascal_pdf.m, |
|
3856 statistics/distributions/pascal_rnd.m, |
|
3857 statistics/distributions/poisson_cdf.m, |
|
3858 statistics/distributions/poisson_inv.m, |
|
3859 statistics/distributions/poisson_pdf.m, |
|
3860 statistics/distributions/poisson_rnd.m, |
|
3861 statistics/distributions/t_cdf.m, |
|
3862 statistics/distributions/t_inv.m, |
|
3863 statistics/distributions/t_pdf.m, |
|
3864 statistics/distributions/t_rnd.m, |
|
3865 statistics/distributions/weibull_cdf.m, |
|
3866 statistics/distributions/weibull_inv.m, |
|
3867 statistics/distributions/weibull_pdf.m, |
|
3868 statistics/distributions/weibull_rnd.m: |
|
3869 Allow N-d arrays. |
|
3870 |
|
3871 * statistics/distributions/discrete_inv.m: Fix bug in indexing, |
|
3872 that results in NaN in places where it should not have had. |
|
3873 |
|
3874 * statistics/distributions/discrete_rnd.m: New argument formats to |
|
3875 allow creating arbitrary matrices, compatiable with the other |
5583
|
3876 *_rnd.m functions. Maintain compatibility with previous format. |
4860
|
3877 |
|
3878 * statistics/distributions/empirical_rnd.m: New argument formats |
|
3879 to allow creating arbitrary matrices, compatiable with the other |
5583
|
3880 *_rnd.m functions. Maintain compatibility with previous |
4860
|
3881 format. Allow N-d arrays. |
|
3882 |
|
3883 * statistics/distributions/hypergeometric_cdf.m, |
|
3884 statistics/distributions/hypergeometric_inv.m, |
|
3885 statistics/distributions/hypergeometric_pdf.m, |
|
3886 statistics/distributions/wiener_rnd.m: |
|
3887 Error for non-scalar arguments. |
|
3888 |
|
3889 * statistics/distributions/pascal_rnd.m: |
|
3890 Correct for n = 1 bug, where all elements were equal. |
|
3891 |
4849
|
3892 2004-04-06 David Bateman <dbateman@free.fr> |
|
3893 |
4854
|
3894 * general/common_size.m, miscellaneous/bincoeff.m, |
|
3895 statistics/distributions/beta_cdf.m, |
|
3896 statistics/distributions/beta_inv.m, |
|
3897 statistics/distributions/beta_pdf.m, |
|
3898 statistics/distributions/beta_rnd.m, |
|
3899 statistics/distributions/binomial_cdf.m, |
|
3900 statistics/distributions/binomial_inv.m, |
|
3901 statistics/distributions/binomial_pdf.m, |
|
3902 statistics/distributions/binomial_rnd.m, |
|
3903 statistics/distributions/cauchy_cdf.m, |
|
3904 statistics/distributions/cauchy_inv.m, |
|
3905 statistics/distributions/cauchy_pdf.m, |
|
3906 statistics/distributions/cauchy_rnd.m, |
|
3907 statistics/distributions/chisquare_cdf.m, |
|
3908 statistics/distributions/chisquare_inv.m, |
|
3909 statistics/distributions/chisquare_pdf.m, |
|
3910 statistics/distributions/chisquare_rnd.m, |
|
3911 statistics/distributions/gamma_cdf.m, |
|
3912 statistics/distributions/gamma_inv.m, |
|
3913 statistics/distributions/gamma_pdf.m, |
|
3914 statistics/distributions/gamma_rnd.m, |
|
3915 statistics/distributions/normal_cdf.m, |
|
3916 statistics/distributions/normal_inv.m, |
|
3917 statistics/distributions/normal_pdf.m, |
|
3918 statistics/distributions/normal_rnd.m, |
|
3919 statistics/distributions/stdnormal_cdf.m, |
|
3920 statistics/distributions/stdnormal_pdf.m, |
|
3921 statistics/distributions/stdnormal_rnd.m, |
|
3922 statistics/distributions/uniform_cdf.m, |
|
3923 statistics/distributions/uniform_inv.m, |
|
3924 statistics/distributions/uniform_pdf.m, |
|
3925 statistics/distributions/uniform_rnd.m: |
|
3926 Allow the inputs to be N-d arrays. |
|
3927 |
4852
|
3928 * statistics/base/var.m: Update for N-d arrays. Allow dimension arg. |
|
3929 * statistics/base/median.m: Likewise. |
4849
|
3930 |
4844
|
3931 2004-04-02 David Bateman <dbateman@free.fr> |
|
3932 |
|
3933 * statistics/base/std.m: Allow optional args for type and dim. |
4847
|
3934 * statistics/base/center.m, statistics/base/meansq.m, |
|
3935 statistics/base/moment.m, statistics/base/range.m: |
4852
|
3936 Update for N-d arrays. |
4844
|
3937 * signal/fftshift.m: Fix dimensioning error. |
|
3938 |
|
3939 * statistics/base/std.m: Use repmat not ones(nr,1)*mean to allow |
4852
|
3940 N-d arrays. |
4844
|
3941 |
4852
|
3942 * general/mod.m, general/mod.m: Allow N-d arrays with one scalar arg. |
|
3943 |
|
3944 * signal/fftshift.m: Update for N-d arrays, allow optional dim arg. |
4844
|
3945 |
4852
|
3946 * specfun/erfinv.m, general/repmat.m: Update for N-d arrays. |
4844
|
3947 |
|
3948 * control/base/bode.m, control/base/lqg.m, control/system/ss2sys.m, |
|
3949 control/system/cellidx.m, control/system/dmr2d.m control/system/ss.m, |
|
3950 control/system/sysprune.m: Doc update for usage of cell arrays. |
|
3951 |
|
3952 * control/system/sysidx.m: Use cellidx and not listidx. |
|
3953 |
4841
|
3954 2004-03-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3955 |
|
3956 * plot/__pltopt1__.m: Always add title clause to plot command with |
|
3957 default of "" (so it is off unless explicitly set by the user). |
|
3958 |
4836
|
3959 2004-03-12 Stefan van der Walt <stefan@sun.ac.za> |
|
3960 |
|
3961 * image/imshow.m: Accept "truesize" argument. |
|
3962 Ignore current colormap. New tests and demos. |
|
3963 |
4834
|
3964 2004-03-10 Volker Kuhlmann <VolkerKuhlmann@gmx.de> |
|
3965 |
|
3966 * signal/sinewave.m: Allow N to default to M. |
|
3967 |
4826
|
3968 2004-03-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3969 |
|
3970 * signal/unwrap.m: Use "isempty (tol)" instead of "tol == []". |
|
3971 |
4818
|
3972 2004-03-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3973 |
|
3974 * general/deal.m: New function. |
4819
|
3975 Add tests from Paul Kienzle. |
4818
|
3976 |
4811
|
3977 2004-03-03 Stefan van der Walt <stefan@sun.ac.za> |
|
3978 |
|
3979 * plot/hist.m: Compute histogram correctly for n>=30. |
|
3980 |
5095
|
3981 2004-03-02 Paul Kienzle <pkienzle@users.sf.net> |
4807
|
3982 |
|
3983 * signal/sinc.m: Use i(:) instead of i when checking for any nonzeros. |
|
3984 |
4806
|
3985 2004-03-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3986 |
|
3987 * miscellaneous/horzcat.m: Delete. |
|
3988 * miscellaneous/vertcat.m: Delete. |
|
3989 |
4790
|
3990 2004-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3991 |
|
3992 * plot/figure.m: Also look for GNUTERM in the environment and use |
|
3993 that if it is set (for OS X). From Per Persson <persquare@mac.com>. |
|
3994 |
4789
|
3995 2004-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3996 |
|
3997 * control/base/__stepimp__.m: Only call clearplot if we will be |
|
3998 doing multiple plots in the same gnuplot frame. |
|
3999 |
4780
|
4000 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4001 |
|
4002 * control/system/__sysconcat__.m, control/system/__tfl__.m, |
|
4003 control/system/cellidx.m, control/system/ss.m, |
|
4004 control/system/tf.m, control/system/zp.m: New functions. |
|
4005 |
4778
|
4006 2004-02-16 Glenn Golden <gdg@zplane.com> |
|
4007 |
|
4008 * statistics/distributions/discrete_inv.m: |
|
4009 Reduce memory requirements. |
|
4010 |
4772
|
4011 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4012 |
|
4013 * plot/__errcomm__.m: Fix thinko in previous change. |
|
4014 From Teemu Ikonen <tpikonen@pcu.helsinki.fi>. |
|
4015 |
4771
|
4016 2004-02-16 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
|
4017 |
|
4018 * control/base/__bodquist__.m, control/base/__stepimp__.m, |
|
4019 control/base/analdemo.m, control/base/bddemo.m, |
|
4020 control/base/bode.m, control/base/dre.m, control/base/frdemo.m, |
|
4021 control/base/lqg.m, control/base/nyquist.m, control/base/place.m, |
|
4022 control/base/rldemo.m, control/base/rlocus.m, |
|
4023 control/base/tzero.m, control/hinf/dgkfdemo.m, |
|
4024 control/hinf/dhinfdemo.m, control/hinf/h2syn.m, |
|
4025 control/hinf/hinf_ctr.m, control/hinf/hinfsyn.m, |
|
4026 control/hinf/wgt1o.m, control/obsolete/dlqg.m, |
|
4027 control/obsolete/packsys.m, control/obsolete/series.m, |
|
4028 control/system/__sysdefioname__.m, |
|
4029 control/system/__sysdefstname__.m, control/system/__sysgroupn__.m, |
|
4030 control/system/__tf2sysl__.m, control/system/buildssic.m, |
|
4031 control/system/c2d.m, control/system/d2c.m, |
|
4032 control/system/dmr2d.m, control/system/fir2sys.m, |
|
4033 control/system/is_signal_list.m, control/system/is_siso.m, |
|
4034 control/system/jet707.m, control/system/listidx.m, |
|
4035 control/system/moddemo.m, control/system/ord2.m, |
|
4036 control/system/packedform.m, control/system/parallel.m, |
|
4037 control/system/ss2sys.m, control/system/sys2tf.m, |
|
4038 control/system/sys2zp.m, control/system/sysadd.m, |
|
4039 control/system/sysappend.m, control/system/sysconnect.m, |
|
4040 control/system/syscont.m, control/system/sysdimensions.m, |
|
4041 control/system/sysdisc.m, control/system/sysdup.m, |
|
4042 control/system/sysgetsignals.m, control/system/sysgettype.m, |
|
4043 control/system/sysgroup.m, control/system/sysmin.m, |
|
4044 control/system/sysmult.m, control/system/sysprune.m, |
|
4045 control/system/sysrepdemo.m, control/system/sysscale.m, |
|
4046 control/system/syssetsignals.m, control/system/syssub.m, |
|
4047 control/system/sysupdate.m, control/system/tf2sys.m, |
|
4048 control/system/ugain.m, control/system/zp2ss.m, |
|
4049 control/system/zp2sys.m, control/util/__outlist__.m, |
|
4050 control/util/__zgpbal__.m, control/util/strappend.m: |
|
4051 Use cell arrays instead of lists. |
|
4052 |
4723
|
4053 2004-01-23 Stefan van der Walt <stefan@sun.ac.za> |
|
4054 |
|
4055 * plot/bar.m: Increase size of cutoff vector from xlen-1 to xlen |
|
4056 so that bar (1, 1) will work. |
|
4057 |
4710
|
4058 2004-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4059 |
4717
|
4060 * plot/__errcomm__.m: Cope with nargin now being a function. |
|
4061 * plot/__errplot__.m: Likewise. |
|
4062 * plot/__plt__.m: Likewise. |
|
4063 * plot/plot_border.m: Likewise. |
|
4064 |
4710
|
4065 * Makefile.in (distclean, maintainer-clean): Remove DOCSTRINGS, |
|
4066 not $(DOCSTRINGS). |
|
4067 |
4706
|
4068 2004-01-21 Quentin Spencer <qspencer@ieee.org> |
|
4069 |
|
4070 * linear-algebra/rank.m: Allow rank ([]) to return 0, same as |
|
4071 rank ([], tol). |
|
4072 |
4691
|
4073 2004-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4074 |
4692
|
4075 * elfun/acot.m: Return atan (1./z). |
|
4076 From Gregory Vanuxem <g.vanuxem@wanadoo.fr>. |
|
4077 |
4691
|
4078 * miscellaneous/dir.m: New file. |
|
4079 |
|
4080 * general/num2str.m: Use "%d" as format if values are ints with |
|
4081 magnitude less than 1e10. |
|
4082 |
|
4083 2004-01-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4084 |
|
4085 * general/num2str.m: If single arg is string, return it. |
|
4086 |
|
4087 * miscellaneous/not.m: New file. |
|
4088 |
|
4089 * miscellaneous/unix.m: New file. |
|
4090 |
|
4091 * miscellaneous/isunix.m: New file. |
|
4092 * miscellaneous/ispc.m: New file. |
|
4093 |
|
4094 * miscellaneous/computer.m: New file. |
|
4095 |
|
4096 * miscellaneous/delete.m: New file. |
|
4097 |
4689
|
4098 2004-01-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4099 |
|
4100 * statistics/tests/kolmogorov_smirnov_test_2.m: Fix test for ties. |
|
4101 |
|
4102 2004-01-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4103 |
|
4104 * miscellaneous/path.m: Handle DEFAULT_LOADPATH substitution. |
|
4105 Always return substituted version of LOADPATH if nargout != 0. |
|
4106 |
4685
|
4107 2003-12-21 Schloegl Alois <alois.schloegl@tugraz.at> |
|
4108 |
|
4109 * miscellaneous/fullfile.m: If filename is empty, set it to "." |
|
4110 before continuing. |
|
4111 |
|
4112 * miscellaneous/fileparts.m: Allow name to start with ".". |
|
4113 |
4677
|
4114 2003-12-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4115 |
|
4116 * general/ind2sub.m: New file. |
|
4117 * general/sub2ind.m: New file. |
|
4118 |
4675
|
4119 2003-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4120 |
|
4121 * control/system/zp2ss.m: Don't save and restore |
|
4122 warn_empty_list_elements. |
|
4123 |
|
4124 2003-12-15 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
|
4125 |
|
4126 * control/system/zp2ss.m: Correct definition of pure gain system. |
|
4127 |
4673
|
4128 2003-12-10 Quentin Spencer <qspencer@ieee.org> |
|
4129 |
|
4130 * statistics/base/mean.m: Remove special case for row vectors. |
|
4131 |
4637
|
4132 2003-11-19 Quentin Spencer <qspencer@ieee.org> |
|
4133 |
|
4134 * signal/freqz_plot.m: Save and restore automatic_replot too. |
|
4135 |
4631
|
4136 2003-11-18 Danilo Piazzalunga <danilopiazza@libero.it> |
|
4137 |
|
4138 * statistics/base/iqr.m: Handle matrices. |
|
4139 |
4630
|
4140 2003-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4141 |
|
4142 * general/issymmetric.m: Don't fail if norm (x) == 0. |
|
4143 |
4629
|
4144 2003-11-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4145 |
|
4146 * miscellaneous/path.m: Fix thinko in previous change. |
|
4147 |
4609
|
4148 2003-11-14 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
|
4149 |
4629
|
4150 * control/base/dare.m: Check positive (semi)definiteness and |
|
4151 dimensions of r (and q). |
|
4152 * control/base/dlqr.m: Check stabilizability of (A,B), |
|
4153 detectability of (A,Q), and whether (A,Q) has non minimal modes |
|
4154 near unit circle. |
4611
|
4155 |
|
4156 * control/system/is_detectable.m: Use Hautus Lemma. |
|
4157 Correct the behavior for discrete-time systems. |
|
4158 * control/system/is_stabilizable.m: Likewise. |
|
4159 |
4609
|
4160 * linear-algebra/krylov.m: Return H = [] in Vnrm == 0 case. |
|
4161 |
|
4162 * linear-algebra/krylovb.m: Fix typo in usage message. |
|
4163 |
4610
|
4164 * general/isdefinite.m: New function. |
|
4165 |
4567
|
4166 2003-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4167 |
|
4168 * general/reshape: Delete. |
|
4169 |
4559
|
4170 2003-10-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4171 |
|
4172 * general/numel.m: Delete. |
|
4173 |
4535
|
4174 2003-10-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4175 |
4536
|
4176 * miscellaneous/horzcat.m, miscellaneous/vartcat.m: New files. |
|
4177 |
|
4178 * deprecated/isstr.m: New file. |
4535
|
4179 |
4529
|
4180 2003-10-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4181 |
|
4182 * plot/__axis_label__.m, plot/xlabel.m, plot/ylabel.m, |
|
4183 plot/zlabel.m, plot/title.m: Return a value if nargout > 0. |
|
4184 |
4525
|
4185 2003-10-02 Quentin Spencer <qspencer@ieee.org> |
|
4186 |
|
4187 * statistics/base/mean.m: Fix missing semicolon problem. |
|
4188 |
4503
|
4189 2003-09-08 Al Niessner <Al.Niessner@jpl.nasa.gov> |
|
4190 |
|
4191 * plot/subplot.m: New global variable, __multiplot_scale__. |
|
4192 |
4492
|
4193 2003-08-29 David Castelow <DCastelow@Airspan.com> |
|
4194 |
|
4195 * strings/dec2base.m, strings/dec2bin.m, strings/dec2hex.m: |
|
4196 Allow optional length argument. |
|
4197 |
4491
|
4198 2003-08-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4199 |
|
4200 * polynomial/polyfit.m: Avoid calling flipud. |
|
4201 From Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be>. |
|
4202 Return structure as second output value for improved Matlab |
|
4203 compatibility. |
|
4204 |
4476
|
4205 2003-07-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4206 |
4478
|
4207 * linear-algebra/cond.m: Behave as though old built-in variable |
|
4208 propagate_empty_matrices is always 1. Also handle empty matrices |
|
4209 with one non-zero dimension. |
|
4210 |
4476
|
4211 * miscellaneous/dump_prefs.m: Add warn_separator_insert and |
|
4212 warn_single_quote_string to the list. |
4478
|
4213 Delete whitespace_in_literal_matrix and propagate_empty_matrices |
|
4214 from the list. |
4476
|
4215 |
5095
|
4216 2003-07-25 Paul Kienzle <pkienzle@users.sf.net> |
4469
|
4217 |
|
4218 * signal/autocov.m: Transpose result of conj because diag returns |
|
4219 a column vector, not a row vector. |
|
4220 |
|
4221 * audio/playaudio.m, audio/record.m, image/image.m, |
|
4222 miscellaneous/bug_report.m: Protect spaces in filenames |
|
4223 with quotes. |
|
4224 |
4466
|
4225 2003-07-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4226 |
4468
|
4227 * io/printf.m, io/puts.m: Delete. |
|
4228 |
4466
|
4229 * miscellaneous/dump_prefs.m: Delete define_all_return_values and |
|
4230 default_return_value from the list. |
|
4231 Add warn_undefined_return_values to the list. |
|
4232 |
|
4233 |
4464
|
4234 2003-07-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4235 |
|
4236 * miscellaneous/dump_prefs.m: Delete default_global_variable_value |
|
4237 and initialize_global_variables from the list. |
|
4238 |
4460
|
4239 2003-07-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4240 |
4463
|
4241 * image/colormap.m: Don't save and restore default_eval_print_flag. |
|
4242 |
|
4243 * miscellaneous/dump_prefs.m: Delete default_eval_print_flag. |
|
4244 |
|
4245 * control/util/zgshsr.m: Use x OP= y instead of x = x OP y. |
|
4246 * control/system/sys2fir.m: Likewise. |
|
4247 |
|
4248 * control/system/is_siso.m: Use && instead of & where appropriate. |
|
4249 * control/system/__tf2sysl__.m: Likewise. |
|
4250 |
|
4251 * control/system/__tf2sysl__.m: Use end instead of length(X). |
|
4252 |
|
4253 * control/freqchkw.m: Use %-escapes for error instead of num2str |
|
4254 and [] concatenation. |
|
4255 * control/system/sys2fir.m: Likewise. |
|
4256 |
|
4257 * control/base/dgram.m, control/base/freqchkw.m, |
|
4258 control/base/gram.m, control/system/__abcddims__.m, |
|
4259 control/system/__sysdefstname__.m, control/system/__tf2sysl__.m, |
|
4260 control/system/is_sample.m, control/system/is_signal_list.m, |
|
4261 control/system/is_siso.m, control/system/sys2fir.m, |
|
4262 control/system/syschtsam.m, control/system/sysgettsam.m, |
|
4263 control/system/sysgettype.m, control/system/tf2zp.m, |
|
4264 control/system/ugain.m, control/util/prompt.m, |
|
4265 control/util/run_cmd.m, control/util/zgrownorm.m, |
|
4266 control/util/zgshsr.m: |
|
4267 Improve conformance to Octave coding style. |
|
4268 |
4461
|
4269 * miscellaneous/dump_prefs.m: Add warn_resize_on_reange_error to |
|
4270 the list. |
|
4271 Delete resize_on_range_error from the list. |
|
4272 |
4460
|
4273 * control/base/pzmap.m, control/base/place.m, |
|
4274 control/base/__freqresp__.m, control/system/sysappend.m, |
|
4275 control/system/syscont.m, control/system/sysdisc.m, |
|
4276 control/system/sysgroup.m, control/system/tfout.m, |
|
4277 control/system/zp2ss.m, control/system/zpout.m, |
|
4278 control/util/__outlist__.m, signal/arma_rnd.m, general/shift.m, |
|
4279 strings/strcat.m: Save and restore warn_empty_list_elements, not |
|
4280 empty_list_elements_ok. |
|
4281 |
|
4282 * miscellaneous/dump_prefs.m: Add warn_empty_list_elements to the list. |
|
4283 Delete empty_list_elements_ok from the list. |
|
4284 |
4457
|
4285 2003-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4286 |
|
4287 * miscellaneous/dump_prefs.m: Include warn_neg_dim_as_zero in the |
|
4288 list. |
|
4289 Delete treat_neg_dim_as_zero from the list. |
|
4290 |
|
4291 * strings/blanks.m: Don't check treat_neg_dim_as_zero. |
|
4292 |
4451
|
4293 2003-07-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4294 |
4455
|
4295 * general/reshape.m: Omit do_fortran_indexing from doc string (it |
|
4296 was not used in the code in any case). |
|
4297 |
|
4298 * strings/strjust.m: Temporarily set warn_fortran_indexing, not |
|
4299 do_fortran_indexing. |
|
4300 |
4452
|
4301 * statistics/base/moment.m: Temporarily set warn_str_to_num, not |
|
4302 implict_str_to_num_ok. Use unwind_protect block to do it. |
|
4303 |
4451
|
4304 * miscellaneous/dump_prefs.m: Include DEFAULT_EXEC_PATH, |
|
4305 DEFAULT_LOAD_PATH, crash_dumps_octave_core, |
4452
|
4306 sighup_dumps_octave_core, sigterm_dumps_octave_core, |
4455
|
4307 warn_imag_to_real, warn_num_to_str, warn_str_to_num, and |
|
4308 warn_fortran_indexing in the list. |
|
4309 Delete ok_to_lose_imaginary_part, implicit_num_to_str_ok, |
|
4310 implicit_str_to_num_ok, do_fortran_indexing, and |
|
4311 prefer_column_vectors from list. |
4451
|
4312 |
4440
|
4313 2003-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4314 |
|
4315 * Makefile.in (distclean, maintainer-clean): Also remove |
|
4316 gethelp$(BUILD_EXEEXT), $(DOCSTRINGS), and autom4te.cache |
|
4317 directory. |
|
4318 |
5095
|
4319 2003-06-17 Aaron A. King <king@quercus.tiem.utk.edu> |
4430
|
4320 |
|
4321 * plot/hist.m: Don't forget to define n if x is a vector. |
|
4322 |
5095
|
4323 2003-06-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4424
|
4324 |
|
4325 * miscellaneous/fileparts.m: For compatibility with Matlab, |
|
4326 return "." with extension. |
|
4327 |
4422
|
4328 2003-06-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4329 |
|
4330 * control/base/__stepimp__.m, control/base/nichols.m, |
|
4331 control/base/nyquist.m, miscellaneous/dump_prefs.m, |
|
4332 plot/bottom_title.m, plot/mplot.m, plot/multiplot.m, |
|
4333 plot/oneplot.m, plot/plot_border.m, plot/subplot.m, |
|
4334 plot/subwindow.m, plot/top_title.m, signal/freqz_plot.m: |
|
4335 Eliminate gnuplot_has_multiplot (assume it is always true). |
|
4336 |
4413
|
4337 2003-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4338 |
|
4339 * Makefile.in, image/Makefile.in, startup/Makefile.in: Handle DESTDIR. |
|
4340 |
5095
|
4341 2003-05-05 Andy Adler <adler@site.uottawa.ca> |
4407
|
4342 |
|
4343 * plot/hist.m: Improve performance by using different algorithms |
|
4344 depending on number of bins. |
|
4345 |
4404
|
4346 2003-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4347 |
|
4348 * control/system/sysadd.m: If systems are not "tf", convert before |
|
4349 adding. |
|
4350 |
5095
|
4351 2003-05-01 Paul Kienzle <pkienzle@users.sf.net> |
4403
|
4352 |
|
4353 * image/imagesc.m: Accept data limits parameter for colormap. |
|
4354 |
5095
|
4355 2003-04-11 Doug Stewart <dastew@sympatico.ca> |
4375
|
4356 |
|
4357 * control/base/__stepimp__.m: If digital impulse, reduce gain of |
|
4358 the impulse by t_step. |
|
4359 |
4373
|
4360 2003-04-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4361 |
|
4362 * control/base/__bodquist__.m: Don't convert pdbig and fdbig to |
|
4363 column vectors. |
|
4364 |
5095
|
4365 2003-03-24 Quentin Spencer <qspencer@ieee.org> |
4371
|
4366 |
|
4367 * linear-algebra/null.m: Handle empty matrix arg. |
|
4368 |
4369
|
4369 2003-03-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4370 |
|
4371 * general/shift.m: Force empty_list_elements_ok to 1. |
|
4372 |
4358
|
4373 2003-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4374 |
|
4375 * deprecated/struct_contains.m, deprecated/struct_elements.m: |
|
4376 New files. |
|
4377 |
4348
|
4378 2003-02-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4379 |
|
4380 * statistics/tests/kolmogorov_smirnov_test.m: Use str2func to make |
|
4381 function handle to pass to feval. |
|
4382 * statistics/base/qqplot.m: Likewise. |
|
4383 * statistics/base/ppplot.m: Likewise. |
|
4384 * signal/spectral_xdf.m: Likewise. |
|
4385 * signal/spectral_adf.m: Likewise. |
|
4386 |
4340
|
4387 2003-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4388 |
|
4389 * plot/axis.m: Avoid whitespace in literal matrix problem. |
|
4390 |
4334
|
4391 2003-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4392 |
|
4393 * linear-algebra/logm.m: New file. |
|
4394 |
5095
|
4395 2003-02-18 David Bateman <dbateman@free.fr> |
4329
|
4396 |
|
4397 * mkpkgadd: Scan C++ files as well |
|
4398 |
5095
|
4399 2003-02-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4321
|
4400 |
|
4401 * strings/findstr.m: Return empty set for zero-length target. |
|
4402 |
5095
|
4403 2003-02-11 Paul Kienzle <pkienzle@users.sf.net> |
4317
|
4404 |
|
4405 * set/union.m: Preserve the orientation of inputs. |
|
4406 |
4305
|
4407 2003-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4408 |
|
4409 * general/int2str.m: Eliminate leading spaces. |
|
4410 |
4303
|
4411 2003-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4412 |
|
4413 * general/int2str.m: Do a better job with 0, Inf, and NaN, |
|
4414 |
5095
|
4415 2003-01-11 Paul Kienzle <pkienzle@users.sf.net> |
4298
|
4416 |
|
4417 * Makefile.in (gethelp$(BUILD_EXEEXT)): Pass $(BUILD_CXXFLAGS) and |
|
4418 $(BUILD_LDFLAGS) to compiler. |
|
4419 |
4295
|
4420 2003-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4421 |
|
4422 * general/num2str.m: Don't specify field width for scalars. |
|
4423 |
4292
|
4424 2003-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4425 |
|
4426 * Makefile.in (DISTFILES): Don't forget mkpkgadd. |
|
4427 |
4265
|
4428 2003-01-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4429 |
4279
|
4430 * gethelp.cc: Define __USE_STD_IOSTREAM if using Compaq C++. |
|
4431 |
4266
|
4432 * miscellaneous/tempname.m: New file. |
|
4433 |
|
4434 * miscellaneous/tempdir.m: New file. |
|
4435 |
4265
|
4436 * miscellaneous/fullfile.m: New file. |
|
4437 |
4259
|
4438 2003-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4439 |
4264
|
4440 * miscellaneous/fileparts.m: New file. |
|
4441 |
|
4442 * io/beep.m: New file. |
|
4443 |
4260
|
4444 * plot/__pltopt1__.m: Call undo_string_escapes for title part of |
|
4445 format only. |
4259
|
4446 |
4257
|
4447 2003-01-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4448 |
|
4449 * strings/strcmp.m: Handle cell arrays of strings. |
|
4450 |
4229
|
4451 2002-12-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4452 |
|
4453 * general/int2str.m: Handle matrices. |
|
4454 * general/num2str.m: Likewise. |
|
4455 Also handle optional precision, and format args. |
|
4456 |
4225
|
4457 2002-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4458 |
|
4459 * audio/Makefile.in, control/base/Makefile.in, |
|
4460 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
4461 control/system/Makefile.in, elfun/Makefile.in, |
|
4462 finance/Makefile.in, general/Makefile.in, image/Makefile.in, |
|
4463 io/Makefile.in, linear-algebra/Makefile.in, |
|
4464 miscellaneous/Makefile.in, polynomial/Makefile.in, |
|
4465 quaternion/Makefile.in, set/Makefile.in, signal/Makefile.in, |
|
4466 specfun/Makefile.in, special-matrix/Makefile.in, |
|
4467 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
4468 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
4469 strings/Makefile.in, time/Makefile.in, plot/Makefile.in, |
|
4470 deprecated/Makefile.in: Use new do-script-install and |
|
4471 do-script-uninstall macros. |
|
4472 |
|
4473 * mkpkgadd: New script. |
|
4474 |
|
4475 * plot/close.m: New file. |
|
4476 |
4184
|
4477 2002-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4478 |
|
4479 * image/image.m: Use -raw option for xv. |
|
4480 From Remy Bruno <remy.bruno@libertysurf.fr> |
|
4481 |
4172
|
4482 2002-11-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4483 |
4174
|
4484 * control/base/lsim.m: Use approximate test for step size change. |
|
4485 |
4172
|
4486 * signal/bartlett.m: Avoid row/column mismatch error. |
|
4487 |
5095
|
4488 2002-11-12 Paul Kienzle <pkienzle@users.sf.net> |
4171
|
4489 |
|
4490 * statistics/base/var.m: Use better formula for improved accuracy. |
|
4491 |
5095
|
4492 2002-11-04 Nicholas Piper <nick-octave@nickpiper.co.uk> |
4150
|
4493 |
|
4494 * control/base/lsim.m: Correct doc string. |
|
4495 |
5095
|
4496 2002-11-04 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
4150
|
4497 |
|
4498 * control/system/syssub.m: Call tf2sys with Gnum-Hnum, not Gnum+Hnum. |
|
4499 |
4148
|
4500 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4501 |
|
4502 * plot/contour.m: Handle x and y as matrices too. |
|
4503 |
5095
|
4504 2002-11-01 Joseph P. Skudlarek <jskud@jskud.com> |
4148
|
4505 |
|
4506 * plot/contour.m: Fix error and usage messages. |
|
4507 |
4146
|
4508 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4509 |
|
4510 * plot/contour.m: Correct orientation of plot. |
|
4511 |
4139
|
4512 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4513 |
|
4514 * control/base/analdemo.m: Fix typo. |
|
4515 |
5095
|
4516 2002-10-31 Francesco Potorti` <pot@gnu.org> |
4137
|
4517 |
|
4518 * statistics/distributions/discrete_pdf.m: Fix typo. |
|
4519 |
4098
|
4520 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4521 |
|
4522 * mkdoc: Exit immediately on errors. |
|
4523 Exit with error if gethelp does not exist. |
|
4524 |
|
4525 * Makefile.in: Use $(BUILD_EXEEXT) as appropriate. |
|
4526 |
4093
|
4527 2002-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4528 |
|
4529 * Makefile.in (gethelp): Use $(BUILD_CXX), not $(CXX). |
|
4530 |
5095
|
4531 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4079
|
4532 |
|
4533 * statistics/distributions/normal_cdf.m: Handle variance == 0. |
|
4534 * statistics/distributions/normal_pdf.m: Likewise. |
|
4535 * statistics/distributions/normal_inv.m: Likewise. |
|
4536 |
5095
|
4537 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4077
|
4538 |
|
4539 * specfun/erfinv.m: Return NaN for NaN inputs. |
|
4540 |
5095
|
4541 2002-09-26 Jeff Cunningham <jeffrey@cunningham.net> |
4068
|
4542 |
|
4543 * statistics/base/var.m: Handle complex values. |
|
4544 |
4031
|
4545 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4546 |
|
4547 * configure.in (AC_CONFIG_FILES): Add deprecated/Makefile to the |
|
4548 list. |
|
4549 * deprecated/Makefile.in: New file. |
|
4550 |
5095
|
4551 2002-08-09 Paul Kienzle <pkienzle@users.sf.net> |
4031
|
4552 |
|
4553 * statistics/distributions/beta_cdf.m: Replace betai with betainc. |
|
4554 * statistics/distributions/binomial_cdf.m: Likewise. |
|
4555 * statistics/distributions/f_cdf.m: Likewise. |
|
4556 * statistics/distributions/t_cdf.m: Likewise. |
|
4557 |
|
4558 * miscellaneous/bincoeff.m: Replace lgamma with gammaln. |
|
4559 * specfun/beta.m: Likewise. |
|
4560 * special-matrix/invhilb.m: Likewise (but it is only in a comment). |
|
4561 * statistics/distributions/gamma_pdf.m: Likewise. |
|
4562 * statistics/distributions/poisson_pdf.m: Likewise. |
|
4563 |
|
4564 * statistics/distributions/gamma_cdf.m: replace gammai with gammainc |
|
4565 * statistics/distributions/poisson_cdf.m: Likewise. |
|
4566 |
4026
|
4567 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4568 |
4028
|
4569 * deprecated/is_bool.m: New file. |
|
4570 * deprecated/is_complex.m: New file. |
|
4571 * deprecated/is_global.m: New file. |
|
4572 * deprecated/is_list.m: New file. |
|
4573 * deprecated/is_matrix.m: New file. |
|
4574 * deprecated/is_scalar.m: New file. |
|
4575 * deprecated/is_square.m: New file. |
|
4576 * deprecated/is_stream.m: New file. |
|
4577 * deprecated/is_struct.m: New file. |
|
4578 * deprecated/is_symmetric.m: New file. |
|
4579 * deprecated/is_vector.m: New file. |
4030
|
4580 * Change all callers of these functions to use the new names. |
4028
|
4581 |
4029
|
4582 * deprecated: New directory. |
|
4583 * Makefile.in (SUBDIRS): Add it to the list. |
|
4584 |
4026
|
4585 * general/isscalar.m: Rename from is_scalar.m. |
|
4586 * general/issquare.m: Rename from is_square.m. |
|
4587 * general/issymmetric.m: Rename from is_symmetric.m. |
|
4588 * general/isvector.m: Rename from is_vector.m. |
|
4589 |
4022
|
4590 2002-08-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4591 |
|
4592 * statistics/base/mean.m: Allow empty matrices. |
|
4593 Handle DIM arg. |
|
4594 |
5095
|
4595 2002-08-05 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4020
|
4596 |
|
4597 * plot/__errcomm__.m: If format is not specified, default to error |
|
4598 bar format. |
|
4599 |
4011
|
4600 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4601 |
|
4602 * miscellaneous/popen2.m: Use F_SETFL and O_NONBLOCK, not |
|
4603 __F_SETFL__ and __O_NONBLOCK__. |
|
4604 |
|
4605 * image/saveimage.m: Use OCTAVE_VERSION, not __OCTAVE_VERSION__. |
|
4606 * miscellaneous/bug_report.m: Likewise. |
|
4607 |
4007
|
4608 2002-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4609 |
4008
|
4610 * general/mod.m: Use isreal (x), not any (any (imag (x))). |
|
4611 * general/rem.m: Likewise. |
|
4612 |
|
4613 * plot/loglogerr.m: Use varargin instead of old style varargs. |
|
4614 * plot/semilogxerr.m: Likewise. |
4007
|
4615 * plot/semilogyerr.m: Likewise. |
|
4616 |
5095
|
4617 2002-07-25 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4006
|
4618 |
|
4619 * plot/__errcomm__.m: New file. Common functionality for error plots. |
|
4620 * plot/loglogerr.m: New file. Double logarithm plots with errorbars. |
|
4621 * plot/semilogxerr.m: New file. Semilogarithm plots with errorbars. |
|
4622 * plot/semilogyerr.m: New file. Semilogarithm plots with errorbars |
|
4623 |
|
4624 * plot/errorbar.m: Use __errcomm__.m. |
|
4625 * plot/__errplot__.m: Minor cleanups. |
|
4626 * plot/__pltopt__.m: Handle boxxyerrorbars plot style. |
|
4627 * plot/__pltopt1__.m: Likewise. |
|
4628 |
3980
|
4629 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4630 |
3981
|
4631 * general/rem.m: Delete redundant call to usage. |
|
4632 |
3980
|
4633 * general/mod.m: Additional error checks, Texinfoize doc string. |
|
4634 |
5095
|
4635 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3980
|
4636 |
|
4637 * general/mod.m: New function. |
|
4638 |
3979
|
4639 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4640 |
|
4641 * control/system/sysmult.m: Use varargin instead of old style varargs. |
|
4642 * control/system/sysadd.m: Likewise. |
|
4643 * control/system/sysgroup.m: Likewise. |
|
4644 * control/system/syssub.m: Likewise. |
|
4645 * elfun/gcd.m: Likewise. |
|
4646 * elfun/lcm.m: Likewise. |
|
4647 * general/common_size.m: Likewise. |
|
4648 * io/printf.m: Likewise. |
|
4649 * miscellaneous/menu.m: Likewise. |
|
4650 * miscellaneous/path.m: Likewise. |
|
4651 * plot/__errplot__.m: Likewise. |
|
4652 * plot/__plt__.m: Likewise. |
|
4653 * plot/axis.m: Likewise. |
|
4654 * plot/errorbar.m: Likewise. |
|
4655 * plot/mplot.m: Likewise. |
|
4656 * plot/loglog.m: Likewise. |
|
4657 * plot/plot.m: Likewise. |
|
4658 * plot/plot_border.m: Likewise. |
|
4659 * plot/semilogx.m: Likewise. |
|
4660 * plot/semilogy.m: Likewise. |
|
4661 * plot/xlabel.m: Likewise. |
|
4662 * plot/ylabel.m: Likewise. |
|
4663 * plot/zlabel.m: Likewise. |
|
4664 * statistics/base/ppplot.m: Likewise. |
|
4665 * statistics/base/qqplot.m: Likewise. |
|
4666 * statistics/tests/bartlett_test.m: Likewise. |
|
4667 * statistics/tests/kolmogorov_smirnov_test.m: Likewise. |
|
4668 * statistics/tests/kruskal_wallis_test.m: Likewise. |
|
4669 * strings/str2mat.m: Likewise. |
|
4670 * strings/strcat.m: Likewise. |
|
4671 |
5095
|
4672 2002-06-27 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
3962
|
4673 |
|
4674 * statistics/distributions/gamma_pdf.m: Avoid overflow in more cases. |
|
4675 |
3924
|
4676 2002-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4677 |
|
4678 * skip-autoheader: New file, for autogen.sh. |
3925
|
4679 * Makefile.in (DISTFILES): Add it to the list. |
3924
|
4680 |
5095
|
4681 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3914
|
4682 |
|
4683 * general/repmat.m: New function. |
|
4684 |
5095
|
4685 2002-04-25 Paul Kienzle <pkienzle@users.sf.net> |
3911
|
4686 |
|
4687 * audio/lin2mu.m: Accept matrices and [-1,1] normalized audio. |
|
4688 Use optional parameter to specify the number of bits in the input. |
|
4689 * audio/mu2lin.m: Accept matrices, return n-bit integers or |
|
4690 floats in the range [-1,1], 2x speedup. |
|
4691 |
|
4692 * strings/index.m, strings/rindex.m: Vectorize for speed. |
|
4693 |
3910
|
4694 2002-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4695 |
|
4696 * linear-algebra/kron.m: Delete. |
|
4697 |
5095
|
4698 2002-04-24 Paul Kienzle <pkienzle@users.sf.net> |
3907
|
4699 |
|
4700 * signal/freqz.m: If nargout is zero, plot results instead of |
|
4701 returning them. |
|
4702 * signal/freqz_plot.m: New file. |
|
4703 |
5095
|
4704 2002-04-24 Bill Lash <lash@tellabs.com> |
3906
|
4705 |
5378
|
4706 * signal/unwrap.m: New file. |
3906
|
4707 |
5095
|
4708 2002-04-23 Paul Kienzle <pkienzle@users.sf.net> |
3904
|
4709 |
|
4710 * image/rgb2hsv.m: Faster, more accurate, remove the |
|
4711 divide by zero warning. |
|
4712 |
5095
|
4713 2002-04-09 Paul Kienzle <pkienzle@users.sf.net> |
3893
|
4714 |
3894
|
4715 * strings/deblank.m: Trim \0 as well as blank. |
|
4716 |
5378
|
4717 * freqz.m: Evaluate a specific range of frequencies |
3893
|
4718 expressed in radians or Hz relative to a supplied sample rate. |
|
4719 |
5095
|
4720 2002-04-04 Paul Kienzle <pkienzle@users.sf.net> |
3890
|
4721 |
|
4722 * signal/fftfilt.m: Filter columns if called with a matrix. |
|
4723 |
3891
|
4724 * strings/findstr.m: Vectorize as much as possible. |
|
4725 |
5095
|
4726 2002-04-04 Dirk Laurie <dirk@calvyn.puk.ac.za> |
3889
|
4727 |
|
4728 * special-matrix/invhilb.m: New version that is faster and more |
|
4729 accurate. |
|
4730 |
5095
|
4731 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
3887
|
4732 |
|
4733 * configure.in: Update for autoconf 2.5x. |
|
4734 |
5095
|
4735 2002-04-03 Paul Kienzle <pkienzle@users.sf.net> |
3885
|
4736 |
|
4737 * special-matrix/vander.m: Code tidy and vectorize. |
|
4738 |
5095
|
4739 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
3882
|
4740 |
3883
|
4741 * linear-algebra/cross.m: Accept nx3 and 3xn matrices, in addition |
|
4742 to vectors. Issue a warning in the case x matches y' but return a |
|
4743 column vector as Octave currently does. |
|
4744 |
3882
|
4745 * plot/contour.m: Set default number of levels for contour(x,y,z). |
|
4746 |
|
4747 * control/system/starp.m: Leave more of the documentation |
|
4748 processing to texinfo and less to the @format block. |
|
4749 |
|
4750 * image/imagesc.m: Only display image if no output is requested. |
|
4751 Code tidying. |
|
4752 |
3876
|
4753 2002-03-07 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
4754 |
|
4755 * statistics/base/center.m: Accept and return empty matrix. |
|
4756 |
3872
|
4757 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4758 |
|
4759 * specfun/erfinv.m: Fix usage message. |
|
4760 |
3869
|
4761 2002-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4762 |
|
4763 * elfun/coth.m: Use 1 ./ tanh(z) instead of cosh(z) ./ sinh(z). |
|
4764 From "Michael O'Brien" <mobrien@kento.unm.edu>. |
|
4765 |
3837
|
4766 2001-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4767 |
|
4768 * statistics/distributions/discrete_cdf.m: Downcase incorrectly |
|
4769 capitalized variable names. |
|
4770 |
3836
|
4771 2001-05-30 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
|
4772 |
|
4773 * m/image/saveimage.m: fix saving an image to Postscript format. |
|
4774 |
5095
|
4775 2001-04-18 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3814
|
4776 |
|
4777 * control/system/is_stabilizable.m: Pass a to sys2ss, not sys. |
|
4778 |
3803
|
4779 2001-02-28 Kai Habel <kai.habel@gmx.de> |
|
4780 |
3833
|
4781 * general/cart2pol.m: New file. |
|
4782 * general/pol2cart.m: New file. |
|
4783 * general/cart2sph.m: New file. |
|
4784 * general/sph2cart.m: New file. |
|
4785 * image/rgb2hsv.m: New file. |
|
4786 * image/hsv2rgb.m: New file. |
3803
|
4787 |
|
4788 2001-02-26 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
4789 |
|
4790 * plot/meshgrid.m: Avoid for loops. |
|
4791 * plot/meshdom.m: Likewise. |
|
4792 |
3801
|
4793 2001-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4794 |
|
4795 * linear-algebra/norm.m: Use sqrt instead of ^0.5. |
|
4796 |
|
4797 2001-02-22 Heinz Bauschke <bauschke@cecm.sfu.ca> |
|
4798 |
|
4799 * linear-algebra/norm.m: Use more efficient method for Frobenius |
|
4800 norm. |
|
4801 |
3792
|
4802 2001-02-09 David Livings <david.livings@asa.co.uk> |
|
4803 |
|
4804 * statistics/tests/welch_test.m: Fix typo. |
|
4805 |
|
4806 * statistics/distributions/chisquare_cdf.m: |
|
4807 Don't restrict inputs to be only positive integers. |
|
4808 * statistics/distributions/chisquare_inv.m: Likewise. |
|
4809 * statistics/distributions/chisquare_pdf.m: Likewise. |
|
4810 * statistics/distributions/chisquare_rnd.m: Likewise. |
|
4811 * statistics/distributions/f_cdf.m: Likewise. |
|
4812 * statistics/distributions/f_inv.m: Likewise. |
|
4813 * statistics/distributions/f_pdf.m: Likewise. |
|
4814 * statistics/distributions/f_rnd.m: Likewise. |
|
4815 * statistics/distributions/t_cdf.m: Likewise. |
|
4816 * statistics/distributions/t_inv.m: Likewise. |
|
4817 * statistics/distributions/t_pdf.m: Likewise. |
|
4818 * statistics/distributions/t_rnd.m: Likewise. |
|
4819 |
3790
|
4820 2001-02-08 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
4821 |
|
4822 * strings/dec2base.m: New file. |
|
4823 * strings/base2dec.m: New file. |
|
4824 * strings/strjust.m: New file. |
|
4825 * strings/dec2hex.m: Replace with version that just calls 2dec2base. |
|
4826 * strings/dec2bin.m: Likewise. |
|
4827 * strings/hex2dec.m: Replace with version that just calls base2dec. |
|
4828 * strings/bin2dec.m: Likewise. |
|
4829 |
5095
|
4830 2001-02-07 David Livings <david.livings@asa.co.uk> |
3787
|
4831 |
|
4832 * statistics/base/ppplot.m: Use gset, not set. |
|
4833 * statistics/base/qqplot.m: Likewise. |
|
4834 |
5095
|
4835 2001-02-05 Ondrej Popp <ondrej@geocities.com> |
3775
|
4836 |
|
4837 * control/system/c2d.m: Add missing endif. |
|
4838 |
3759
|
4839 2000-12-15 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
4840 |
|
4841 * strings/index.m: Return 0 if either string is empty. |
|
4842 |
|
4843 2000-12-15 Ben Sapp <bsapp@lanl.gov> |
|
4844 |
|
4845 * control/system/c2d.m: Allow option of matched pole/zero |
|
4846 equivalent for conversion. |
|
4847 |
|
4848 2000-12-15 Matthew W. Roberts <matt@lehi.tamu.edu> |
|
4849 |
|
4850 * strings/findstr.m: Return empty matrix if search string is empty. |
|
4851 |
3757
|
4852 2000-12-15 Kai Habel <kai.habel@gmx.de> |
|
4853 |
|
4854 * saveimage.m: Do create rawbit image for black and white images, |
|
4855 but do it correctly. |
|
4856 |
3754
|
4857 2000-12-13 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
4858 |
|
4859 * polynomial/deconv.m: For compatibility with Matlab, don't reduce |
|
4860 result polynomials. |
|
4861 |
3748
|
4862 2000-12-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4863 |
|
4864 * image/saveimage.m: Don't try to create rawbit image. |
|
4865 |
3740
|
4866 2000-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4867 |
|
4868 * Makefile.in (bin-dist): Pass -C to $(MAKE), not -c. |
|
4869 |
5095
|
4870 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3737
|
4871 |
|
4872 * plot/contour.m: Reorder args for Matlab compatibility. |
|
4873 |
3727
|
4874 2000-10-27 Mats Jansson <mats.e.jansson@home.se> |
|
4875 |
|
4876 * set/create_set.m: Avoid empty matrix in matrix list warning. |
|
4877 |
3717
|
4878 2000-09-08 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
4879 |
3718
|
4880 * plot/errorbar.m, plot/__errplot__.m: New functions. |
|
4881 |
3717
|
4882 * plot/mesh.m: Also set nologscale before plotting. |
|
4883 * plot/__pltopt1__.m: Handle xerrorbars, yerrorbars, and |
|
4884 xyerrorbars instead of just errorbars. |
|
4885 |
3714
|
4886 2000-08-25 Thomas Walter <walter@pctc.chemie.uni-erlangen.de> |
|
4887 |
|
4888 * image/image.m: Try display (from ImageMagick) first. |
|
4889 |
3709
|
4890 2000-08-01 Rolf Fabian <fabian@tu-cottbus.de> |
|
4891 |
|
4892 * plot/meshgrid.m: Use transpose to reorient vectors, not complex |
|
4893 conjugate transpose. |
|
4894 |
3705
|
4895 2000-07-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4896 |
|
4897 * strings/str2mat.m: Apply setstr to each argument. |
|
4898 |
3696
|
4899 2000-07-17 Gabriele Pannocchia <pannocchia@ing.unipi.it> |
|
4900 |
|
4901 * control/base/dkalman.m: New file. |
|
4902 * control/base/dlqe.m: Handle singular A matrix. |
|
4903 * control/base/dlqr.m: Likewise. |
|
4904 |
3695
|
4905 2000-07-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4906 |
|
4907 * strings/strcmp.m: Return 0 instead of an error if row and column |
|
4908 dimensions don't match. |
|
4909 |
3690
|
4910 2000-06-30 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
|
4911 |
|
4912 * plot/hist.m: Allow 3 argument form to work. |
|
4913 |
5095
|
4914 2000-06-27 Matthew W. Roberts <matt@lehi.tamu.edu> |
3683
|
4915 |
|
4916 * plot/plot.m: Add examples in doc string. |
|
4917 |
5095
|
4918 2000-06-08 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3679
|
4919 |
|
4920 * control/base/__stepimp__.m: Reset multiplot state when done. |
|
4921 Do the right thing even if automatic_replot is not zero. |
|
4922 Avoid failure if system has pure imaginary poles. |
|
4923 |
3674
|
4924 2000-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4925 |
|
4926 * general/logical.m: Return arg if it is empty. Better error |
|
4927 message for non-numeric types. |
|
4928 |
5095
|
4929 2000-05-31 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3672
|
4930 |
|
4931 * control/base/dlqe.m: Update documentation. Fix typo. Warn |
|
4932 about difference with Matlab dlqe function. |
|
4933 |
|
4934 * control/system/sysmult.m: Fix typo in argument dimensions checking. |
|
4935 |
5095
|
4936 2000-05-24 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3670
|
4937 |
|
4938 * strings/strrep.m: Fix typo. |
|
4939 |
3666
|
4940 2000-05-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4941 |
|
4942 * strings/strrep.m: Don't transpose result for case of jump > 0. |
|
4943 |
5095
|
4944 2000-05-13 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3666
|
4945 |
|
4946 * strings/strrep.m: Avoid for loop for speed. |
3667
|
4947 * plot/axis.m: Handle string options for Matlab compatibility. |
3666
|
4948 |
5095
|
4949 2000-04-04 John Smith <john@arrows.demon.co.uk> |
3656
|
4950 |
|
4951 * statistics/distributions/beta_inv.m: Provide better(?) initial |
|
4952 guess for iteration. |
|
4953 |
3651
|
4954 2000-03-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
4955 |
|
4956 * image/image.m: Allow image (A) or image (x, y, A). |
|
4957 * image/imagesc.m: Likewise. |
|
4958 |
|
4959 * image/image.m: If zoom is not supplied, or if it is an empty |
|
4960 matrix, autoscale the image. |
|
4961 |
3618
|
4962 2000-03-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4963 |
3619
|
4964 * plot/title.m, plot/bottom_title.m, plot/top_title.m: |
|
4965 Undo string escapes in text twice(!) before sending to gnuplot. |
|
4966 |
3618
|
4967 * image/saveimage.m: Add comment to file saying who created it and |
|
4968 when it was created. Suggested by Stephen Eglen |
|
4969 <stephen@cogsci.ed.ac.uk>. |
|
4970 |
5095
|
4971 2000-03-21 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3617
|
4972 |
|
4973 * polynomial/polyreduce.m: Simplify by looking for the first |
|
4974 non-zero element rather than the last of the first set of zero |
|
4975 elements. |
|
4976 |
|
4977 * plot/__pltopt1__.m: Accept "--", "-.", and ":" line styles. |
|
4978 |
5095
|
4979 2000-03-21 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
3616
|
4980 |
|
4981 * image/saveimage.m: Swap black and white colormaps so zero is |
|
4982 displayed as black and 1 is displayed as white. |
|
4983 Fix indexing bug in ppm case. |
|
4984 |
3604
|
4985 2000-03-06 Stephen Eglen <stephen@anc.ed.ac.uk> |
|
4986 |
|
4987 * statistics/tests/kolmogorov_smirnov_test_2.m: Account for ties |
|
4988 between the two distributions (took same approach as ks.test() in R.) |
|
4989 |
3603
|
4990 2000-02-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4991 |
|
4992 * control/base/bode.m: Temporarily disable automatic_replot. |
|
4993 |
3599
|
4994 2000-02-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
4995 |
3601
|
4996 * Makefile.in (clean): Also remove gethelp. |
|
4997 |
3599
|
4998 * specfun/erfinv.m: Use z_new in convergence test, not z_old. |
|
4999 |
5095
|
5000 2000-02-11 Georg Thimm <mgeorg@SGraphicsWS1.mpe.ntu.edu.sg> |
3597
|
5001 |
|
5002 * set/create_set.m: Use find to avoid while loop. |
|
5003 |
5095
|
5004 2000-02-11 Stephen Eglen <stephen@cogsci.ed.ac.uk> |
3597
|
5005 |
|
5006 * plot/hist.m: New optional third argument. |
|
5007 |
|
5008 2000-02-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5009 |
|
5010 * miscellaneous/bug_report.m: Use octave-bug script with version |
|
5011 number appended. |
|
5012 |
3575
|
5013 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5014 |
|
5015 * gethelp.cc: Sprinkle with std:: qualifier. |
|
5016 |
3498
|
5017 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5018 |
|
5019 * image/saveimage.m: Delete some debugging code. |
|
5020 |
3486
|
5021 2000-01-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5022 |
|
5023 * signal/sinc.m: Avoid reshaping. |
|
5024 |
|
5025 * image/rgb2ind.m: No longer needs to reset do_fortran_indexing. |
|
5026 * image/ind2rgb.m: Ditto. |
|
5027 * image/ind2gray.m: Ditto. |
|
5028 * general/reshape.m: Ditto. Also no longer needs to reset |
|
5029 implicit_str_to_num_ok. |
|
5030 |
3483
|
5031 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5032 |
|
5033 * miscellaneous/popen2.m: Deal with the fact that pipe now returns |
|
5034 a list of file structures, not a vector of numeric file ids. |
|
5035 |
3474
|
5036 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5037 |
3476
|
5038 * plot/__axis_label__.m: New function. |
|
5039 Undo string escapes in text twice(!) before sending to gnuplot. |
|
5040 * plot/xlabel.m: Use it. |
|
5041 * plot/ylabel.m: Ditto. |
|
5042 * plot/zlabel.m: Ditto. |
|
5043 |
3474
|
5044 * plot/mesh.m: Fix error message to reflect reality. |
|
5045 |
5095
|
5046 2000-01-24 Cyril Humbert <humbert@phobos.univ-mlv.fr> |
3473
|
5047 |
|
5048 * statistics/distributions/weibull_pdf.m: Use correct formula. |
|
5049 |
5095
|
5050 2000-01-22 Michael Reifenberger <mike@Plaut.de> |
3471
|
5051 |
|
5052 * audio/saveaudio.m: Also accept files with .ul extension. |
|
5053 * audio/loadaudio.m: Ditto. |
|
5054 * audio/playaudio.m: Ditto. |
|
5055 |
3456
|
5056 2000-01-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5057 |
|
5058 * statistics/distributions/beta_cdf.m: Texinfoize doc string. |
|
5059 * statistics/distributions/beta_inv.m: Ditto. |
|
5060 * statistics/distributions/beta_pdf.m: Ditto. |
|
5061 * statistics/distributions/beta_rnd.m: Ditto. |
|
5062 * statistics/distributions/binomial_cdf.m: Ditto. |
|
5063 * statistics/distributions/binomial_inv.m: Ditto. |
|
5064 * statistics/distributions/binomial_pdf.m: Ditto. |
|
5065 * statistics/distributions/binomial_rnd.m: Ditto. |
|
5066 * statistics/distributions/cauchy_cdf.m: Ditto. |
|
5067 * statistics/distributions/cauchy_inv.m: Ditto. |
|
5068 * statistics/distributions/cauchy_pdf.m: Ditto. |
|
5069 * statistics/distributions/cauchy_rnd.m: Ditto. |
|
5070 * statistics/distributions/chisquare_cdf.m: Ditto. |
|
5071 * statistics/distributions/chisquare_inv.m: Ditto. |
|
5072 * statistics/distributions/chisquare_pdf.m: Ditto. |
|
5073 * statistics/distributions/chisquare_rnd.m: Ditto. |
|
5074 * statistics/distributions/discrete_cdf.m: Ditto. |
|
5075 * statistics/distributions/discrete_inv.m: Ditto. |
|
5076 * statistics/distributions/discrete_pdf.m: Ditto. |
|
5077 * statistics/distributions/discrete_rnd.m: Ditto. |
|
5078 * statistics/distributions/empirical_cdf.m: Ditto. |
|
5079 * statistics/distributions/empirical_inv.m: Ditto. |
|
5080 * statistics/distributions/empirical_pdf.m: Ditto. |
|
5081 * statistics/distributions/empirical_rnd.m: Ditto. |
|
5082 * statistics/distributions/exponential_cdf.m: Ditto. |
|
5083 * statistics/distributions/exponential_inv.m: Ditto. |
|
5084 * statistics/distributions/exponential_pdf.m: Ditto. |
|
5085 * statistics/distributions/exponential_rnd.m: Ditto. |
|
5086 * statistics/distributions/f_cdf.m: Ditto. |
|
5087 * statistics/distributions/f_inv.m: Ditto. |
|
5088 * statistics/distributions/f_pdf.m: Ditto. |
|
5089 * statistics/distributions/f_rnd.m: Ditto. |
|
5090 * statistics/distributions/gamma_cdf.m: Ditto. |
|
5091 * statistics/distributions/gamma_inv.m: Ditto. |
|
5092 * statistics/distributions/gamma_pdf.m: Ditto. |
|
5093 * statistics/distributions/gamma_rnd.m: Ditto. |
|
5094 * statistics/distributions/geometric_cdf.m: Ditto. |
|
5095 * statistics/distributions/geometric_inv.m: Ditto. |
|
5096 * statistics/distributions/geometric_pdf.m: Ditto. |
|
5097 * statistics/distributions/geometric_rnd.m: Ditto. |
|
5098 * statistics/distributions/hypergeometric_cdf.m: Ditto. |
|
5099 * statistics/distributions/hypergeometric_inv.m: Ditto. |
|
5100 * statistics/distributions/hypergeometric_pdf.m: Ditto. |
|
5101 * statistics/distributions/hypergeometric_rnd.m: Ditto. |
|
5102 * statistics/distributions/kolmogorov_smirnov_cdf.m: Ditto. |
|
5103 * statistics/distributions/laplace_cdf.m: Ditto. |
|
5104 * statistics/distributions/laplace_inv.m: Ditto. |
|
5105 * statistics/distributions/laplace_pdf.m: Ditto. |
|
5106 * statistics/distributions/laplace_rnd.m: Ditto. |
|
5107 * statistics/distributions/logistic_cdf.m: Ditto. |
|
5108 * statistics/distributions/logistic_inv.m: Ditto. |
|
5109 * statistics/distributions/logistic_pdf.m: Ditto. |
|
5110 * statistics/distributions/logistic_rnd.m: Ditto. |
|
5111 * statistics/distributions/lognormal_cdf.m: Ditto. |
|
5112 * statistics/distributions/lognormal_inv.m: Ditto. |
|
5113 * statistics/distributions/lognormal_pdf.m: Ditto. |
|
5114 * statistics/distributions/lognormal_rnd.m: Ditto. |
|
5115 * statistics/distributions/normal_cdf.m: Ditto. |
|
5116 * statistics/distributions/normal_inv.m: Ditto. |
|
5117 * statistics/distributions/normal_pdf.m: Ditto. |
|
5118 * statistics/distributions/normal_rnd.m: Ditto. |
|
5119 * statistics/distributions/pascal_cdf.m: Ditto. |
|
5120 * statistics/distributions/pascal_inv.m: Ditto. |
|
5121 * statistics/distributions/pascal_pdf.m: Ditto. |
|
5122 * statistics/distributions/pascal_rnd.m: Ditto. |
|
5123 * statistics/distributions/poisson_cdf.m: Ditto. |
|
5124 * statistics/distributions/poisson_inv.m: Ditto. |
|
5125 * statistics/distributions/poisson_pdf.m: Ditto. |
|
5126 * statistics/distributions/poisson_rnd.m: Ditto. |
|
5127 * statistics/distributions/stdnormal_cdf.m: Ditto. |
|
5128 * statistics/distributions/stdnormal_inv.m: Ditto. |
|
5129 * statistics/distributions/stdnormal_pdf.m: Ditto. |
|
5130 * statistics/distributions/stdnormal_rnd.m: Ditto. |
|
5131 * statistics/distributions/t_cdf.m: Ditto. |
|
5132 * statistics/distributions/t_inv.m: Ditto. |
|
5133 * statistics/distributions/t_pdf.m: Ditto. |
|
5134 * statistics/distributions/t_rnd.m: Ditto. |
|
5135 * statistics/distributions/uniform_cdf.m: Ditto. |
|
5136 * statistics/distributions/uniform_inv.m: Ditto. |
|
5137 * statistics/distributions/uniform_pdf.m: Ditto. |
|
5138 * statistics/distributions/uniform_rnd.m: Ditto. |
|
5139 * statistics/distributions/weibull_cdf.m: Ditto. |
|
5140 * statistics/distributions/weibull_inv.m: Ditto. |
|
5141 * statistics/distributions/weibull_pdf.m: Ditto. |
|
5142 * statistics/distributions/weibull_rnd.m: Ditto. |
|
5143 * statistics/distributions/wiener_rnd.m: Ditto. |
|
5144 |
3453
|
5145 2000-01-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5146 |
|
5147 * statistics/base/values.m: Texinfoize doc string. |
|
5148 * statistics/base/var.m: Ditto. |
|
5149 * statistics/base/table.m: Ditto. |
|
5150 * statistics/base/studentize.m: Ditto. |
|
5151 * statistics/base/statistics.m: Ditto. |
|
5152 * statistics/base/spearman.m: Ditto. |
|
5153 * statistics/base/run_count.m: Ditto. |
|
5154 * statistics/base/ranks.m: Ditto. |
|
5155 * statistics/base/range.m: Ditto. |
|
5156 * statistics/base/qqplot.m: Ditto. |
|
5157 * statistics/base/probit.m: Ditto. |
|
5158 * statistics/base/ppplot.m: Ditto. |
|
5159 * statistics/base/moment.m: Ditto. |
|
5160 * statistics/base/meansq.m: Ditto. |
|
5161 * statistics/base/logit.m: Ditto. |
|
5162 * statistics/base/kendall.m: Ditto. |
|
5163 * statistics/base/iqr.m: Ditto. |
|
5164 * statistics/base/cut.m: Ditto. |
|
5165 * statistics/base/cor.m: Ditto. |
|
5166 * statistics/base/cloglog.m: Ditto. |
|
5167 * statistics/base/center.m: Ditto. |
3454
|
5168 * statistics/models/logistic_regression.m: Ditto. |
|
5169 * statistics/models/logistic_regression_derivative.m: Ditto. |
|
5170 * statistics/models/logistic_regression_likelihood.m: Ditto. |
|
5171 * statistics/tests/anova.m: Ditto. |
|
5172 * statistics/tests/bartlett_test.m: Ditto. |
|
5173 * statistics/tests/chisquare_test_homogeneity.m: Ditto. |
|
5174 * statistics/tests/chisquare_test_independence.m: Ditto. |
|
5175 * statistics/tests/cor_test.m: Ditto. |
|
5176 * statistics/tests/f_test_regression.m: Ditto. |
|
5177 * statistics/tests/hotelling_test.m: Ditto. |
|
5178 * statistics/tests/hotelling_test_2.m: Ditto. |
|
5179 * statistics/tests/kolmogorov_smirnov_test.m: Ditto. |
|
5180 * statistics/tests/kolmogorov_smirnov_test_2.m: Ditto. |
|
5181 * statistics/tests/kruskal_wallis_test.m: Ditto. |
|
5182 * statistics/tests/manova.m: Ditto. |
|
5183 * statistics/tests/mcnemar_test.m: Ditto. |
|
5184 * statistics/tests/prop_test_2.m: Ditto. |
|
5185 * statistics/tests/run_test.m: Ditto. |
|
5186 * statistics/tests/sign_test.m: Ditto. |
|
5187 * statistics/tests/t_test.m: Ditto. |
|
5188 * statistics/tests/t_test_2.m: Ditto. |
|
5189 * statistics/tests/t_test_regression.m: Ditto. |
|
5190 * statistics/tests/u_test.m: Ditto. |
|
5191 * statistics/tests/var_test.m: Ditto. |
|
5192 * statistics/tests/welch_test.m: Ditto. |
|
5193 * statistics/tests/wilcoxon_test.m: Ditto. |
|
5194 * statistics/tests/z_test.m: Ditto. |
|
5195 * statistics/tests/z_test_2.m: Ditto. |
3453
|
5196 |
3446
|
5197 2000-01-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5198 |
|
5199 * strings/bin2dec.m: Texinfoize doc string. |
3449
|
5200 * plot/__plr1__.m: Ditto. |
|
5201 * plot/__pltopt__.m: Ditto. |
|
5202 * plot/__plt__.m: Ditto. |
|
5203 * plot/__plt2vv__.m: Ditto. |
|
5204 * plot/__plr2__.m: Ditto. |
|
5205 * plot/__plr__.m: Ditto. |
|
5206 * plot/__plt1__.m: Ditto. |
|
5207 * plot/__plt2__.m: Ditto. |
|
5208 * plot/__plt2mm__.m: Ditto. |
|
5209 * plot/__plt2mv__.m: Ditto. |
|
5210 * plot/__plt2ss__.m: Ditto. |
|
5211 * miscellaneous/paren.m: Ditto. |
|
5212 * miscellaneous/comma.m: Ditto. |
|
5213 * miscellaneous/semicolon.m: Ditto. |
|
5214 * miscellaneous/path.m: Ditto. |
|
5215 * miscellaneous/list_primes.m: Ditto. |
|
5216 * miscellaneous/flops.m: Ditto. |
|
5217 * miscellaneous/dump_prefs.m: Ditto. |
|
5218 * miscellaneous/bug_report.m: Ditto. |
|
5219 * linear-algebra/dot.m: Ditto |
|
5220 * linear-algebra/dmult.m: Ditto. |
|
5221 * general/randperm.m: Ditto. |
|
5222 * general/logical.m: Ditto. |
|
5223 * general/is_duplicate_entry.m: Ditto. |
|
5224 * signal/arch_fit.m: Ditto. |
|
5225 * signal/arch_rnd.m: Ditto. |
|
5226 * signal/arch_test.m: Ditto. |
|
5227 * signal/arma_rnd.m: Ditto. |
|
5228 * signal/autocor.m: Ditto. |
|
5229 * signal/autocov.m: Ditto. |
|
5230 * signal/autoreg_matrix.m: Ditto. |
|
5231 * signal/bartlett.m: Ditto. |
|
5232 * signal/blackman.m: Ditto. |
|
5233 * signal/detrend.m: Ditto. |
|
5234 * signal/diffpara.m: Ditto. |
|
5235 * signal/durbinlevinson.m: Ditto. |
|
5236 * signal/fftconv.m: Ditto. |
|
5237 * signal/fftfilt.m: Ditto. |
|
5238 * signal/fftshift.m: Ditto. |
|
5239 * signal/fractdiff.m: Ditto. |
|
5240 * signal/freqz.m: Ditto. |
|
5241 * signal/hamming.m: Ditto. |
|
5242 * signal/hanning.m: Ditto. |
|
5243 * signal/hurst.m: Ditto. |
|
5244 * signal/periodogram.m: Ditto. |
|
5245 * signal/rectangle_lw.m: Ditto. |
|
5246 * signal/rectangle_sw.m: Ditto. |
|
5247 * signal/sinc.m: Ditto. |
|
5248 * signal/sinetone.m: Ditto. |
|
5249 * signal/sinewave.m: Ditto. |
|
5250 * signal/spectral_adf.m: Ditto. |
|
5251 * signal/spectral_xdf.m: Ditto. |
|
5252 * signal/spencer.m: Ditto. |
|
5253 * signal/stft.m: Ditto. |
|
5254 * signal/synthesis.m: Ditto. |
|
5255 * signal/triangle_lw.m: Ditto. |
|
5256 * signal/triangle_sw.m: Ditto. |
|
5257 * signal/yulewalker.m: Ditto. |
3450
|
5258 * control/util/strappend.m: Ditto. |
3451
|
5259 * control/base/nichols.m: Ditto. |
3452
|
5260 * control/system/is_signal_list.m: Ditto. |
|
5261 * control/system/listidx.m: Ditto. |
|
5262 * control/system/sysgettsam.m: Ditto. |
|
5263 * control/system/sysidx.m: Ditto. |
3446
|
5264 |
3438
|
5265 2000-01-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5266 |
|
5267 * control/system/__abcddims__.m: Rename from |
|
5268 control/system/abcddims.m, change all callers. |
|
5269 * control/base/__bodquist__.m: Likewise. |
|
5270 * control/base/__freqresp__.m: Likewise. |
|
5271 * control/util/__outlist__.m: Likewise. |
|
5272 * control/base/__stepimp__.m: Likewise. |
|
5273 * control/system/__syschnamesl__.m: Likewise. |
|
5274 * control/system/__syscont_disc__.m: Likewise. |
|
5275 * control/system/__sysdefioname__.m: Likewise. |
|
5276 * control/system/__sysdefstname__.m: Likewise. |
|
5277 * control/system/__sysgroupn__.m: Likewise. |
|
5278 * control/system/__tf2sysl__.m: Likewise. |
|
5279 * control/util/__zgpbal__.m: Likewise. |
|
5280 * control/system/__zp2ssg2__.m: Likewise. |
3495
|
5281 |
|
5282 * quaternion/demoquat.m: Add copyright notice, Texinfoize doc string. |
3452
|
5283 * quaternion/qconj.m: Ditto. |
|
5284 * quaternion/qcoordinate_plot.m: Ditto. |
|
5285 * quaternion/qderiv.m: Ditto. |
|
5286 * quaternion/qderivmat.m: Ditto. |
|
5287 * quaternion/qinv.m: Ditto. |
|
5288 * quaternion/qmult.m: Ditto. |
|
5289 * quaternion/qtrans.m: Ditto. |
|
5290 * quaternion/qtransv.m: Ditto. |
|
5291 * quaternion/qtransvmat.m: Ditto. |
|
5292 * quaternion/quaternion.m: Ditto. |
3438
|
5293 |
3436
|
5294 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5295 |
|
5296 * control/base/Makefile.in: Ditto. |
|
5297 * control/hinf/Makefile.in: New file. |
|
5298 * control/marsyas/Makefile.in: Ditto. |
|
5299 * control/obsolete/Makefile.in: Ditto. |
|
5300 * control/system/Makefile.in: Ditto. |
|
5301 * control/util/Makefile.in: Ditto. |
|
5302 |
|
5303 * strings/com2str.m: Move here from control directory. |
|
5304 |
|
5305 * control/base: New directory. |
|
5306 * control/base/DEMOcontrol.m: Move here from control directory. |
|
5307 * control/base/analdemo.m: Ditto. |
|
5308 * control/base/are.m: Ditto. |
|
5309 * control/base/bddemo.m: Ditto. |
|
5310 * control/base/bode.m: Ditto. |
|
5311 * control/base/bode_bounds.m: Ditto. |
|
5312 * control/base/bodquist.m: Ditto. |
|
5313 * control/base/controldemo.m: Ditto. |
|
5314 * control/base/ctrb.m: Ditto. |
|
5315 * control/base/damp.m: Ditto. |
|
5316 * control/base/dare.m: Ditto. |
|
5317 * control/base/dcgain.m: Ditto. |
|
5318 * control/base/dgram.m: Ditto. |
|
5319 * control/base/dlqe.m: Ditto. |
|
5320 * control/base/dlqr.m: Ditto. |
|
5321 * control/base/dlyap.m: Ditto. |
|
5322 * control/base/dre.m: Ditto. |
|
5323 * control/base/frdemo.m: Ditto. |
|
5324 * control/base/freqchkw.m: Ditto. |
|
5325 * control/base/freqresp.m: Ditto. |
|
5326 * control/base/gram.m: Ditto. |
|
5327 * control/base/impulse.m: Ditto. |
|
5328 * control/base/lqe.m: Ditto. |
|
5329 * control/base/lqg.m: Ditto. |
|
5330 * control/base/lqr.m: Ditto. |
|
5331 * control/base/lsim.m: Ditto. |
|
5332 * control/base/ltifr.m: Ditto. |
|
5333 * control/base/lyap.m: Ditto. |
|
5334 * control/base/nichols.m: Ditto. |
|
5335 * control/base/nyquist.m: Ditto. |
|
5336 * control/base/obsv.m: Ditto. |
|
5337 * control/base/place.m: Ditto. |
|
5338 * control/base/pzmap.m: Ditto. |
|
5339 * control/base/rldemo.m: Ditto. |
|
5340 * control/base/rlocus.m: Ditto. |
|
5341 * control/base/step.m: Ditto. |
|
5342 * control/base/stepimp.m: Ditto. |
|
5343 * control/base/tzero.m: Ditto. |
|
5344 * control/base/tzero2.m: Ditto. |
|
5345 |
|
5346 * control/hinf: New directory. |
|
5347 * control/hinf/dhinfdemo.m: Move here from control directory. |
|
5348 * control/hinf/h2norm.m: Ditto. |
|
5349 * control/hinf/h2syn.m: Ditto. |
|
5350 * control/hinf/hinf_ctr.m: Ditto. |
|
5351 * control/hinf/hinfdemo.m: Ditto. |
|
5352 * control/hinf/hinfnorm.m: Ditto. |
|
5353 * control/hinf/hinfsyn.m: Ditto. |
|
5354 * control/hinf/hinfsyn_chk.m: Ditto. |
|
5355 * control/hinf/hinfsyn_ric.m: Ditto. |
|
5356 * control/hinf/wgt1o.m: Ditto. |
3441
|
5357 * control/hinf/dgkfdemo.m: Ditto. |
|
5358 * control/hinf/is_dgkf.m: Ditto. |
3436
|
5359 |
|
5360 * control/marsyas: New directory. |
|
5361 * control/marsyas/demomarsyas.m: Move here from control directory. |
|
5362 * control/marsyas/susball.m: Ditto. |
|
5363 |
|
5364 * control/obsolete/dezero.m: Move here from control directory. |
|
5365 * control/obsolete/rotg.m: Ditto. |
|
5366 |
|
5367 * control/system: New directory. |
|
5368 * control/system/abcddim.m: Move here from control directory. |
|
5369 * control/system/abcddims.m: Ditto. |
|
5370 * control/system/buildssic.m: Ditto. |
|
5371 * control/system/c2d.m: Ditto. |
|
5372 * control/system/d2c.m: Ditto. |
|
5373 * control/system/dmr2d.m: Ditto. |
|
5374 * control/system/fir2sys.m: Ditto. |
|
5375 * control/system/is_abcd.m: Ditto. |
|
5376 * control/system/is_digital.m: Ditto. |
|
5377 * control/system/is_sample.m: Ditto. |
|
5378 * control/system/is_signal_list.m: Ditto. |
|
5379 * control/system/is_siso.m: Ditto. |
3441
|
5380 * control/system/is_controllable.m: Ditto. |
|
5381 * control/system/is_detectable.m: Ditto. |
|
5382 * control/system/is_observable.m: Ditto. |
|
5383 * control/system/is_stabilizable.m: Ditto. |
|
5384 * control/system/is_stable.m: Ditto. |
3436
|
5385 * control/system/jet707.m: Ditto. |
|
5386 * control/system/listidx.m: Ditto. |
|
5387 * control/system/moddemo.m: Ditto. |
|
5388 * control/system/ord2.m: Ditto. |
|
5389 * control/system/packedform.m: Ditto. |
|
5390 * control/system/parallel.m: Ditto. |
|
5391 * control/system/ss2sys.m: Ditto. |
|
5392 * control/system/ss2tf.m: Ditto. |
|
5393 * control/system/ss2zp.m: Ditto. |
|
5394 * control/system/starp.m: Ditto. |
|
5395 * control/system/sys2fir.m: Ditto. |
|
5396 * control/system/sys2ss.m: Ditto. |
|
5397 * control/system/sys2tf.m: Ditto. |
|
5398 * control/system/sys2zp.m: Ditto. |
|
5399 * control/system/sysadd.m: Ditto. |
|
5400 * control/system/sysappend.m: Ditto. |
|
5401 * control/system/syschnamesl.m: Ditto. |
|
5402 * control/system/syschtsam.m: Ditto. |
|
5403 * control/system/sysconnect.m: Ditto. |
|
5404 * control/system/syscont.m: Ditto. |
|
5405 * control/system/syscont_disc.m: Ditto. |
|
5406 * control/system/sysdefioname.m: Ditto. |
|
5407 * control/system/sysdefstname.m: Ditto. |
|
5408 * control/system/sysdimensions.m: Ditto. |
|
5409 * control/system/sysdisc.m: Ditto. |
|
5410 * control/system/sysdup.m: Ditto. |
|
5411 * control/system/sysgetsignals.m: Ditto. |
|
5412 * control/system/sysgettsam.m: Ditto. |
|
5413 * control/system/sysgettype.m: Ditto. |
|
5414 * control/system/sysgroup.m: Ditto. |
|
5415 * control/system/sysgroupn.m: Ditto. |
|
5416 * control/system/sysidx.m: Ditto. |
|
5417 * control/system/sysmin.m: Ditto. |
|
5418 * control/system/sysmult.m: Ditto. |
|
5419 * control/system/sysout.m: Ditto. |
|
5420 * control/system/sysprune.m: Ditto. |
|
5421 * control/system/sysreorder.m: Ditto. |
|
5422 * control/system/sysrepdemo.m: Ditto. |
|
5423 * control/system/sysscale.m: Ditto. |
|
5424 * control/system/syssetsignals.m: Ditto. |
|
5425 * control/system/syssub.m: Ditto. |
|
5426 * control/system/sysupdate.m: Ditto. |
|
5427 * control/system/tf2ss.m: Ditto. |
|
5428 * control/system/tf2sys.m: Ditto. |
|
5429 * control/system/tf2sysl.m: Ditto. |
|
5430 * control/system/tf2zp.m: Ditto. |
|
5431 * control/system/tfout.m: Ditto. |
|
5432 * control/system/ugain.m: Ditto. |
|
5433 * control/system/zp2ss.m: Ditto. |
|
5434 * control/system/zp2ssg2.m: Ditto. |
|
5435 * control/system/zp2sys.m: Ditto. |
|
5436 * control/system/zp2tf.m: Ditto. |
|
5437 * control/system/zpout.m: Ditto. |
|
5438 |
|
5439 * control/util: New directory. |
|
5440 * control/util/axis2dlim.m: Move here from control directory. |
|
5441 * control/util/outlist.m: Ditto. |
|
5442 * control/util/prompt.m: Ditto. |
|
5443 * control/util/run_cmd.m: Ditto. |
|
5444 * control/util/sortcom.m: Ditto. |
|
5445 * control/util/strappend.m: Ditto. |
|
5446 * control/util/swap.m: Ditto. |
|
5447 * control/util/zgfmul.m: Ditto. |
|
5448 * control/util/zgfslv.m: Ditto. |
|
5449 * control/util/zginit.m: Ditto. |
|
5450 * control/util/zgpbal.m: Ditto. |
|
5451 * control/util/zgreduce.m: Ditto. |
|
5452 * control/util/zgrownorm.m: Ditto. |
|
5453 * control/util/zgscal.m: Ditto. |
|
5454 * control/util/zgsgiv.m: Ditto. |
|
5455 * control/util/zgshsr.m: Ditto. |
|
5456 |
3427
|
5457 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5458 |
|
5459 * gethelp.cc (extract_help_text): Discard first space character |
|
5460 after consecutive comment characters. |
|
5461 |
3422
|
5462 Thu Jan 13 00:56:57 2000 John W. Eaton <jwe@bahaha.che.wisc.edu> |
|
5463 |
|
5464 * control/obsolete: New directory |
|
5465 * control/obsolete/swaprows.m: Move here from control directory. |
3436
|
5466 * control/obsolete/swapcols.m: Ditto. |
|
5467 * control/obsolete/dlqg.m: Ditto. |
|
5468 * control/obsolete/minfo.m: Ditto. |
|
5469 * control/obsolete/packsys.m: Ditto. |
|
5470 * control/obsolete/qzval.m: Ditto. |
|
5471 * control/obsolete/unpacksys.m: Ditto. |
|
5472 * control/obsolete/series.m: Ditto. |
|
5473 * control/obsolete/syschnames.m: Ditto. |
|
5474 * polynomial/polyout.m: Ditto. |
3422
|
5475 |
3420
|
5476 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5477 |
|
5478 * general/fliplr.m: Eliminate useless copy of arg. |
|
5479 * general/flipud.m: Ditto. |
|
5480 |
3418
|
5481 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5482 |
|
5483 * linear-algebra/cross.m: Only return a row vector if both args |
|
5484 are row vectors. |
|
5485 * polynomial/polyfit.m: Likewise. |
|
5486 |
|
5487 * signal/autocov.m: Don't reset prefer_column_vectors. |
|
5488 |
|
5489 * statistics/distributions/discrete_rnd.m: |
|
5490 Always generate a row vector. |
|
5491 * statistics/distributions/hypergeometric_rnd.m: Likewise. |
|
5492 |
5095
|
5493 2000-01-11 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3416
|
5494 |
|
5495 * strings/upper.m: Add missing `-*- texinfo -*-' tag to doc string. |
|
5496 |
|
5497 * audio/setaudio.m: Texinfoize doc string. |
|
5498 * control/com2str.m: Likewise. |
|
5499 * control/controldemo.m: Likewise. |
|
5500 * control/DEMOcontrol.m: Likewise. |
|
5501 * control/dezero.m: Likewise. |
|
5502 * control/dre.m: Likewise. |
|
5503 * control/hinfsyn_ric.m: Likewise. |
|
5504 |
5095
|
5505 2000-01-05 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3407
|
5506 |
|
5507 * io/printf.m: Add @seealso{...} to doc string. |
|
5508 * io/puts.m: Likewise. |
|
5509 * plot/semilogx.m: Likewise. |
|
5510 * plot/semilogy.m: Likewise. |
|
5511 * plot/__pltopt__.m: Likewise. |
|
5512 * plot/bar.m: Likewise. |
|
5513 * plot/xlabel.m: Likewise. |
|
5514 * plot/grid.m: Likewise. |
|
5515 * plot/shg.m: Likewise. |
|
5516 * plot/title.m: Likewise. |
|
5517 * plot/mesh.m: Likewise. |
|
5518 * plot/__pltopt1__.m: Likewise. |
|
5519 * plot/contour.m: Likewise. |
|
5520 * plot/hist.m: Likewise. |
|
5521 * plot/stairs.m: Likewise. |
|
5522 * plot/meshgrid.m: Likewise. |
|
5523 * plot/polar.m: Likewise. |
|
5524 * plot/loglog.m: Likewise. |
|
5525 * plot/plot.m: Likewise. |
|
5526 * miscellaneous/semicolon.m: Likewise. |
|
5527 * miscellaneous/menu.m: Likewise. |
|
5528 * miscellaneous/etime.m: Likewise. |
|
5529 * miscellaneous/texas_lotto.m: Likewise. |
|
5530 * miscellaneous/comma.m: Likewise. |
|
5531 * audio/lin2mu.m: Likewise. |
|
5532 * audio/playaudio.m: Likewise. |
|
5533 * audio/loadaudio.m: Likewise. |
|
5534 * audio/saveaudio.m: Likewise. |
|
5535 * audio/mu2lin.m: Likewise. |
|
5536 * audio/record.m: Likewise. |
|
5537 * strings/isletter.m: Likewise. |
|
5538 * strings/lower.m: Likewise. |
|
5539 * strings/lower.m: Likewise. |
|
5540 * strings/upper.m: Likewise. |
|
5541 * specfun/erfinv.m: Likewise. |
|
5542 * specfun/gammai.m: Likewise. |
|
5543 * specfun/log2.m: Likewise. |
|
5544 * specfun/pow2.m: Likewise. |
|
5545 * elfun/gcd.m: Likewise. |
|
5546 * elfun/lcm.m: Likewise. |
|
5547 * special-matrix/vander.m: Likewise. |
|
5548 * special-matrix/sylvester_matrix.m: Likewise. |
|
5549 * special-matrix/hilb.m: Likewise. |
|
5550 * special-matrix/hankel.m: Likewise. |
|
5551 * special-matrix/toeplitz.m: Likewise. |
|
5552 * special-matrix/invhilb.m: Likewise. |
|
5553 * statistics/base/std.m: Likewise. |
|
5554 * statistics/base/median.m: Likewise. |
|
5555 * linear-algebra/cond.m: Likewise. |
|
5556 * linear-algebra/norm.m: Likewise. |
|
5557 * finance/nper.m: Likewise. |
|
5558 * finance/pmt.m: Likewise. |
|
5559 * finance/pv.m: Likewise. |
|
5560 * finance/rate.m: Likewise. |
|
5561 * finance/npv.m: Likewise. |
|
5562 * general/fliplr.m: Likewise. |
|
5563 * general/flipud.m: Likewise. |
|
5564 * general/is_scalar.m: Likewise. |
|
5565 * general/rem.m: Likewise. |
|
5566 * general/perror.m: Likewise. |
|
5567 * general/tril.m: Likewise. |
|
5568 * general/rot90.m: Likewise. |
|
5569 * general/num2str.m: Likewise. |
|
5570 * general/int2str.m: Likewise. |
|
5571 * general/reshape.m: Likewise. |
|
5572 * general/logspace.m: Likewise. |
|
5573 * general/is_symmetric.m: Likewise. |
|
5574 * general/is_vector.m: Likewise. |
|
5575 * general/nextpow2.m: Likewise. |
|
5576 * general/columns.m: Likewise. |
|
5577 * general/is_square.m: Likewise. |
|
5578 * general/rows.m: Likewise. |
|
5579 * control/ugain.m: Likewise. |
|
5580 * control/damp.m: Likewise. |
|
5581 * control/dare.m: Likewise. |
|
5582 * control/are.m: Likewise. |
|
5583 * control/sys2fir.m: Likewise. |
|
5584 * control/abcddim.m: Likewise. |
|
5585 * control/is_abcd.m: Likewise. |
|
5586 * control/step.m: Likewise. |
|
5587 * control/is_observable.m: Likewise. |
|
5588 * control/is_controllable.m: Likewise. |
|
5589 * control/jet707.m: Likewise. |
|
5590 * control/polyout.m: Likewise. |
|
5591 * control/impulse.m: Likewise. |
|
5592 * control/lqg.m: Likewise. |
|
5593 * control/is_detectable.m: Likewise. |
|
5594 * control/sysdimensions.m: Likewise. |
|
5595 * control/sysupdate.m: Likewise. |
|
5596 * control/stepimp.m: Likewise. |
|
5597 * control/is_stable.m: Likewise. |
|
5598 * control/tfout.m: Likewise. |
|
5599 * control/zpout.m: Likewise. |
|
5600 |
3405
|
5601 2000-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5602 |
|
5603 * set/complement.m: Add @seealso{} stuff. |
|
5604 * set/create_set.m: Likewise. |
|
5605 * set/intersection.m: Likewise. |
|
5606 * set/union.m: Likewise. |
|
5607 |
3399
|
5608 1999-12-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5609 |
3400
|
5610 * control/d2c.m: Use double quotes instead of single quotes for |
|
5611 string constants. |
|
5612 * control/dgkfdemo.m: Likewise. |
|
5613 * control/fir2sys.m: Likewise. |
|
5614 * control/frdemo.m: Likewise. |
|
5615 * control/moddemo.m: Likewise. |
|
5616 * control/minfo.m: Likewise. |
|
5617 * control/is_stabilizable.m: Likewise. |
|
5618 * control/is_dgkf.m: Likewise. |
|
5619 * control/polyout.m: Likewise. |
|
5620 * control/sysconnect.m: Likewise. |
|
5621 * control/sysrepdemo.m: Likewise. |
|
5622 * control/tf2sys.m: Likewise. |
|
5623 * control/tfout.m: Likewise. |
|
5624 * control/zp2sys.m: Likewise. |
|
5625 * control/zpout.m: Likewise. |
|
5626 * control/tzero.m: Likewise. |
|
5627 |
|
5628 * control/DEMOcontrol.m: Handle moddemo case too. |
|
5629 |
|
5630 * image/loadimage.m: Use double quotes instead of single quotes |
|
5631 for string constants. Use sprintf instead of square brackets to |
|
5632 construct string. |
|
5633 |
3399
|
5634 * control/DEMOcontrol.m: Formatting tweaks. |
3400
|
5635 * control/fir2sys.m: Likewise. |
3399
|
5636 |
3390
|
5637 1999-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5638 |
|
5639 * mkdoc: Only delete spaces before @ characters at the beginning |
|
5640 of a line. |
|
5641 |
3383
|
5642 1999-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5643 |
3388
|
5644 * control/bddemo.m: Make it more likely to work with any value of |
|
5645 whitespace_in_literal_matrix. |
3386
|
5646 * control/analdemo.m: Ditto. |
|
5647 * control/dgkfdemo.m: Ditto. |
|
5648 * control/frdemo.m: Ditto. |
|
5649 * control/sysrepdemo.m: Ditto. |
|
5650 * control/moddemo.m: Ditto. |
3388
|
5651 * control/zp2ss.m: Ditto. |
3387
|
5652 * control/zp2tf.m: Ditto. |
3388
|
5653 * control/syssub.m: Ditto. |
|
5654 * finance/npv.m: Ditto. |
|
5655 * statistics/base/studentize.m: Ditto. |
|
5656 * statistics/base/values.m: Ditto. |
|
5657 * statistics/distributions/exponential_cdf.m: Ditto. |
|
5658 * statistics/distributions/poisson_cdf.m: Ditto. |
3386
|
5659 |
3384
|
5660 * control/dezero.m: Use toascii to convert string to ASCII value |
|
5661 instead of multiplying it by 1. |
|
5662 |
3383
|
5663 * control/zp2sys.m: Don't save and restore implicit_str_to_num_ok. |
|
5664 * control/zpout.m: Ditto. |
|
5665 * control/tfout.m: Ditto. |
|
5666 * control/tf2sys.m: Ditto. |
|
5667 * control/syssub.m: Ditto. |
|
5668 * control/syssetsignals.m: Ditto. |
|
5669 * control/sysout.m: Ditto. |
|
5670 * control/sysmult.m: Ditto. |
|
5671 * control/sysgroup.m: Ditto. |
|
5672 * control/sysdup.m: Ditto. |
|
5673 * control/sysdisc.m: Ditto. |
|
5674 * control/syscont.m: Ditto. |
|
5675 * control/sysconnect.m: Ditto. |
|
5676 * control/sysappend.m: Ditto. |
|
5677 * control/sysadd.m: Ditto. |
|
5678 * control/ss2sys.m: Ditto. |
|
5679 * control/nyquist.m: Ditto. |
|
5680 * control/lqg.m: Ditto. |
|
5681 * control/fir2sys.m: Ditto. |
|
5682 * control/dmr2d.m: Ditto. |
|
5683 * control/dezero.m: Ditto. |
|
5684 * control/d2c.m: Ditto. |
|
5685 * control/c2d.m: Ditto. |
|
5686 * control/bddemo.m: Ditto. |
|
5687 * control/pzmap.m: Ditto. |
|
5688 |
5095
|
5689 1999-12-08 Daniel Calvelo <dcalvelo@pharion.univ-lille2.fr> |
3374
|
5690 |
|
5691 * signal/spectral_adf.m: Fix typo. |
|
5692 |
3372
|
5693 1999-11-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5694 |
|
5695 * linear-algebra/cond.m: Texinfoize doc string. |
|
5696 * linear-algebra/kron.m: Ditto. |
|
5697 * linear-algebra/norm.m: Ditto. |
|
5698 * linear-algebra/null.m: Ditto. |
|
5699 * linear-algebra/orth.m: Ditto. |
|
5700 * linear-algebra/rank.m: Ditto. |
|
5701 * linear-algebra/trace.m: Ditto. |
|
5702 * linear-algebra/qzhess.m: Ditto. |
|
5703 * miscellaneous/menu.m: Ditto. |
3373
|
5704 * general/perror.m: Ditto. |
|
5705 * general/strerror.m: Ditto. |
|
5706 * general/columns.m: Ditto. |
|
5707 * general/rows.m: Ditto. |
|
5708 * image/colormap.m: Ditto. |
|
5709 * image/gray.m: Ditto. |
|
5710 * image/gray2ind.m: Ditto. |
|
5711 * image/image.m: Ditto. |
|
5712 * image/imagesc.m: Ditto. |
|
5713 * image/imshow.m: Ditto. |
|
5714 * image/ind2gray.m: Ditto. |
|
5715 * image/ind2rgb.m: Ditto. |
|
5716 * image/loadimage.m: Ditto. |
|
5717 * image/rgb2ntsc.m: Ditto. |
|
5718 * image/ntsc2rgb.m: Ditto. |
|
5719 * image/ocean.m: Ditto. |
|
5720 * image/rgb2ind.m: Ditto. |
|
5721 * image/saveimage.m: Ditto. |
3372
|
5722 * io/printf.m: Ditto. |
|
5723 * io/puts.m: Ditto. |
|
5724 |
3369
|
5725 1999-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5726 |
|
5727 * special-matrix/hankel.m: Texinfoize doc string. |
|
5728 * special-matrix/hilb.m: Ditto. |
|
5729 * special-matrix/invhilb.m: Ditto. |
|
5730 * special-matrix/sylvester_matrix.m: Ditto. |
|
5731 * special-matrix/toeplitz.m: Ditto. |
|
5732 * special-matrix/vander.m: Ditto. |
|
5733 * linear-algebra/vec.m: Ditto. |
|
5734 * linear-algebra/vech.m: Ditto. |
|
5735 * general/common_size.m: Ditto. |
|
5736 * general/diff.m: Ditto. |
|
5737 * general/fliplr.m: Ditto. |
|
5738 * general/flipud.m: Ditto. |
|
5739 * general/rot90.m: Ditto. |
|
5740 * general/reshape.m: Ditto. |
|
5741 * general/shift.m: Ditto. |
|
5742 * general/tril.m: Ditto. |
|
5743 * general/triu.m: Ditto. |
|
5744 * general/logspace.m: Ditto. |
3371
|
5745 * general/nargchk.m: Ditto. |
3369
|
5746 |
3367
|
5747 1999-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5748 |
|
5749 * statistics/base/mean: Texinfoize doc string. |
|
5750 * statistics/base/median: Ditto. |
|
5751 * statistics/base/std: Ditto. |
|
5752 * statistics/base/cov: Ditto. |
|
5753 * statistics/base/corrcoef: Ditto. |
|
5754 * statistics/base/kurtosis: Ditto. |
|
5755 * statistics/base/mahalanobis: Ditto. |
|
5756 * statistics/base/skewness: Ditto. |
3368
|
5757 * statistics/base/gls.m: Ditto. |
|
5758 * statistics/base/ols.m: Ditto. |
3367
|
5759 * signal/detrend.m: Ditto. |
|
5760 * signal/freqz.m: Ditto. |
|
5761 * signal/sinc.m: Ditto. |
|
5762 * signal/fftconv.m: Ditto. |
|
5763 * signal/fftfilt.m: Ditto. |
3368
|
5764 * set/create_set.m: Ditto. |
|
5765 * set/union.m: Ditto. |
|
5766 * set/intersection.m: Ditto. |
|
5767 * set/complement.m: Ditto. |
|
5768 * poly/compan.m: Ditto. |
|
5769 * poly/conv: Ditto. |
|
5770 * poly/deconv: Ditto. |
|
5771 * poly/poly: Ditto. |
|
5772 * poly/polyderiv: Ditto. |
|
5773 * poly/polyfit: Ditto. |
|
5774 * poly/polyinteg: Ditto. |
|
5775 * poly/polyreduce: Ditto. |
|
5776 * poly/polyval: Ditto. |
|
5777 * poly/polyvalm: Ditto. |
|
5778 * poly/residue: Ditto. |
|
5779 * poly/roots: Ditto. |
|
5780 * plot/top_title.m: Ditto |
|
5781 * plot/subwindow.m: Ditto |
|
5782 * plot/subplot.m: Ditto |
|
5783 * plot/plot_border.m: Ditto |
|
5784 * plot/oneplot.m: Ditto |
|
5785 * plot/multiplot.m: Ditto |
|
5786 * plot/mplot.m: Ditto |
|
5787 * plot/xlabel.m: Ditto |
|
5788 * plot/figure.m: Ditto |
|
5789 * plot/meshdom.m: Ditto |
|
5790 * plot/mesh.m: Ditto |
|
5791 * plot/stairs.m: Ditto |
|
5792 * plot/polar.m: Ditto |
|
5793 * plot/loglog.m: Ditto |
|
5794 * plot/hist.m: Ditto |
|
5795 * plot/contour.m: Ditto |
|
5796 * plot/bar.m: Ditto |
|
5797 * plot/axis.m: Ditto |
|
5798 * plot/plot.m: Ditto. |
3367
|
5799 |
3361
|
5800 1999-11-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5801 |
3365
|
5802 * control/pinv.m: Delete. |
|
5803 |
3364
|
5804 * Makefile.in (DOCSTRINGS): Don't echo $(ALL_M_FILES). |
|
5805 |
3361
|
5806 * strings/blanks.m: Texinfoize doc string. |
|
5807 * strings/strcat.m: Ditto. |
|
5808 * strings/str2mat.m: Ditto. |
|
5809 * strings/deblank.m: Ditto. |
|
5810 * strings/findstr.m: Ditto. |
|
5811 * strings/index.m: Ditto. |
|
5812 * strings/rindex.m: Ditto. |
|
5813 * strings/split.m: Ditto. |
|
5814 * strings/strcmp.m: Ditto. |
|
5815 * strings/strrep.m: Ditto. |
|
5816 * strings/substr.m: Ditto. |
|
5817 * general/int2str.m: Ditto. |
|
5818 * general/num2str.m: Ditto. |
|
5819 * strings/dec2bin.m: Ditto. |
|
5820 * strings/bin2dec: Ditto. |
|
5821 * strings/dec2bin: Ditto. |
|
5822 * strings/dec2hex: Ditto. |
|
5823 * strings/hex2dec: Ditto. |
|
5824 * strings/str2num: Ditto. |
|
5825 |
3347
|
5826 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5827 |
|
5828 * Makefile.in (DISTFILES): Include DOCSTRINGS. |
|
5829 |
5095
|
5830 1999-11-09 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3361
|
5831 |
|
5832 * control/DEMOcontrol.m: Texinfoize doc string. |
|
5833 * control/abcddim.m: Ditto. |
|
5834 * control/abcddims.m: Ditto. |
|
5835 * control/analdemo.m: Ditto. |
|
5836 * control/are.m: Ditto. |
|
5837 * control/axis2dlim.m: Ditto. |
|
5838 * control/bddemo.m: Ditto. |
|
5839 * control/bode.m: Ditto. |
|
5840 * control/bode_bounds.m: Ditto. |
|
5841 * control/bodquist.m: Ditto. |
|
5842 * control/buildssic.m: Ditto. |
|
5843 * control/c2d.m: Ditto. |
|
5844 * control/ctrb.m: Ditto. |
|
5845 * control/d2c.m: Ditto. |
|
5846 * control/damp.m: Ditto. |
|
5847 * control/dare.m: Ditto. |
|
5848 * control/dcgain.m: Ditto. |
|
5849 * control/dgkfdemo.m: Ditto. |
|
5850 * control/dgram.m: Ditto. |
|
5851 * control/dlqe.m: Ditto. |
|
5852 * control/dlqr.m: Ditto. |
|
5853 * control/dlyap.m: Ditto. |
|
5854 * control/dmr2d.m: Ditto. |
|
5855 * control/fir2sys.m: Ditto. |
|
5856 * control/frdemo.m: Ditto. |
|
5857 * control/freqchkw.m: Ditto. |
|
5858 * control/freqresp.m: Ditto. |
|
5859 * control/gram.m: Ditto. |
|
5860 * control/h2norm.m: Ditto. |
|
5861 * control/h2syn.m: Ditto. |
|
5862 * control/hinf_ctr.m: Ditto. |
|
5863 * control/hinfdemo.m: Ditto. |
|
5864 * control/hinfnorm.m: Ditto. |
|
5865 * control/hinfsyn.m: Ditto. |
|
5866 * control/hinfsyn_chk.m: Ditto. |
|
5867 * control/impulse.m: Ditto. |
|
5868 * control/is_abcd.m: Ditto. |
|
5869 * control/is_controllable.m: Ditto. |
|
5870 * control/is_detectable.m: Ditto. |
|
5871 * control/is_dgkf.m: Ditto. |
|
5872 * control/is_digital.m: Ditto. |
|
5873 * control/is_observable.m: Ditto. |
|
5874 * control/is_sample.m: Ditto. |
|
5875 * control/is_signal_list.m: Ditto. |
|
5876 * control/is_siso.m: Ditto. |
|
5877 * control/is_stabilizable.m: Ditto. |
|
5878 * control/is_stable.m: Ditto. |
|
5879 * control/jet707.m: Ditto. |
|
5880 * control/lqe.m: Ditto. |
|
5881 * control/lqg.m: Ditto. |
|
5882 * control/lqr.m: Ditto. |
|
5883 * control/lsim.m: Ditto. |
|
5884 * control/ltifr.m: Ditto. |
|
5885 * control/lyap.m: Ditto. |
|
5886 * control/moddemo.m: Ditto. |
|
5887 * control/nyquist.m: Ditto. |
|
5888 * control/obsv.m: Ditto. |
|
5889 * control/ord2.m: Ditto. |
|
5890 * control/outlist.m: Ditto. |
|
5891 * control/pinv.m: Ditto. |
|
5892 * control/place.m: Ditto. |
|
5893 * control/polyout.m: Ditto. |
|
5894 * control/prompt.m: Ditto. |
|
5895 * control/pzmap.m: Ditto. |
|
5896 * control/qzval.m: Ditto. |
|
5897 * control/rldemo.m: Ditto. |
|
5898 * control/rlocus.m: Ditto. |
|
5899 * control/sortcom.m: Ditto. |
|
5900 * control/ss2sys.m: Ditto. |
|
5901 * control/ss2tf.m: Ditto. |
|
5902 * control/ss2zp.m: Ditto. |
|
5903 * control/starp.m: Ditto. |
|
5904 * control/step.m: Ditto. |
|
5905 * control/stepimp.m: Ditto. |
|
5906 * control/susball.m: Ditto. |
|
5907 * control/sys2fir.m: Ditto. |
|
5908 * control/sys2ss.m: Ditto. |
|
5909 * control/sys2tf.m: Ditto. |
|
5910 * control/sys2zp.m: Ditto. |
|
5911 * control/sysadd.m: Ditto. |
|
5912 * control/sysappend.m: Ditto. |
|
5913 * control/syschnames.m: Ditto. |
|
5914 * control/syschnamesl.m: Ditto. |
|
5915 * control/syschtsam.m: Ditto. |
|
5916 * control/sysconnect.m: Ditto. |
|
5917 * control/syscont.m: Ditto. |
|
5918 * control/syscont_disc.m: Ditto. |
|
5919 * control/sysdefioname.m: Ditto. |
|
5920 * control/sysdefstname.m: Ditto. |
|
5921 * control/sysdimensions.m: Ditto. |
|
5922 * control/sysdisc.m: Ditto. |
|
5923 * control/sysdup.m: Ditto. |
|
5924 * control/sysgetsignals.m: Ditto. |
|
5925 * control/sysgettype.m: Ditto. |
|
5926 * control/sysgroup.m: Ditto. |
|
5927 * control/sysgroupn.m: Ditto. |
|
5928 * control/sysmult.m: Ditto. |
|
5929 * control/sysout.m: Ditto. |
|
5930 * control/sysprune.m: Ditto. |
|
5931 * control/sysreorder.m: Ditto. |
|
5932 * control/sysrepdemo.m: Ditto. |
|
5933 * control/sysscale.m: Ditto. |
|
5934 * control/syssetsignals.m: Ditto. |
|
5935 * control/syssub.m: Ditto. |
|
5936 * control/sysupdate.m: Ditto. |
|
5937 * control/tf2ss.m: Ditto. |
|
5938 * control/tf2sys.m: Ditto. |
|
5939 * control/tf2sysl.m: Ditto. |
|
5940 * control/tf2zp.m: Ditto. |
|
5941 * control/tfout.m: Ditto. |
|
5942 * control/tzero.m: Ditto. |
|
5943 * control/tzero2.m: Ditto. |
|
5944 * control/ugain.m: Ditto. |
|
5945 * control/wgt1o.m: Ditto. |
|
5946 * control/zgfmul.m: Ditto. |
|
5947 * control/zgfslv.m: Ditto. |
|
5948 * control/zginit.m: Ditto. |
|
5949 * control/zgpbal.m: Ditto. |
|
5950 * control/zgreduce.m: Ditto. |
|
5951 * control/zgrownorm.m: Ditto. |
|
5952 * control/zgscal.m: Ditto. |
|
5953 * control/zgsgiv.m: Ditto. |
|
5954 * control/zgshsr.m: Ditto. |
|
5955 * control/zp2ss.m: Ditto. |
|
5956 * control/zp2ssg2.m: Ditto. |
|
5957 * control/zp2sys.m: Ditto. |
|
5958 * control/zp2tf.m: Ditto. |
|
5959 * control/zpout.m: Ditto. |
|
5960 |
5095
|
5961 1999-11-02 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3332
|
5962 |
5378
|
5963 * audio/lin2mu.m: Texinfoize doc string. |
|
5964 * audio/loadaudio.m: Ditto. |
|
5965 * audio/mu2lin.m: Ditto. |
|
5966 * audio/playaudio.m: Ditto. |
|
5967 * audio/record.m: Ditto. |
|
5968 * audio/saveaudio.m: Ditto. |
3332
|
5969 |
5095
|
5970 1999-10-26 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321
|
5971 |
|
5972 * elfun/acot.m: Texinfoize doc string. |
|
5973 * elfun/acsc.m: Ditto. |
|
5974 * elfun/acsch.m: Ditto. |
|
5975 * elfun/asec.m: Ditto. |
|
5976 * elfun/asech.m: Ditto. |
|
5977 * elfun/cot.m: Ditto. |
|
5978 * elfun/coth.m: Ditto. |
|
5979 * elfun/csc.m: Ditto. |
|
5980 * elfun/csch.m: Ditto. |
|
5981 * elfun/gcd.m: Ditto. |
|
5982 * elfun/lcm.m: Ditto. |
|
5983 * elfun/sec.m: Ditto. |
|
5984 * elfun/sech.m: Ditto. |
|
5985 * general/nextpow2.m: Ditto. |
|
5986 * general/rem.m: Ditto. |
|
5987 * linear-algebra/commutation_matrix.m: Ditto. |
|
5988 * linear-algebra/cross.m: Ditto. |
|
5989 * linear-algebra/duplication_matrix.m: Ditto. |
|
5990 * miscellaneous/bincoeff.m: Ditto. |
|
5991 * miscellaneous/xor.m: Ditto. |
|
5992 * specfun/bessel.m: Ditto. |
|
5993 * specfun/beta.m: Ditto. |
|
5994 * specfun/betai.m: Ditto. |
|
5995 * specfun/erfinv.m: Ditto. |
|
5996 * specfun/gammai.m: Ditto. |
|
5997 * specfun/log2.m: Ditto. |
|
5998 * specfun/pow2.m: Ditto. |
|
5999 |
5095
|
6000 1999-10-23 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321
|
6001 |
|
6002 * general/is_scalar.m: Texinfoize help text. |
|
6003 * general/is_square.m: Ditto. |
|
6004 * general/is_symmetric.m: Ditto. |
|
6005 |
3320
|
6006 1999-10-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6007 |
|
6008 * strings/split.m: If the string to be split is empty, just return |
|
6009 an empty string. |
|
6010 |
3319
|
6011 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6012 |
|
6013 * Makefile.in (ALL_M_FILES): New macro. |
|
6014 (DOCSTRINGS): No longer .PHONY; depend on $(ALL_M_FILES). |
|
6015 |
3306
|
6016 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6017 |
|
6018 * control/bode.m: Don't return anything if nargout == 0. |
|
6019 |
|
6020 1999-10-20 James B. Rawlings <jbraw@bevo.che.wisc.edu> |
|
6021 |
|
6022 * control/bode.m: Don't do axis scaling for magnitude plots. |
|
6023 |
3305
|
6024 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6025 |
|
6026 * Makefile.in (DISTFILES): Add move-if-change, mkdoc, and |
|
6027 gethelp.cc to the list. |
|
6028 |
3296
|
6029 1999-10-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6030 |
3301
|
6031 * time/asctime.m: Texinfoize help text. |
|
6032 * time/clock.m: Ditto. |
|
6033 * time/date.m: Ditto. |
|
6034 * miscellaneous/cputime.m: Ditto. |
|
6035 * miscellaneous/etime.m: Ditto. |
|
6036 * miscellaneous/is_leap_year.m: Ditto. |
|
6037 * miscellaneous/popen2.m: Ditto. |
|
6038 * miscellaneous/version.m: Ditto. |
|
6039 * miscellaneous/tic.m: Ditto. |
|
6040 * miscellaneous/toc.m: Just refer to tic.m. |
|
6041 |
3297
|
6042 * Makefile.in (dist, bin-dist): Use `$(MAKE) -C dir' instead of |
|
6043 `cd dir; $(MAKE); cd ..'. |
|
6044 ($(SUBDIRS)): Likewise. |
|
6045 |
|
6046 * statistics/Makefile.in ($(SUBDIRS)): Likewise. |
|
6047 |
|
6048 * statistics/Makefile.in (bin-dist): Use `$(MAKE) -C dir' instead |
|
6049 of `cd dir; $(MAKE)'. |
|
6050 |
3296
|
6051 * gethelp.cc, mkdoc: New files. |
|
6052 * Makefile.in: Use them to create DOCSTRINGS file from .m file |
|
6053 sources. |
|
6054 |
3291
|
6055 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6056 |
|
6057 * linear-algebra/kron.m: Fix typo in previous change |
|
6058 |
3282
|
6059 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6060 |
|
6061 * control/bode.m: Allow optional 5th arg to specify plot style. |
|
6062 |
5095
|
6063 Wed Sep 22 22:12:03 1999 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3273
|
6064 |
|
6065 * linear-algebra/krylov.m: Correctly handle case of V having full |
|
6066 rank when V has more columns than rows. |
|
6067 |
|
6068 Mon Sep 20 23:04:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6069 |
|
6070 * general/linspace.m, linear-algebra/pinv.m: Delete. |
|
6071 |
|
6072 * statistics/tests/manova.m: Avoid problems if |
|
6073 whitespace_in_literal_matrix is set to "traditional". |
|
6074 * statistics/tests/t_test_regression.m: Likewise. |
|
6075 * statistics/tests/u_test.m: Likewise. |
|
6076 * statistics/tests/chisquare_test_homogeneity.m: Likewise. |
|
6077 * statistics/tests/anova.m: Likewise. |
|
6078 * statistics/tests/kruskal_wallis_test.m: Likewise. |
|
6079 * statistics/base/statistics.m: Likewise. |
|
6080 * image/saveimage.m: Likewise. |
|
6081 * signal/arch_fit.m: Likewise. |
|
6082 * signal/autoreg_matrix.m: Likewise. |
|
6083 * signal/triangle_lw.m: Likewise. |
|
6084 * strings/dec2hex.m: Likewise. |
|
6085 |
3268
|
6086 Thu Sep 9 19:31:58 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6087 |
|
6088 * image/saveimage.m: Initialize scale. |
|
6089 |
|
6090 Sun Sep 5 22:13:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6091 |
|
6092 * general/reshape.m: Allow reshape (a, size (b)). |
|
6093 |
3266
|
6094 Fri Sep 3 00:01:38 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6095 |
|
6096 * specfun/erfinv.m: Improve stopping criterion. |
|
6097 Add iteration count as second return value. |
|
6098 |
3265
|
6099 Mon Aug 30 12:07:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6100 |
|
6101 * statistics/base/mean.m: Use .', not ' to reorient row vectors. |
|
6102 |
3263
|
6103 Tue Aug 17 11:11:27 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6104 |
|
6105 * miscellaneous/pack.m: New function. |
|
6106 |
|
6107 Mon Aug 16 07:46:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6108 |
|
6109 * plot/figure.m: Always return figure number. With no args, |
|
6110 figure now creates a new figure window and returns its number. |
|
6111 Accept figure (property, value) syntax, but do nothing. |
|
6112 |
5095
|
6113 Thu Aug 12 09:28:01 PDT 1999 Tom Poage <tfpoage@ucdavis.edu> |
3263
|
6114 |
|
6115 * general/shift.m: Avoid printing temporary value for backward shift. |
|
6116 |
3260
|
6117 Mon Aug 2 16:39:04 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6118 |
|
6119 * plot/bar.m: Compute bar widths correctly when x-values are not |
|
6120 evenly spaced. |
|
6121 |
3250
|
6122 Mon Jul 12 22:48:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6123 |
|
6124 * linear-algebra/cond.m: Avoid returning NaN for matrices that |
|
6125 contain only zeros. |
|
6126 |
5095
|
6127 Sun Jun 20 22:24:27 1999 Eduardo Gallestey <eduardo@faceng.anu.edu.au> |
3250
|
6128 |
|
6129 * linear-algebra/kron.m: Create result matrix and insert blocks |
|
6130 instead of appending them. |
|
6131 |
|
6132 Sat Jun 19 01:52:18 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6133 |
|
6134 * control/bodquist.m, control/buildssic.m, control/is_digital.m, |
|
6135 control/stepimp.m, control/sysmin.m, control/syssetsignals.m: |
|
6136 Update from A. S. Hodel. |
|
6137 |
3246
|
6138 Fri Jun 18 12:19:22 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6139 |
|
6140 * polynomial/polyfit.m: Correct previous change. |
|
6141 |
3243
|
6142 Wed Apr 7 13:57:26 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6143 |
|
6144 * linear-algebra/qrhouse.m, linear-algebra/krygetq.m: Delete. |
|
6145 |
5095
|
6146 Wed Apr 7 13:22:43 1999 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
3240
|
6147 |
|
6148 * control/is_controllable.m, control/zgscal.m: Accomodate new |
|
6149 version of krylov and krylovb. |
|
6150 |
|
6151 * control/outlist.m, control/sysout.m: Fix typos. |
|
6152 |
|
6153 * control/sysdimensions.m: Add option for total number of states. |
|
6154 |
|
6155 * linear-algebra/krylov.m: Improve robustness by row-pivoting. |
|
6156 * linear-algebra/krylovb.m: Just call krylov with appropriate |
|
6157 arguments. |
|
6158 |
|
6159 Tue Mar 30 00:43:09 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6160 |
|
6161 * strings/index.m: Fail with meaningful error message if either |
|
6162 arg is a string array. |
|
6163 |
3238
|
6164 Wed Mar 24 20:34:48 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6165 |
|
6166 * linear-algebra/norm.m: Do the right thing for 1- and |
|
6167 infinity-norms of complex matrices. From Sven Khatri |
|
6168 <khatri@saturn.vocalpoint.com>. |
|
6169 |
5095
|
6170 Tue Mar 16 13:36:36 1999 A. Scottedward Hodel" <scotte@eng.auburn.edu> |
3238
|
6171 |
|
6172 * linear-algebra/qrhouse.m: Handle default args correctly. |
|
6173 |
|
6174 Thu Mar 11 12:52:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6175 |
|
6176 * strings/split.m: Avoid problems when splitting strings that have |
|
6177 \ in them. |
|
6178 |
5095
|
6179 Thu Mar 11 12:36:13 1999 Massimo Lorenzin <maxlorenzin@tin.it> |
3238
|
6180 |
|
6181 * image/colormap.m: Do better arg checking, handle string args |
|
6182 that name the colormap function to call (e.g., colormap ("ocean")). |
|
6183 |
5095
|
6184 Mon Mar 8 22:23:24 1999 Rolf Fabian <fabian@TU-Cottbus.De> |
3238
|
6185 |
|
6186 * polynomial/polyfit.m: Use .' transpose operator, not '. |
|
6187 * linear-algebra/dot.m: Likewise. |
|
6188 * linear-algebra/cross.m: Likewise. |
|
6189 * general/rot90.m: Likewise. |
|
6190 |
5095
|
6191 Sat Mar 6 01:45:00 1999 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3238
|
6192 |
|
6193 * linear-algebra/qrhouse.m: Permute columns at each iteration so |
|
6194 that the leading column is not all zeros. |
|
6195 |
|
6196 Fri Mar 5 00:37:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6197 |
|
6198 * general/shift.m: Fix potential problems with |
|
6199 whitespace_in_literal_matrix. |
|
6200 * signal/arch_rnd.m: Ditto. |
|
6201 * signal/autocov.m: Ditto. |
|
6202 * signal/diffpara.m: Ditto. |
|
6203 * signal/hurst.m: Ditto. |
|
6204 * signal/periodogram.m: Ditto. |
|
6205 * signal/spectral_adf.m: Ditto. |
|
6206 * signal/spectral_xdf.m: Ditto. |
|
6207 * signal/spencer.m: Ditto. |
|
6208 * signal/synthesis.m: Ditto. |
|
6209 * statistics/distributions/wiener_rnd.m: Ditto. |
|
6210 * statistics/models/logistic_regression_likelihood.m: Ditto. |
|
6211 * statistics/models/logistic_regression.m: Ditto. |
|
6212 * statistics/models/logistic_regression_derivatives.m: Ditto. |
|
6213 * statistics/tests/run_test.m: Ditto. |
|
6214 * statistics/tests/chisquare_test_independence.m: Ditto. |
|
6215 |
5095
|
6216 Wed Mar 3 02:25:00 1999 Joao Cardoso <jcardoso@inescn.pt> |
3238
|
6217 |
|
6218 * plot/__plr2__.m: Fix typo. |
|
6219 |
3233
|
6220 Tue Jan 12 10:31:15 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6221 |
|
6222 * plot/__pltopt1__.m: Accept "k" to mean black. |
|
6223 |
5095
|
6224 Fri Dec 11 10:43:19 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233
|
6225 |
|
6226 * linear-algebra/krylov.m: Force empty_list_elements_ok for this |
|
6227 function. |
|
6228 |
5095
|
6229 Thu Dec 10 11:07:00 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233
|
6230 |
|
6231 * control/ss2sys.m: Fix typo. |
|
6232 |
|
6233 Wed Dec 9 12:42:19 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6234 |
|
6235 * plot/subplot.m, plot/oneplot.m: Don't call clearplot. |
|
6236 |
|
6237 * control: Update from A. S. Hodel <a.s.hodel@eng.auburn.edu> for |
|
6238 signal names as lists of strings instead of string arrays. |
|
6239 |
3225
|
6240 Fri Dec 4 16:08:42 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6241 |
3233
|
6242 * quaternion: New directory of functions from A. S. Hodel |
3225
|
6243 <a.s.hodel@eng.auburn.edu>. |
|
6244 * Makefile.in (SUBDIRS): Add it to the list. |
3226
|
6245 * quaternion/Makefile.in: New file. |
|
6246 * configure.in (AC_OUTPUT): Add quaternion/Makefile. |
3225
|
6247 |
|
6248 Tue Nov 24 21:41:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6249 |
|
6250 * image/saveimage.m: Make it work again for black and white colormaps. |
|
6251 |
|
6252 * image/imagesc.m: Use rows (colormap), not length (colormap), |
|
6253 since there can be fewer rows than columns. Round values to |
|
6254 nearest position in colormap instead of truncating. Correct usage |
|
6255 message. |
|
6256 |
5095
|
6257 Tue Nov 24 14:50:52 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3225
|
6258 |
|
6259 * linear-algebra/krylov.m: New arg pflg. If nonzero, avoid using |
|
6260 zero rows of [A,v] as householder pivots; this avoids spurious |
|
6261 non-zero entries in returned orthogonal matrix U, but destroys the |
|
6262 Householder matrix structure of H. |
|
6263 |
|
6264 Fri Nov 20 12:46:46 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6265 |
|
6266 * general/logical.m: Just copy input to output if argument is |
|
6267 already a logical object. |
|
6268 |
3215
|
6269 Fri Nov 6 10:17:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6270 |
|
6271 * New files from OCST, in control subdiretory: |
|
6272 |
|
6273 DEMOcontrol.m is_siso.m syschnames.m |
|
6274 abcddim.m is_stabilizable.m syschnamesl.m |
|
6275 abcddims.m is_stable.m syschtsam.m |
|
6276 analdemo.m jet707.m sysconnect.m |
|
6277 are.m lqe.m syscont.m |
|
6278 axis2dlim.m lqg.m syscont_disc.m |
|
6279 bddemo.m lqr.m sysdefioname.m |
|
6280 bode.m lsim.m sysdefstname.m |
|
6281 bode_bounds.m ltifr.m sysdimensions.m |
|
6282 bodquist.m lyap.m sysdisc.m |
|
6283 buildssic.m mb.m sysdup.m |
|
6284 c2d.m minfo.m sysgetsignals.m |
6302
|
6285 com2str.m moddemo.m sysgettsam.m |
3215
|
6286 controldemo.m nichols.m sysgettype.m |
|
6287 ctrb.m nyquist.m sysgroup.m |
|
6288 d2c.m obsv.m sysgroupn.m |
|
6289 damp.m ord2.m sysmult.m |
|
6290 dare.m outlist.m sysout.m |
|
6291 dcgain.m packedform.m sysprune.m |
|
6292 demomarsyas.m packsys.m sysreorder.m |
|
6293 dezero.m; parallel.m sysrepdemo.m |
|
6294 dgkfdemo.m place.m sysscale.m |
|
6295 dgram.m polyout.m syssub.m |
|
6296 dhinfdemo.m prompt.m sysupdate.m |
|
6297 dlqe.m pzmap.m tf2ss.m |
|
6298 dlqg.m qzval.m tf2sys.m |
|
6299 dlqr.m rldemo.m tf2sysl.m |
|
6300 dlyap.m rlocus.m tf2zp.m |
|
6301 dmr2d.m rotg.m tfout.m |
|
6302 fir2sys.m run_cmd.m; tzero.m |
|
6303 frdemo.m series.m tzero2.m |
|
6304 freqchkw.m sortcom.m ugain.m |
|
6305 freqresp.m ss2sys.m unpacksys.m |
|
6306 gram.m ss2tf.m wgt1o.m |
|
6307 h2norm.m ss2zp.m zgfmul.m |
|
6308 h2syn.m starp.m zgfslv.m |
|
6309 hinf_ctr.m step.m zginit.m |
|
6310 hinfdemo.m stepimp.m zgpbal.m |
|
6311 hinfnorm.m strappend.m; zgreduce.m |
|
6312 hinfsyn.m susball.m zgrownorm.m |
|
6313 hinfsyn_chk.m swap.m zgscal.m |
|
6314 impulse.m swapcols.m zgsgiv.m |
|
6315 is_abcd.m swaprows.m zgshsr.m |
|
6316 is_controllable.m sys2fir.m zp2ss.m |
|
6317 is_detectable.m sys2ss.m zp2ssg2.m |
|
6318 is_dgkf.m sys2tf.m zp2sys.m |
|
6319 is_digital.m sys2zp.m zp2tf.m |
|
6320 is_observable.m sysadd.m zpout.m |
|
6321 is_sample.m sysappend.m |
|
6322 |
|
6323 Thu Nov 5 13:28:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6324 |
|
6325 * configure.in (AC_OUTPUT): Escape newlinew in macro call with \. |
|
6326 |
|
6327 * strings/deblank.m: Make it work for string arrays too. |
|
6328 |
3211
|
6329 Wed Nov 4 21:51:13 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6330 |
|
6331 * linear-algebra/housh.m: New file from the OCST. |
|
6332 * linear-algebra/krygetq.m: Ditto. |
|
6333 * linear-algebra/krylov.m: Ditto. |
|
6334 * linear-algebra/krylovb.m: Ditto. |
|
6335 * linear-algebra/qrhouse.m: Ditto. |
|
6336 * general/is_duplicate_entry.m: Ditto. |
|
6337 |
|
6338 * general/is_symmetric.m: Call is_square instead of doing that |
|
6339 check in line. |
|
6340 |
3196
|
6341 Wed Oct 28 11:51:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6342 |
3202
|
6343 * general/is_square.m: |
|
6344 |
|
6345 * general/isempty.m, general/is_matrix.m: Delete. |
|
6346 |
|
6347 * general/is_symmetric: Delete special case for strings. Whether |
|
6348 the conversion is valid should depend on implicit_str_to_num_ok. |
|
6349 |
|
6350 * general/is_square.m: If arg is not a matrix, don't check size, |
|
6351 just return 0. |
|
6352 * general/is_symmetric: Likewise. |
|
6353 * general/is_vector.m: Likewise. |
|
6354 * general/is_scalar.m: Likewise. |
|
6355 |
3196
|
6356 * general/length.m: Delete. |
|
6357 |
3191
|
6358 Fri Oct 23 00:21:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6359 |
|
6360 * configure.in: Add finance/Makefile, statistics/base/Makefile, |
|
6361 statistics/distributions/Makefile, statistics/models/Makefile, |
|
6362 and statistics/tests/Makefile to the list of files to create. |
|
6363 |
|
6364 * finance/Makefile.in, statistics/base/Makefile.in, |
|
6365 statistics/distributions/Makefile.in, statistics/models/Makefile.in, |
|
6366 statistics/tests/Makefile.in: New files. |
|
6367 * statistics/Makefile.in: Delete file lists. Now only handle |
|
6368 subdirectories. |
|
6369 * Makefile.in (SUBDIRS): Add finance. |
|
6370 |
|
6371 * Move the following files from statistics to statistics/base: |
|
6372 |
|
6373 corrcoef.m |
|
6374 kurtosis.m |
|
6375 mahalanobis.m |
|
6376 median.m |
|
6377 ols.m |
|
6378 skewness.m |
|
6379 std.m |
|
6380 |
|
6381 New files, from Kurt Hornik's octave-ci package: |
|
6382 |
|
6383 * finance (new directory): |
|
6384 |
|
6385 fv.m |
|
6386 fvl.m |
|
6387 irr.m |
|
6388 nper.m |
|
6389 npv.m |
|
6390 pmt.m |
|
6391 pv.m |
|
6392 pvl.m |
|
6393 rate.m |
|
6394 vol.m |
|
6395 |
|
6396 * linear-algebra/dmult.m |
|
6397 |
|
6398 * signal: |
|
6399 |
|
6400 arch_fit.m |
|
6401 arch_rnd.m |
|
6402 arch_test.m |
|
6403 arma_rnd.m |
|
6404 autocor.m |
|
6405 autocov.m |
|
6406 autoreg_matrix.m |
|
6407 bartlett.m |
|
6408 blackman.m |
|
6409 diffpara.m |
|
6410 durbinlevinson.m |
|
6411 fractdiff.m |
|
6412 hamming.m |
|
6413 hanning.m |
|
6414 hurst.m |
|
6415 periodogram.m |
|
6416 rectangle_lw.m |
|
6417 rectangle_sw.m |
|
6418 sinetone.m |
|
6419 sinewave.m |
|
6420 spectral_adf.m |
|
6421 spectral_xdf.m |
|
6422 spencer.m |
|
6423 stft.m |
|
6424 synthesis.m |
|
6425 triangle_lw.m |
|
6426 triangle_sw.m |
|
6427 yulewalker.m |
|
6428 |
|
6429 * statistics/base (new directory): |
|
6430 |
|
6431 center.m |
|
6432 cloglog.m |
|
6433 cor.m |
|
6434 cov.m |
|
6435 cut.m |
|
6436 iqr.m |
|
6437 kendall.m |
|
6438 logit.m |
|
6439 mean.m |
|
6440 meansq.m |
|
6441 moment.m |
|
6442 ppplot.m |
|
6443 probit.m |
|
6444 qqplot.m |
|
6445 range.m |
|
6446 ranks.m |
|
6447 run_count.m |
|
6448 spearman.m |
|
6449 statistics.m |
|
6450 studentize.m |
|
6451 table.m |
|
6452 values.m |
|
6453 var.m |
|
6454 |
|
6455 (Replaces cov.m and mean.m with new versions.) |
|
6456 |
|
6457 * statistics/distributions (new directory): |
|
6458 |
|
6459 beta_cdf.m |
|
6460 beta_inv.m |
|
6461 beta_pdf.m |
|
6462 beta_rnd.m |
|
6463 binomial_cdf.m |
|
6464 binomial_inv.m |
|
6465 binomial_pdf.m |
|
6466 binomial_rnd.m |
|
6467 cauchy_cdf.m |
|
6468 cauchy_inv.m |
|
6469 cauchy_pdf.m |
|
6470 cauchy_rnd.m |
|
6471 chisquare_cdf.m |
|
6472 chisquare_inv.m |
|
6473 chisquare_pdf.m |
|
6474 chisquare_rnd.m |
|
6475 discrete_cdf.m |
|
6476 discrete_inv.m |
|
6477 discrete_pdf.m |
|
6478 discrete_rnd.m |
|
6479 empirical_cdf.m |
|
6480 empirical_inv.m |
|
6481 empirical_pdf.m |
|
6482 empirical_rnd.m |
|
6483 exponential_cdf.m |
|
6484 exponential_inv.m |
|
6485 exponential_pdf.m |
|
6486 exponential_rnd.m |
|
6487 f_cdf.m |
|
6488 f_inv.m |
|
6489 f_pdf.m |
|
6490 f_rnd.m |
|
6491 gamma_cdf.m |
|
6492 gamma_inv.m |
|
6493 gamma_pdf.m |
|
6494 gamma_rnd.m |
|
6495 geometric_cdf.m |
|
6496 geometric_inv.m |
|
6497 geometric_pdf.m |
|
6498 geometric_rnd.m |
|
6499 hypergeometric_cdf.m |
|
6500 hypergeometric_inv.m |
|
6501 hypergeometric_pdf.m |
|
6502 hypergeometric_rnd.m |
|
6503 kolmogorov_smirnov_cdf.m |
|
6504 laplace_cdf.m |
|
6505 laplace_inv.m |
|
6506 laplace_pdf.m |
|
6507 laplace_rnd.m |
|
6508 logistic_cdf.m |
|
6509 logistic_inv.m |
|
6510 logistic_pdf.m |
|
6511 logistic_rnd.m |
|
6512 lognormal_cdf.m |
|
6513 lognormal_inv.m |
|
6514 lognormal_pdf.m |
|
6515 lognormal_rnd.m |
|
6516 normal_cdf.m |
|
6517 normal_inv.m |
|
6518 normal_pdf.m |
|
6519 normal_rnd.m |
|
6520 pascal_cdf.m |
|
6521 pascal_inv.m |
|
6522 pascal_pdf.m |
|
6523 pascal_rnd.m |
|
6524 poisson_cdf.m |
|
6525 poisson_inv.m |
|
6526 poisson_pdf.m |
|
6527 poisson_rnd.m |
|
6528 stdnormal_cdf.m |
|
6529 stdnormal_inv.m |
|
6530 stdnormal_pdf.m |
|
6531 stdnormal_rnd.m |
|
6532 t_cdf.m |
|
6533 t_inv.m |
|
6534 t_pdf.m |
|
6535 t_rnd.m |
|
6536 uniform_cdf.m |
|
6537 uniform_inv.m |
|
6538 uniform_pdf.m |
|
6539 uniform_rnd.m |
|
6540 weibull_cdf.m |
|
6541 weibull_inv.m |
|
6542 weibull_pdf.m |
|
6543 weibull_rnd.m |
|
6544 wiener_rnd.m |
|
6545 |
|
6546 * statistics/models (new directory): |
|
6547 |
|
6548 logistic_regression.m |
|
6549 logistic_regression_derivatives.m |
|
6550 logistic_regression_likelihood.m |
|
6551 |
|
6552 * statistics/tests (new directory): |
|
6553 |
|
6554 anova.m |
|
6555 bartlett_test.m |
|
6556 chisquare_test_homogeneity.m |
|
6557 chisquare_test_independence.m |
|
6558 cor_test.m |
|
6559 f_test_regression.m |
|
6560 hotelling_test.m |
|
6561 hotelling_test_2.m |
|
6562 kolmogorov_smirnov_test.m |
|
6563 kolmogorov_smirnov_test_2.m |
|
6564 kruskal_wallis_test.m |
|
6565 manova.m |
|
6566 mcnemar_test.m |
|
6567 prop_test_2.m |
|
6568 run_test.m |
|
6569 sign_test.m |
|
6570 t_test.m |
|
6571 t_test_2.m |
|
6572 t_test_regression.m |
|
6573 u_test.m |
|
6574 var_test.m |
|
6575 welch_test.m |
|
6576 wilcoxon_test.m |
|
6577 z_test.m |
|
6578 z_test_2.m |
|
6579 |
|
6580 Thu Oct 22 12:25:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6581 |
|
6582 * time/date.m: Use %Y, not %y in format string, for Matlab 5 |
|
6583 compatibility and to avoid Y2K problems. |
|
6584 |
3190
|
6585 Mon Oct 19 17:26:35 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6586 |
|
6587 * polynomial/polyfit.m: Just use the \ operator to handle the |
|
6588 least-squares solution. |
|
6589 |
3180
|
6590 Thu Sep 3 12:40:47 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6591 |
|
6592 * strings/str2num.m: If eval returns a string, return an empty matrix. |
|
6593 |
|
6594 * strings/strrep.m: Don't convert args to numeric values. |
|
6595 Prevent warnings for empty string args. |
|
6596 From Georg Thimm <thimm@idiap.ch>. |
|
6597 |
|
6598 * strings/strcat.m: Prevent warnings for empty string args. |
|
6599 |
|
6600 Wed Sep 2 17:20:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6601 |
|
6602 * miscellaneous/menu.m: Remove special case for empty string |
|
6603 returned from input(). Add second arg to eval() to catch errors. |
|
6604 |
3178
|
6605 Thu Jun 18 16:32:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6606 |
|
6607 * plot/__plt__.m: Don't call usleep. |
|
6608 |
3175
|
6609 Mon May 18 11:42:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6610 |
|
6611 * linear-algebra/dot.m: New function. |
|
6612 |
|
6613 * strings/lower.m, strings/upper.m: New functions, for Matlab |
|
6614 compatibility. |
|
6615 |
|
6616 Fri May 15 01:16:53 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6617 |
|
6618 * plot/hist.m: Also allow just one output argument. |
|
6619 |
|
6620 Sun May 10 23:00:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6621 |
|
6622 * strings/deblank.m: Make it work if the string is only blanks. |
|
6623 |
|
6624 Tue May 5 00:53:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6625 |
|
6626 * plot/__plt2mv__.m: Delete calls to keyboard. |
|
6627 |
|
6628 Mon May 4 11:43:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6629 |
|
6630 * plot/oneplot.m: Fix typo. |
|
6631 |
3174
|
6632 Wed Apr 22 12:11:27 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6633 |
|
6634 * miscellaneous/flops.m: Allow a single argument too. |
|
6635 |
|
6636 Tue Apr 21 10:18:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6637 |
|
6638 * strings/str2mat.m: Also handle case when there are no empty |
|
6639 strings correctly. |
|
6640 |
|
6641 Mon Apr 20 22:14:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6642 |
|
6643 * strings/isletter.m: New function, for Matlab compatibility. |
|
6644 |
3168
|
6645 Fri Apr 17 10:53:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6646 |
|
6647 * strings/str2mat.m: Handle string matrices too. |
|
6648 |
3167
|
6649 Wed Apr 15 11:16:01 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6650 |
|
6651 * audio/loadaudio.m: Accept "pcm" as another file extension for |
|
6652 linear encoding. |
|
6653 |
|
6654 * audio/saveaudio.m, audio/loadaudio.m, audio/playaudio.m, |
|
6655 audio/record.m: Open files in binary mode. |
|
6656 |
3164
|
6657 Fri Apr 10 10:46:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6658 |
|
6659 * miscellaneous/dump_prefs.m: Use string array for list of values. |
|
6660 Move functionality of dump_1_pref here, but use built-in function |
|
6661 type to extract value, and put it inside try/catch block. |
|
6662 * miscellaneous/dump_1_pref.m: Delete unused function. |
|
6663 |
3162
|
6664 Wed Apr 8 13:17:58 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6665 |
|
6666 * plot/__pltopt1.m__: New file. |
|
6667 * plot/__pltopt.m__: Handle opt as a string array by calling |
|
6668 __pltopt1__ multiple times and returning a string array with rows |
|
6669 corresponding to the rows of opt. |
|
6670 * plot/__plt2ss__.m, plot/__plt2vv__.m, plot/__plt2vm__.m, |
|
6671 plot/__plt2mv__.m, plot/__plt2mm__.m: Handle fmt as a string |
|
6672 array. |
|
6673 |
|
6674 Fri Mar 27 03:00:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6675 |
|
6676 * plot/mplot.m: Fix misspellings of global variables. |
|
6677 Don't call clearplot. |
|
6678 |
|
6679 Tue Mar 17 17:45:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6680 |
|
6681 * plot/subplot.m, plot/multiplot.m: Set gnuplot_command_replot to |
|
6682 "cle;rep" when going in ot multiplot mode. |
|
6683 * plot/oneplot.m: Reset gnuplot_command_replot to "rep" when |
|
6684 switching out of multiplot mode. |
|
6685 |
3156
|
6686 Fri Feb 20 01:31:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
3148
|
6687 |
3156
|
6688 * plot/mplot.m, plot/subplot.m, plot/oneplot.m, plot/multiplot.m, |
|
6689 plot/subwindow.m: Call clearplot after setting up multiplot mode. |
3148
|
6690 |
3141
|
6691 Tue Feb 3 00:18:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6692 |
|
6693 * special-matrix/sylvester_matrix.m: Rename from hadamard.m |
|
6694 |
|
6695 * miscellaneous/bug_report.m: Don't try to get smart with |
|
6696 OCTAVE_HOME. Assume octave-bug can be found in EXEC_PATH. |
|
6697 |
|
6698 * Makefile.in (install): Create separate ls-R files for |
|
6699 $(datadir) and $(libexecdir). |
|
6700 (uninstall): Remove both ls-R files. |
|
6701 |
3136
|
6702 Sat Jan 31 01:09:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6703 |
|
6704 * signal/fftshift.m: New file. |
|
6705 |
|
6706 * plot/contour.m: Fix for non-square case. |
|
6707 |
|
6708 * general/randperm.m: New file. |
|
6709 |
|
6710 Fri Jan 30 15:20:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6711 |
|
6712 * specfun/betai.m: Restore file for compatibility with previous |
|
6713 versions. Call betainc with reordered args. |
|
6714 * specfun/gammai.m: Likewise, call gammainc with reordered args. |
|
6715 |
3131
|
6716 Wed Jan 28 22:44:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6717 |
|
6718 * plot/contour.m: Handle discrete contour levels. |
|
6719 |
|
6720 Tue Jan 27 04:31:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6721 |
|
6722 * control/lyap.m: For compatibility with Matlab, solve |
|
6723 A*X + X*A' + C = 0 instead of A'*X + X*A + C = 0. |
|
6724 |
3124
|
6725 Wed Dec 10 00:14:29 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6726 |
|
6727 * specfun/bessel.m: New file. |
|
6728 |
|
6729 * specfun/betai.m, specfun/betainc.m, specfun/gammai.m, |
|
6730 specfun/gammainc.m: Delete. |
|
6731 |
3106
|
6732 Wed Nov 19 00:19:18 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6733 |
|
6734 * image/colormap.m: Initialize __current_color_map__ in global |
|
6735 statement. |
|
6736 * miscellaneous/toc.m: Initialize __tic_toc_timestamp__ in global |
|
6737 statement. |
|
6738 * plot/axis.m: Initialize __current_axis__ in global statement. |
|
6739 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, |
|
6740 plot/subwindow.m: Initialize __multiplot_mode__ in global statement. |
|
6741 |
3103
|
6742 Tue Nov 18 01:35:50 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6743 |
|
6744 * time/tic.m: Rename _time_tic_called to __tic_toc_timestamp__. |
|
6745 * time/toc.m: Likewise. |
|
6746 |
|
6747 * image/colormap.m: Rename CURRENT_COLOR_MAP to __current_color_map__. |
|
6748 |
|
6749 * plot/mplot.m, plot/multiplot.m, plot/subplot.m: Don't do |
|
6750 anything special for automatic_replot when in multiplot mode -- |
|
6751 recent 3.6beta releases handle this correctly. |
|
6752 |
|
6753 * plot/figure.m: Ensure that we are not in multiplot mode before |
|
6754 setting the terminal type. |
|
6755 |
|
6756 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, |
|
6757 plot/subwindow.m: Use leading and trailing underscores for |
|
6758 `private' globals. |
|
6759 |
|
6760 * plot/oneplot.m: Don't do anything if gnuplot_has_multiplot is false. |
|
6761 |
3101
|
6762 Fri Nov 14 10:53:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6763 |
|
6764 * plot/__pltopt__.m: Use sprintf instead of strcat when adding TITLE. |
|
6765 |
3091
|
6766 Fri Oct 10 11:18:10 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6767 |
3092
|
6768 * specfun/gammai.m: Avoid problems with whitespace when |
|
6769 constructing matrices. |
|
6770 |
3091
|
6771 * polynomial/polyfit.m: Compute yf correctly. From Seung Lee |
|
6772 <SJL@nrc.gov>. Also return yf in the same orientation as the |
|
6773 original y vector. |
|
6774 |
3085
|
6775 Fri Sep 19 17:04:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6776 |
|
6777 * linear-algebra/cross.m: Use direct formula instead of calling |
|
6778 det three times in a loop. If both args are column (row) vectors, |
|
6779 return a column (row) vector. If they don't match, pay attention |
|
6780 to the value of prefer_column_vectors. |
|
6781 |
5095
|
6782 Thu Aug 28 15:31:20 1997 Rolf Fabian <fabian@olymp.Umwelt.TU-Cottbus.de> |
3085
|
6783 |
|
6784 * polynomial/polyvalm.m: Don't assume orthogonal eigenvectors for |
|
6785 nonsymmetric matrices. |
|
6786 |
|
6787 * general/tril.m: Fix usage message. |
|
6788 |
|
6789 * polynomial/polyvalm.m: Fix error messages. |
|
6790 * polynomial/polyderiv.m: Likewise. |
|
6791 * polynomial/polyval.m: Likewise. |
|
6792 |
3081
|
6793 Wed Aug 13 14:14:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6794 |
|
6795 * strings/blanks.m: Allow blanks(0) to return empty string. |
|
6796 Allow negative arguments if treat_neg_dim_as_zero is true. |
|
6797 |
3063
|
6798 Wed Jun 25 21:26:24 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6799 |
|
6800 * plot/mesh.m: Set noparametric plot mode after plotting. |
|
6801 |
5095
|
6802 Wed Jun 25 21:06:10 1997 Rick Niles <niles@axp745.gsfc.nasa.gov> |
3062
|
6803 |
|
6804 * plot/__pltopt__.m: Handle key/legend names. |
|
6805 Correctly set colors, line styles, and point styles. |
|
6806 |
3061
|
6807 Wed Jun 25 13:34:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6808 |
|
6809 * polynomial/polyfit.m: Return fit y values as second output. |
|
6810 Don't use QR factorization to solve least squares problem. |
|
6811 |
|
6812 Wed Jun 18 10:24:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6813 |
|
6814 * control/dlqr.m: Use ao, not a, to compute k. |
|
6815 |
3024
|
6816 Tue Jun 3 12:16:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6817 |
|
6818 * miscellaneous/path.m: New file. |
|
6819 |
2993
|
6820 Wed May 21 11:45:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6821 |
|
6822 * miscellaneous/bug_report.m: Pass file id to dump_prefs, not file |
|
6823 name. |
|
6824 |
2968
|
6825 Mon May 12 02:04:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6826 |
|
6827 * specfun/erfinv.m: Add missing semicolon. |
|
6828 |
2870
|
6829 Wed Apr 2 22:04:03 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6830 |
|
6831 * miscellaneous/xor.m: Make type of return value logical. |
|
6832 |
2853
|
6833 Fri Mar 28 16:19:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6834 |
|
6835 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
|
6836 warn_comma_in_global_decl. |
|
6837 |
2831
|
6838 Tue Mar 25 22:00:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6839 |
|
6840 * miscellaneous/bug_report.m: Use __OCTAVE_HOME__ to find |
|
6841 octave-bug script. |
|
6842 |
2823
|
6843 Mon Mar 24 16:49:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6844 |
2824
|
6845 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
|
6846 prefer_zero_one_indexing. |
|
6847 |
2823
|
6848 * general/logical.m: New file. |
|
6849 |
2816
|
6850 Sat Mar 15 15:07:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6851 |
|
6852 * general/nextpow2.m: Correctly handle new meaning of is_scalar() |
|
6853 and is_vector(). |
|
6854 |
5095
|
6855 Thu Mar 13 16:36:35 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
2813
|
6856 |
|
6857 * specfun/erfinv.m: Scale update by sqrt (pi) / 2. |
|
6858 Use tolerance of 2 * eps. |
|
6859 |
2811
|
6860 Wed Mar 12 16:57:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6861 |
|
6862 * Makefile.in (install-strip): New target. |
|
6863 * audio/Makefile.in: Ditto. |
|
6864 * control/Makefile.in: Ditto. |
|
6865 * elfun/Makefile.in: Ditto. |
|
6866 * general/Makefile.in: Ditto. |
|
6867 * image/Makefile.in: Ditto. |
|
6868 * io/Makefile.in: Ditto. |
|
6869 * linear-algebra/Makefile.in: Ditto. |
|
6870 * miscellaneous/Makefile.in: Ditto. |
|
6871 * plot/Makefile.in: Ditto. |
|
6872 * polynomial/Makefile.in: Ditto. |
|
6873 * set/Makefile.in: Ditto. |
|
6874 * signal/Makefile.in: Ditto. |
|
6875 * specfun/Makefile.in: Ditto. |
|
6876 * special-matrix/Makefile.in: Ditto. |
|
6877 * startup/Makefile.in: Ditto. |
|
6878 * statistics/Makefile.in: Ditto. |
|
6879 * strings/Makefile.in: Ditto. |
|
6880 |
2809
|
6881 Tue Mar 11 10:14:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6882 |
|
6883 * elfun/coth.m: Write as cosh(x) ./ sinh(x) instead of 1 ./ tanh(x). |
|
6884 |
2798
|
6885 Fri Mar 7 23:06:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6886 |
|
6887 * statistics/corrcoef.m: Make it actually work. |
|
6888 |
2795
|
6889 Thu Mar 6 12:36:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6890 |
2798
|
6891 * statistics/corrcoef.m: Don't fail if single argument is a matrix. |
2795
|
6892 |
2779
|
6893 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775
|
6894 |
|
6895 * Version 2.0.5 released. |
|
6896 |
2745
|
6897 Wed Feb 26 01:48:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6898 |
2749
|
6899 * Makefile.in (maintainer-clean): Also remove configure. |
|
6900 |
2746
|
6901 * signal/fftconv.m: Check inputs with is_vector(), not is_matrix(). |
|
6902 |
2745
|
6903 * general/is_matrix.m: Return zero for empty matrices. |
|
6904 |
|
6905 Tue Feb 25 15:16:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6906 |
|
6907 * linear-algebra/vech.m: Size result just once. |
|
6908 |
2726
|
6909 Sun Feb 23 00:15:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6910 |
|
6911 * general/is_square.m: Handle empty matrices correctly. |
|
6912 * general/is_symmetric.m: Handle empty matrices and strings. |
|
6913 |
2716
|
6914 Sat Feb 22 01:06:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6915 |
|
6916 * polynomial/conv.m: Check inputs with is_vector(), not is_matrix(). |
|
6917 * polynomial/deconv.m: Likewise. |
|
6918 * polynomial/polyderiv.m: Likewise. |
|
6919 * polynomial/polyinteg.m: Likewise. |
|
6920 * polynomial/polyreduce.m: Likewise. |
|
6921 * polynomial/polyval.m: Likewise. |
|
6922 * polynomial/polyvalm.m: Likewise. |
|
6923 * general/postpad.m: Likewise. |
|
6924 * general/prepad.m: Likewise. |
|
6925 |
|
6926 * polynomial/compan.m: Check input with is_vector(), not |
|
6927 is_matrix(). Handle scalar case. |
|
6928 |
2711
|
6929 Fri Feb 21 13:36:58 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6930 |
2715
|
6931 * plot/contour.m: Order data so that it is consistent with |
|
6932 meshgrid and mesh. |
|
6933 |
2711
|
6934 * plot/meshdom.m, plot/meshgrid.m: Change help message. |
|
6935 * plot/sombrero.m: Use meshgrid, not meshdom. |
|
6936 |
2709
|
6937 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702
|
6938 |
|
6939 * Version 2.0.4 released. |
|
6940 |
2706
|
6941 Wed Feb 19 10:30:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6942 |
2702
|
6943 * miscellaneous/paren.m: New file. |
|
6944 |
2693
|
6945 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690
|
6946 |
|
6947 * Version 2.0.3 released. |
|
6948 |
2676
|
6949 Thu Feb 13 19:06:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6950 |
|
6951 * image/saveimage.m: Only clip image data that is actually out of |
|
6952 range. |
|
6953 |
2667
|
6954 Sun Feb 9 19:52:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6955 |
|
6956 * general/is_matrix.m: Scalars, vectors, and empty matrices may |
|
6957 also be considered to be matrices. |
|
6958 |
|
6959 * general/is_vector.m: Scalars may also be considered to be vectors. |
|
6960 |
|
6961 * general/isempty.m: Use size(), not rows() and columns(). |
|
6962 |
|
6963 * plot/contour.m: Convert set to gset. |
|
6964 Set view to 0, 0, 1, 1, not 0, 0, 1.9, 1. |
|
6965 |
2663
|
6966 Fri Feb 7 12:55:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6967 |
|
6968 * specfun/erfinv.m: Fix typo in last change. |
|
6969 |
2650
|
6970 Fri Jan 31 09:30:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6971 |
|
6972 * image/loadimage.m: Make it possible to load files with image |
|
6973 data named X or img. |
|
6974 |
|
6975 * image/default.img: Change name of image from X to img to match |
|
6976 what saveimage does now. |
|
6977 |
|
6978 * image/loadimage.m: Rename X to be img, to match what saveimage |
|
6979 does now. |
|
6980 |
2632
|
6981 Mon Jan 27 13:48:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6982 |
2634
|
6983 * Version 2.0.2 released. |
|
6984 |
2632
|
6985 * plot/__plt__.m: Use usleep() instead of replot to try to avoid |
|
6986 weird missing-lines bug without creating extra plots unecessarily. |
|
6987 |
2624
|
6988 Sat Jan 25 22:37:07 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6989 |
|
6990 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
6991 elfun/Makefile.in, general/Makefile.in, image/Makefile.in, |
|
6992 io/Makefile.in, linear-algebra/Makefile.in, |
|
6993 miscellaneous/Makefile.in, plot/Makefile.in, |
|
6994 polynomial/Makefile.in, set/Makefile.in, signal/Makefile.in, |
|
6995 specfun/Makefile.in, special-matrix/Makefile.in, |
|
6996 startup/Makefile.in, statistics/Makefile.in, strings/Makefile.in, |
|
6997 time/Makefile.in (bin-dist): New target. |
|
6998 |
2621
|
6999 Wed Jan 22 11:28:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7000 |
|
7001 * specfun/erfinv.m: Avoid A([]) = X, X != [] error. |
|
7002 |
|
7003 Tue Jan 21 11:16:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7004 |
|
7005 * miscellaneous/xor.m: Make it work. |
|
7006 |
2613
|
7007 Mon Jan 20 12:28:34 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7008 |
|
7009 * plot/sombrero.m: Doc fix. |
|
7010 |
2602
|
7011 Tue Jan 7 00:16:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7012 |
|
7013 * Version 2.0.1 released. |
|
7014 |
2601
|
7015 Thu Dec 19 22:16:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7016 |
|
7017 * elfun/lcm.m: Replace missing if statement. |
|
7018 |
|
7019 * elfun/gcd.m: Report error if no input args. |
|
7020 * elfun/lcm.m: Likewise. |
|
7021 |
2597
|
7022 Mon Dec 16 15:23:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7023 |
|
7024 * Makefile.in (install): Use ls -LR to create ls-R database. |
|
7025 Also list contents of $libexecdir/octave in ls-R database. |
|
7026 |
2583
|
7027 Tue Dec 10 01:43:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7028 |
|
7029 * Version 2.0 released. |
|
7030 |
2575
|
7031 Fri Dec 6 15:23:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7032 |
|
7033 * Version 1.94. |
|
7034 |
2558
|
7035 Sun Dec 1 20:55:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7036 |
|
7037 * strings/str2num.m: New file. |
|
7038 |
2554
|
7039 Wed Nov 20 01:00:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7040 |
|
7041 * Version 1.93. |
|
7042 |
2540
|
7043 Tue Nov 19 15:13:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7044 |
|
7045 * linear-algebra/commutation_matrix.m, linear-algebra/cross.m, |
|
7046 linear-algebra/duplication_matrix.m, linear-algebra/vec.m, |
|
7047 linear-algebra/vech.m: New files from Kurt Hornik. |
|
7048 |
|
7049 * general/nextpow2.m, general/shift.m, general/diff.m, |
|
7050 general/common_size.m: New files from Kurt Hornik. |
|
7051 |
|
7052 * miscellaneous/bincoeff.m, miscellaneous/xor.m: |
|
7053 New files from Kurt Hornik. |
|
7054 |
|
7055 * signal/detrend.m: New file from Kurt Hornik. |
|
7056 |
|
7057 * specfun/betai.m, specfun/gammai.m, specfun/erfinv.m, |
|
7058 specfun/pow2.m, specfun/log2.m: |
|
7059 New files and updates from Kurt Hornik. |
|
7060 |
2523
|
7061 Fri Nov 15 18:13:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7062 |
|
7063 * plot/__plt__.m: Add explicit replot after last command is |
|
7064 issued, to force all lines to be displayed. Hmm. |
|
7065 |
2512
|
7066 Thu Nov 14 00:06:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7067 |
2520
|
7068 * plot/axis.m, plot/bottom_title.m, plot/contour.m, |
|
7069 plot/figure.m, plot/grid.m, plot/loglog.m, plot/mesh.m, |
|
7070 plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/plot.m, |
|
7071 plot/plot_border.m, plot/polar.m, plot/semilogx.m, |
|
7072 plot/semilogy.m, plot/subplot.m, plot/subwindow.m, plot/title.m, |
|
7073 plot/top_title.m, plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: |
|
7074 Uset gset, not set. |
|
7075 |
2512
|
7076 * Version 1.92. |
|
7077 |
2482
|
7078 Thu Nov 7 12:43:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7079 |
2486
|
7080 * image/saveimage.m: When writing PostScript, name Octave as the |
|
7081 almighty Creator. Use single call to fprintf instead of looping. |
|
7082 |
|
7083 * image/Makefile.in: Delete references to octtopnm. |
|
7084 |
|
7085 * general/logspace.m: Doc fix. |
|
7086 |
2482
|
7087 * Version 1.91. |
|
7088 |
2458
|
7089 Sat Nov 2 21:06:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7090 |
|
7091 * image/image.m: Use tmpnam() instead of home-brew scheme. |
|
7092 |
|
7093 * audio/record.m, audio/playaudio.m: Use tmpnam() instead of |
|
7094 octave_tmp_file_name(). Use unwind_protect to ensure tmp file is |
|
7095 deleted. |
|
7096 * miscellaneous/bug_report.m: Likewise. Also use unlink() instead |
|
7097 of a system() command to delete the tmp file. |
|
7098 |
2452
|
7099 Wed Oct 30 17:19:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7100 |
|
7101 * Version 1.90. |
|
7102 |
|
7103 * Makefile.in (DISTFILES): Add ChangeLog. |
|
7104 |
2360
|
7105 Thu Oct 10 17:31:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7106 |
|
7107 * plot/subplot.m, plot/multiplot.m, plot/mplot.m: |
|
7108 Don't check for string value of automatic_replot. |
|
7109 |
|
7110 * image/ind2ind.m, image/ind2rgb.m, image/ind2gray.m: |
|
7111 Temporarily set do_fortran_indexing to 1, not "true". |
|
7112 |
|
7113 * miscellaneous/menu.m: Temporarily set page_screen_output to 0, |
|
7114 not "false". |
|
7115 |
|
7116 * linear-algebra/cond.m: Don't compare propagate_empty_matrices to |
|
7117 "false". |
|
7118 |
2355
|
7119 Tue Aug 20 18:27:36 1996 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
|
7120 |
|
7121 * strings/substr.m: Allow negative OFFSET. LEN is now optional. |
|
7122 |
2330
|
7123 Mon Jul 15 16:15:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7124 |
|
7125 * miscellaneous/bug_report.m: Don't redirect output to /dev/tty in |
|
7126 system command. |
|
7127 |
|
7128 Fri Jul 12 12:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7129 |
|
7130 * __plr1__.m: Renamed from polar_int_1.m. |
|
7131 * __plr2__.m: Renamed from polar_int_2.m. |
|
7132 * __plr__.m: Renamed from polar_int.m. |
|
7133 * __plt1__.m: Renamed from plot_int_1.m. |
|
7134 * __plt2__.m: Renamed from plot_int_2.m. |
|
7135 * __plt2mm__.m: Renamed from plot_2_m_m_.m. |
|
7136 * __plt2mv__.m: Renamed from plot_2_m_v_.m. |
|
7137 * __plt2ss__.m: Renamed from plot_2_s_s_.m. |
|
7138 * __plt2vm__.m: Renamed from plot_2_v_m_.m. |
|
7139 * __plt2vv__.m: Renamed from plot_2_v_v_.m. |
|
7140 * __plt__.m: Renamed from plot_int.m. |
|
7141 * __pltopt__.m: Renamed from plot_opt.m. |
|
7142 Change all callers. |
|
7143 |
|
7144 Thu Jul 11 17:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7145 |
|
7146 * All .m files: Add regular Author:, Created:, and Adapted-By: |
|
7147 comments like those found in Emacs lisp files. |
|
7148 |
|
7149 Mon Jun 24 04:16:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7150 |
|
7151 * All .m files: Change comment style. |
|
7152 |
|
7153 Fri Jun 14 01:42:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7154 |
|
7155 * bottom_title.m, mplot.m, multiplot.m, oneplot.m, plot_border.m, |
|
7156 subplot.m, subwindow.m, top_title.m: |
|
7157 Print error message if gnuplot_has_multiplot is not true. |
|
7158 |
|
7159 Thu Jun 6 00:18:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7160 |
|
7161 * plot/figure.m: New function. |
|
7162 |
|
7163 Wed Jun 5 18:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7164 |
|
7165 * strings/strrep.m: New function. |
|
7166 |
|
7167 Thu May 23 15:04:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7168 |
|
7169 * strings/bin2dec.m, strings/blanks.m, strings/deblank.m, |
|
7170 strings/dec2bin.m, strings/dec2hex.m, strings/findstr.m, |
|
7171 strings/hex2dec.m, strings/index.m, strings/rindex.m, |
|
7172 strings/split.m, strings/str2mat.m, strings/substr.m: |
|
7173 New functions from Kurt Hornik, heavily modified by jwe. |
|
7174 |
|
7175 * general/reshape.m: Allow strings to be reshaped too. |
|
7176 |
|
7177 * strings/strcmp.m: No longer need to set implicit_str_to_num_ok. |
|
7178 Always return a scalar. |
|
7179 |
|
7180 Wed May 22 19:52:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7181 |
|
7182 * polynomial/polyfit.m: Make orientation of result compatible with |
|
7183 Matlab. |
|
7184 |
|
7185 Sat May 18 17:32:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7186 |
|
7187 * polynomial/polyfit.m: Add missing close paren. |
|
7188 |
|
7189 Thu May 16 10:23:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7190 |
|
7191 * plot/plot_opt.m: Set compatibility arg in call to sscanf. |
|
7192 |
|
7193 * io/scanf.m: Delete. |
|
7194 |
|
7195 Mon May 13 09:37:38 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7196 |
|
7197 * statistics/median.m: Fix typo in usage message. |
|
7198 |
|
7199 Wed Apr 24 02:45:52 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7200 |
|
7201 * miscellaneous/popen2.m: New file. |
|
7202 |
|
7203 Wed Apr 17 18:34:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7204 |
|
7205 * configure.in (AC_OUTPUT): Add io/Makefile. |
|
7206 |
|
7207 * io: New directory. |
|
7208 * Makefile.in (SUBDIRS): Add it to the list. |
|
7209 |
|
7210 * miscellaneous/flops.m: New file. |
|
7211 |
|
7212 Fri Mar 22 04:40:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7213 |
|
7214 * miscellaneous/cputime.m: Return three arguments instead of a |
|
7215 vector, for compatibility with previous versions and with Matlab |
|
7216 (which only returns one scalar value). |
|
7217 |
|
7218 Wed Mar 20 05:09:48 1996 Kurt Hornik <Kurt.Hornik@tuwien.ac.at> |
|
7219 |
|
7220 * general/triu.m: Compute lower bound on loop index correctly. |
|
7221 * general/tril.m: Likewise, for upper bound. |
|
7222 |
|
7223 Tue Feb 6 09:29:43 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7224 |
|
7225 * image/saveimage.m: For color images, make sure indices into |
|
7226 temporary colormap and result matrix have proper orientation. |
|
7227 Set grey flag correctly. |
|
7228 |
|
7229 Tue Jan 9 00:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7230 |
|
7231 * statistics/std.m: Use better formula (from Jim Van Zandt |
|
7232 jrv@vanzandt.mv.com). |
|
7233 |
|
7234 Sun Jan 7 20:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7235 |
|
7236 * meshgrid.m: New file (from Jim Van Zandt jrv@vanzandt.mv.com). |
|
7237 * mesh.m: Transpose Z if only one arg. |
|
7238 Handle case of all three args being matrices (from Jim Van Zandt |
|
7239 jrv@vanzandt.mv.com). |
|
7240 * meshdom.m: Undo previous change. |
|
7241 |
|
7242 Wed Dec 20 13:48:12 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7243 |
|
7244 * configure.in (AC_OUTPUT): Add audio/Makefile |
|
7245 |
|
7246 Thu Nov 16 13:07:07 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7247 |
|
7248 * audio: New directory of files from Kurt Hornik and Andreas |
|
7249 Weingessel. |
|
7250 * audio/Makefile.in: New file. |
|
7251 * Makefile.in (SUBDIRS): Add audio to the list. |
|
7252 |
|
7253 Mon Nov 6 07:29:35 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7254 |
|
7255 * polynomial/polyfit.m: Use `economy-stle' QR factorization. |
|
7256 |
|
7257 Fri Nov 3 00:38:46 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7258 |
|
7259 * plot/mesh.m: Require, length (y) == rows (z) and length (x) == |
|
7260 columns (z), not the other way around. |
|
7261 * plot/meshdom.m: Don't reverse order of elements in y. |
|
7262 |
|
7263 Thu Nov 2 23:56:53 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7264 |
|
7265 * plot/axis.m: Return current axis if nargin == 0. |
|
7266 |
|
7267 Tue Oct 31 04:11:28 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7268 |
|
7269 * polynomial/roots.m: Updates from Kurt Hornik. |
|
7270 |
|
7271 * polynomial/polyder.m: New file. |
|
7272 |
|
7273 * polynomial/polyderiv.m: Give return value and arg different names. |
|
7274 |
|
7275 Mon Oct 30 23:27:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7276 |
|
7277 * specfun/betainc.m: New file. |
|
7278 * specfun/gammainc.m: New file. |
|
7279 |
|
7280 Wed Oct 18 23:45:52 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7281 |
|
7282 * general/strerror.m: New file. |
|
7283 * general/perror.m: Implement using strerror(). |
|
7284 |
|
7285 Thu Oct 5 03:21:36 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7286 |
|
7287 * plot/bottom_title.m plot/mplot.m plot/multiplot.m plot/oneplot.m |
|
7288 plot/plot_border.m plot/subplot.m plot/subwindow.m |
|
7289 plot/top_title.m plot/zlabel.m: New files, from Vinayak Dutt. |
|
7290 |
|
7291 * image/saveimage.m: Round img values first. |
|
7292 |
|
7293 Tue Oct 3 03:55:18 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7294 |
|
7295 * control/abcddim.m control/are.m general/tril.m general/triu.m |
|
7296 image/saveimage.m linear-algebra/kron.m linear-algebra/norm.m |
|
7297 linear-algebra/null.m miscellaneous/etime.m plot/contour.m |
|
7298 plot/mesh.m plot/plot_int.m plot/polar_int.m |
|
7299 special-matrix/hankel.m special-matrix/toeplitz.m |
|
7300 tuwien/strfun/split.m: Add missing semicolons. |
|
7301 |
|
7302 * plot/polar_int.m: Use .', not ' to make vectors conform. |
|
7303 |
|
7304 * image/Makefile.in: Don't build or install octtoppm. |
|
7305 |
|
7306 * image/saveimage.m: Rewrite to avoid using octoppm and pbm |
6653
|
7307 routines so that people who don't have the pbm stuff installed |
2330
|
7308 can still use this function. |
|
7309 |
|
7310 Mon Oct 2 05:10:44 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7311 |
|
7312 * image/saveimage.m: Better error checking, clean up a bit. |
|
7313 |
|
7314 Tue Sep 26 00:04:56 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7315 |
|
7316 * plot/plot_opt.m: Change more to more_opts as a temporary fix to |
|
7317 avoid conflict with new built-in text-style function more. |
|
7318 |
|
7319 * linear-algebra/norm.m: Also allow 2nd arg == "inf". |
|
7320 |
|
7321 * startup/Makefile.in (install): Also install octaverc in |
|
7322 $localfcnfiledir/startup/octavrc. |
|
7323 |
|
7324 Wed Sep 20 00:01:30 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7325 |
|
7326 * mkinstalldirs: New file. |
|
7327 * Makefile.in (DISTFILES): Add it to the list. |
|
7328 |
|
7329 * Makefile.in (DISTFILES): Distribute configure.in and configure. |
|
7330 |
|
7331 Thu Sep 14 03:56:19 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7332 |
|
7333 * special-matrix/hankel.m: Compatibility fix. Complain if |
|
7334 r(1) != c(nr), not if r(1) != c(1). |
|
7335 |
|
7336 * signal/filter.m: Doc fix. |
|
7337 |
|
7338 Wed Sep 13 03:19:05 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7339 |
|
7340 * miscellaneous/cputime.m: Use new resource structure names (no |
|
7341 ru_ or tv_ prefixes). |
|
7342 |
|
7343 Tue Sep 12 02:20:44 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7344 |
|
7345 * time/ctime.m: Fix doc string and usage message. |
|
7346 |
|
7347 Mon Sep 11 18:43:46 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7348 |
|
7349 * time/clock.m: Use new time structure names (no tm_ prefix). |
|
7350 |
|
7351 Thu Aug 24 20:53:08 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
7352 |
|
7353 * control/c2d.m: Make function work for any value of |
|
7354 whitespace_in_literal_matrix. |
|
7355 * control/dare.m: Likewise. |
|
7356 * control/tzero.m: Likewise. |
|
7357 * elfun/gcd.m: Likewise. |
|
7358 * elfun/lcm.m: Likewise. |
|
7359 * general/postpad.m: Likewise. |
|
7360 * general/prepad.m: Likewise. |
|
7361 * linear-algebra/kron.m: Likewise. |
|
7362 * miscellaneous/etime.m: Likewise. |
|
7363 * polynomial/conv.m: Likewise. |
|
7364 * polynomial/deconv.m: Likewise. |
|
7365 * polynomial/poly.m: Likewise. |
|
7366 * polynomial/roots.m: Likewise. |
|
7367 * signal/filter.m: Likewise. |
|
7368 * signal/freqz.m: Likewise. |
|
7369 * signal/fftfilt.m: Likewise. |
|
7370 |
|
7371 Tue Jun 6 22:34:04 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7372 |
|
7373 * miscellaneous/is_leap_year.m: Make work for vector args. |
|
7374 |
|
7375 Tue May 2 16:18:33 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7376 |
|
7377 * plot/polar_int_2.m: Add missing semicolons. |
|
7378 Set theta = theta', not rho'. |
|
7379 |
|
7380 Sun Apr 30 11:19:11 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7381 |
|
7382 * polynomial/roots.m: Make it work for any value of |
|
7383 whitespace_in_literal_matrix. |
|
7384 |
|
7385 Mon Apr 10 09:37:17 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7386 |
|
7387 * configure.in: New file. |
|
7388 |
|
7389 Thu Mar 30 13:29:35 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7390 |
|
7391 * control/lyap.m: Add missing semicolon. |
|
7392 |
|
7393 * miscellaneous/cputime.m: New function file. |
|
7394 |
|
7395 Wed Mar 29 22:50:49 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7396 |
|
7397 * time: New directory. |
|
7398 * time/asctime.m, time/clock.m, time/ctime.m, time/date.m: |
|
7399 New function files. |
|
7400 * time/Makefile.in: New file. |
|
7401 * Makefile.in (SUBDIRS): Add time. |
|
7402 |
|
7403 Thu Mar 23 15:42:26 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7404 |
|
7405 * polynomial/polyreduce.m: Make sure initial index is not empty. |
|
7406 |
|
7407 Tue Mar 14 23:38:24 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7408 |
|
7409 * plot/plot_int_1.m: Transpose data with .', not '. |
|
7410 |
|
7411 Fri Mar 10 10:40:13 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7412 |
|
7413 * Makefile.in (install uninstall clean mostlyclean distclean |
|
7414 realclean): Use SUBDIR_FOR_COMMAND. Combine actions. |
|
7415 |
|
7416 Sun Feb 26 22:18:22 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7417 |
|
7418 * Makefile.in (install): Create ls-R database file. |
|
7419 (uninstall): Delete it. |
|
7420 |
|
7421 Fri Feb 24 10:36:01 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
7422 |
5378
|
7423 * image/saveimage.m: Fix typo. |
2330
|
7424 |
|
7425 See ChangeLog.1 in the top level directory for earlier changes. |