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