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