7245
|
1 2007-12-03 John W. Eaton <jwe@octave.org> |
|
2 |
|
3 * contour.m, contour3.m, contourc.m, contourf.m, cylinder.m, |
|
4 fplot.m, plot3.m, plotyy.m, quiver3.m, scatter.m, scatter3.m, |
|
5 slice.m, sombrero.m, stairs.m, stem.m, stem3.m: |
|
6 Generate demos from examples. |
|
7 |
7240
|
8 2007-12-03 David Bateman <dbateman@free.fr> |
|
9 |
7243
|
10 * testfun/test.m: Disable "testif" test block to avoid spurious |
|
11 skipped test for "make check". Avoid printing variables for |
|
12 skipped tests. |
|
13 |
7242
|
14 * testfun/test.m: Add "testif" type to allow for conditional tests. |
|
15 |
7240
|
16 * plot/plotyy.m: Use activepositionproperty property of axes |
|
17 object. Set second axis color to "none". |
|
18 * plot/__go_draw_axes__.m: Respect the activepositionproperty |
|
19 property of the axis objects. |
|
20 |
7239
|
21 2007-12-03 Thomas Treichl <Thomas.Treichl@gmx.net> |
|
22 |
|
23 * linear-algebra/condest.m: Loosen tolerance in test. |
|
24 |
7236
|
25 2007-12-02 John W. Eaton <jwe@octave.org> |
|
26 |
|
27 * plot/__go_draw_axes__.m: Remove unnecessary call to |
|
28 get_data_limits. |
|
29 |
7222
|
30 2007-11-30 John W. Eaton <jwe@octave.org> |
|
31 |
|
32 * plot/__go_draw_axes__.m: Don't compute data or axis limits. |
|
33 (get_data_limits, get_axis_limits): Delete. |
|
34 |
7228
|
35 2007-11-30 David Bateman <dbateman@free.fr> |
|
36 |
7235
|
37 * plot/__scatter__.m: Avoid out of bounds varargin element access. |
|
38 |
7228
|
39 * plot/__go_draw_axes__.m (do_tics_1): regexprep the cell array of |
|
40 tick labels rather than one by one on the labels themselves. |
|
41 * plot/pareto.m: Bug in numerical labels fixed. Bug in search for |
|
42 95% crossing fixed. |
|
43 |
7217
|
44 2007-11-29 David Bateman <dbateman@free.fr> |
|
45 |
7220
|
46 * plot/pareto.m: New file. |
|
47 * plot/Makefile.in (SOURCES): Add it to the sources. |
|
48 * plot/__go_draw_axes__.m (do_tics1): Replace "%" with "%%" in tic |
|
49 marks to avoid gnuplot error about formating. More colorspec to |
|
50 after the tics. |
|
51 * plot/plotyy.m: More generic check for appropriate axis color. |
|
52 |
7217
|
53 * plot/__stem__.m: New file based on old stem.m expanded to treat |
|
54 2- and 3-D. |
|
55 * plot/stem3.m: New function. |
|
56 * plot/Makefile.in (SOURCES): Add them to the sources. |
|
57 * plot/stem.m: Adapt to use __stem__. |
|
58 |
7216
|
59 2007-11-29 John W. Eaton <jwe@octave.org> |
|
60 |
|
61 * plot/contour.m, plot/contour3.m, plot/fill.m, plot/patch.m, |
|
62 plot/surf.m, plot/surface.m: Don't return handle value unless |
|
63 requested. |
|
64 |
|
65 * plot/patch.m: Omit isnan check on handle returned from |
|
66 __plt_get_axis_arg__. |
|
67 |
|
68 * plot/__plt_get_axis_arg__.m: Don't fail if current figure exists |
|
69 but has no axes. |
|
70 |
7215
|
71 2007-11-28 David Bateman <dbateman@free.fr> |
|
72 |
|
73 * __plt_get_axis_handle__.m: Also allow hggroup and return axes |
|
74 ancestor. If leading argument is logical set variable nogca to see |
|
75 if gca() should be called if there is no active handle found. |
|
76 * __bar__.m, caxis.m, scatter.m, contourf.m, __axes_limits__.m, |
|
77 fill.m, surf.m, meshz.m, axis.m, pie.m, contour.m, |
|
78 quiver.m, area.m, grid.m, cylinder.m, contour3.m, surface.m, |
|
79 patch.m, scatter3.m, plot.m, sphere.m, quiver3.m, plotyy.m, |
|
80 xlabel.m, ylabel.m, surfnorm.m, zlabel.m: Adapt to use |
|
81 __plt__get_axis_arg__ to find axis handle. |
|
82 * polar.m: Typo. |
|
83 |
7213
|
84 2007-11-28 John W. Eaton <jwe@octave.org> |
|
85 |
|
86 * plot/__go_draw_axes__.m (get_data_limits): Delete unused arg TX. |
|
87 |
7211
|
88 2007-11-28 Michael Goffioul <michael.goffioul@gmail.com> |
|
89 |
|
90 * plot/drawnow.m: Fix typo. |
|
91 |
7206
|
92 2007-11-27 David Bateman <dbateman@free.fr> |
|
93 |
7207
|
94 * plot/errorbar.m, plot/loglog.m, plot/loglogerr.m, plot/polar.m, |
|
95 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, |
|
96 plot/semilogyerr.m: Treat an axis handle as the first argument. |
|
97 |
|
98 * plot/meshz.m: New function. |
|
99 * plot/Makefile.in (SOURCES): Add it to the list. |
|
100 * plot/surface.m: Allow surface to accept an axis handle as the |
|
101 first argument. |
|
102 * plot/meshc.m: Extract z from the the surface object rather than |
|
103 varargin so that we can rely on code in surface to treat leading |
|
104 axis handles. |
|
105 |
7206
|
106 * plot/__go_draw_axes__.m: Add nomirror to "set ytics" and "set |
|
107 y2tics" in the case of a plotyy plot. |
|
108 * plot/plotyy.m: ensure the position property is set correct for |
|
109 the second axis, by setting it after the plot itself. In the case |
|
110 of a plot that returns multiple handles, base the color selection |
|
111 on the first. |
|
112 |
7204
|
113 2007-11-27 Kai Habel <kai.habel@gmx.de> |
|
114 |
|
115 * plot/__go_draw_axes__.m: Set quadrilateral color according to |
|
116 z-value of vertex 'c3'. |
|
117 |
7203
|
118 2007-11-27 John W. Eaton <jwe@octave.org> |
|
119 |
|
120 * image/image.m: Allow nargin == 0 case to work again. |
|
121 |
7202
|
122 2007-11-27 David Bateman <dbateman@free.fr> |
|
123 |
|
124 * plot/__go_draw_figure__.m: Force a multiplot mode with a |
|
125 colorbar, to ensure that the colorbar is on the canvas for png and |
|
126 postscipt outputs. |
|
127 |
7189
|
128 2007-11-26 David Bateman <dbateman@free.fr> |
|
129 |
7197
|
130 * sparse/spstats.m, statistics/base/mode.m: More care with sparse |
|
131 return values. |
|
132 |
7194
|
133 * plot/plotyy.m: New function |
|
134 * plot/Makefile.in (SOURCES): Add it here. |
|
135 * plot/__go_draw_axes__.m: Force axis margins for plotyy. Set text |
|
136 color for {x|y|z}label and {x|y|z}tics. Also force the label of |
|
137 {x|y}label to respect the axis position. |
|
138 * plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: Accept an axis |
|
139 handle as the first argument. |
|
140 |
7192
|
141 * pkg/pkg.m (pkg:install): When loading the installed packages |
|
142 index into installed_pkgs_lst and not descriptions.. |
|
143 |
7189
|
144 * plot/quiver3.m, plot/surfnorm.m, plot/__quiver__.m: New functions. |
|
145 * plot/Makefile.in (SOURCES): Add them to the sources. |
|
146 * plot/quiver.m: Modify to use __quiver__.m. |
|
147 |
|
148 * plot/hist.m: Avoid saturation when the x values are in an |
|
149 inetger type. |
|
150 |
|
151 2007-11-26 Jason Riedy <ejr@cs.berkeley.edu> |
|
152 |
|
153 * linear-algebra/condest.m, linear-algebra/onenormest.m: New |
|
154 functions. |
|
155 * linear-algebra/Makefile.in (SOURCES): Add them to the sources. |
|
156 |
|
157 2007-11-26 David Bateman <dbateman@free.fr> |
|
158 |
|
159 * plot/__go_draw_axes__.m: Prevent the cbrange from being of zero |
|
160 extent. |
|
161 |
|
162 * plot/colorbar.m: New function. |
|
163 * plot/Makefile.in (SOURCES): Add it to the sources. |
|
164 * plot/__go_draw_axes__.m: Calculate the colorbar position, |
|
165 precalculate the clim, set pm3d except for mesh. |
|
166 * plot/__contour__.m: Don't scale the contours to clim, but rather |
|
167 save the real values so that colorbar corresponds to the contour |
|
168 levels. |
|
169 |
|
170 * plot/stem.m: Set marker color the same as the line color. Draw |
|
171 a single discontinous line object for the stems. |
|
172 |
|
173 * plot/sphere.m: New function ported from JHandles. |
|
174 * plot/Makefile.in (SOURCES): Add it to the sources. |
|
175 |
|
176 * plot/__go_draw_axes__.m: Pass the have_newer_gnuplot arg to |
|
177 __maybe_munge_text__. Use it to reforce fontname for gnuplot 4.0 |
|
178 to get enhanced mode to work correctly for the X11 terminal. |
|
179 |
|
180 * plot/imagesc.m, plot/image.m: Scale colormap to image and not |
|
181 the reverse. Allow an axes handle to be passed and/or returned. |
|
182 * plot/__go_draw_axes__.m: Autoscale colormap for images. |
|
183 |
|
184 * plot/__go_draw_axes__.m: Add depthorder flag to "set pm3d" to |
|
185 sort surface patches by their depth and not the order they are |
|
186 rendered in. |
|
187 |
|
188 * plot/__patch__.m: Set clim correctly. |
|
189 * plot__go_draw_axes__.m: Allow patch objects to have markers, and |
|
190 the marker color is determined by the cmap. |
|
191 * plot/scatter.m: New function to 2D scatter plots. |
|
192 * plot/scatter3.m: New function to 3D scatter plots. |
|
193 * plot/__scatter__.m: Support function for scatter plots |
|
194 * Makefile.in (SOURCES): Ad dnew functions here. |
|
195 |
|
196 * plot/drawnow.m (open_gnuplot_stream, init_gnuplot_stream): |
|
197 Return whether the terminal supports enhanced text or not. |
|
198 (drawnow:enhanced_term): New sub-function to determine if terminal |
|
199 supports enhanced mode. |
|
200 * plot/__go_draw_figure__.m: Accept enhanced flag and pass to |
|
201 __go_draw_axes__. |
|
202 * plot/__go_draw_axes__.m: Accept enhanced flag and munge text if |
|
203 needed to support the enhanced mode. |
|
204 * plot/print.m: Remove "enhanced" option as this is now treated in |
|
205 drawnow.m. |
|
206 |
|
207 |
|
208 * plot/caxis.m: New function to control the color axis limits. |
|
209 * plot/Makefile.in (SOURCES): Include it. |
|
210 * plot/axis.m: Allow the first argument to be an axes handle. |
|
211 * plot/__go_draw_axes__.m: Move the setting of the caxis, also |
|
212 autoscale caxis for patches. If any(isinf(clim)) don't set the |
|
213 caxis limits. |
|
214 |
|
215 * image/gmap40.m: New gnuplot 4.0 specific colormap fucntion. |
|
216 * image/Makefile.in (SOURCES): Include it. |
|
217 * plot/__bar__.h: Allow axis handles to be passed. Set the color |
|
218 of the bars for the colormap. |
|
219 * plot/bar.m, plot/barh.m: Document that axis handles can be |
|
220 passed. |
|
221 * plot/__contour.m: Avoid possible divide by zero error. |
|
222 * plot/contour.m: Missing semicolon. |
|
223 * plot/surface.m: Don't attempt to set additional arguments if |
|
224 there are none. |
|
225 * plot/Makefile.in (SOURCES): Include __bars__.m |
|
226 |
|
227 2007-11-19 Michael Goffioul <michael.goffioul@gmail.com> |
|
228 |
|
229 * plot/__bar__.m: put bar creation code into separate function |
|
230 to allow easy hook up from other graphic backends |
|
231 |
|
232 * plot/__bars__.m: new function containing bar creation code |
|
233 |
7186
|
234 2007-11-26 Alexander Barth <barth.alexander@gmail.com> |
|
235 |
|
236 * general/accumarray.m: Correct dimension check. |
|
237 |
7183
|
238 2007-11-26 John W. Eaton <jwe@octave.org> |
|
239 |
|
240 * polynomial/residue.m: Prepad along second dimension. |
|
241 From Doug Stewart <dastew@sympatico.ca>. |
|
242 |
7181
|
243 2007-11-26 Kai Habel <kai.habel@gmx.de> |
|
244 |
7183
|
245 * plot/cylinder.m, plot/slice.m: New functions. |
|
246 * plot/Makefile.in (SOURCES): Add them to the list. |
7181
|
247 |
7177
|
248 2007-11-14 Michael Goffioul <michael.goffioul@gmail.com> |
|
249 |
|
250 * plot/patch.m: Handle arg may also be hggroup object. |
|
251 Use ancestor to find parent axes object. |
|
252 |
7175
|
253 2007-11-14 David Bateman <dbateman@free.fr> |
|
254 |
|
255 * plot/__contour__.m: Treat unclosed contours by adding NaN to |
|
256 flag to patch that it is not closed. Allow z to take string |
|
257 arguments and use it to flag that the contours are placed at the |
|
258 z level of the contour itself. |
|
259 * plot/__go_draw_axes__.m: Treat hidden line removal in patch |
|
260 objects as well. Let hidden removal take precedence in case of a |
|
261 conflict. |
|
262 * plot/surface.m: Allow surface to treat handles being passed or |
|
263 returned. Any additional arguments arr used to set the surface |
|
264 handle. |
|
265 * plot/contour3.m: New function |
|
266 * plot/Makefile.in (SOURCES): Add it to the sources. |
|
267 |
7173
|
268 2007-11-14 John W. Eaton <jwe@octave.org> |
|
269 |
|
270 * specfun/bessel.m: Update doc string from |
|
271 src/DLD-FUNCTIONS/besselj.cc. |
|
272 |
7170
|
273 2007-11-12 David Bateman <dbateman@free.fr> |
|
274 |
|
275 * plot/contour.m: Allow handles to be passed and returned. Split |
|
276 the countour function itself into __contour__.m to be shared with |
|
277 surfc and meshc. |
|
278 * plot/__contour__.m: New file |
|
279 * plot/Makefile.in (SOURCES): Add it to the sources. |
|
280 * plot/__go_draw_axes.m: For patch objects don't attempt to patch |
|
281 the face or edge if the facecolor or edge color are marked as |
|
282 "none". Allow the edgecolor to be determined by the cdata in the |
|
283 same manner as the facecolor. Fail if facecolor is not "none" and |
|
284 a 3-D plot is desired, rather than ignoring zdata. Make the |
|
285 storage of 3D/4D data consistent between line, surface and patch |
|
286 objects. |
|
287 * plot/meshc.m: Use new __contour__.m to plot the contours. |
|
288 * plot/surfc.m: Use new __contour__.m to plot the contours. |
7168
|
289 |
|
290 * plot/__go_draw_axes__.m (get_fontname_and_size): |
|
291 Handle fontweight and fontangle properties. |
|
292 |
7163
|
293 2007-11-12 Kai Habel <kai.habel@gmx.de> |
|
294 |
|
295 * plot/spinmap.m, plot/ribbon.m: New functions. |
|
296 * plot/Makefile.in (SOURCES): Add them to the list. |
|
297 |
|
298 2007-11-12 John W. Eaton <jwe@octave.org> |
|
299 |
|
300 * plot/__go_draw_axes__.m (get_fontname_and_size): New subfunction. |
|
301 Use it to avoid duplicated code. |
|
302 |
7161
|
303 2007-11-12 David Bateman <dbateman@free.fr> |
|
304 |
7162
|
305 * plot/title.m: Fix return value for nargout > 0. |
|
306 |
|
307 * plot/__go_draw_axes.m: Allow the font and fontsize to be |
|
308 specified for the title, xlabel, ylabel and text objects. |
|
309 |
7161
|
310 * plot/__go_draw_axes.m: Allow arbitrary colormaps with gnuplot |
|
311 4.0 and surface plots. |
|
312 |
7160
|
313 2007-11-12 Michael Goffioul <michael.goffioul@gmail.com> |
|
314 |
|
315 * plot/__patch__.m: Fix computation of faces when patch is defined |
|
316 with X/Y/Z data. |
|
317 |
7146
|
318 2007-11-09 John W. Eaton <jwe@octave.org> |
|
319 |
7152
|
320 * plot/__go_draw_axes__.m: Correct test for have_data. |
7154
|
321 Correct logic in setting palette data. |
7152
|
322 |
7151
|
323 * audio/wavread.m, control/base/__bodquist__.m, |
|
324 control/base/dare.m, control/base/dlqr.m, control/hinf/h2norm.m, |
|
325 control/system/c2d.m, control/system/is_detectable.m, |
|
326 control/system/is_signal_list.m, control/system/is_stabilizable.m, |
|
327 control/system/tfout.m, general/isdefinite.m, |
|
328 linear-algebra/krylov.m, miscellaneous/compare_versions.m, |
|
329 optimization/glpk.m, path/savepath.m, plot/findobj.m, |
|
330 plot/shading.m, polynomial/mpoles.m, polynomial/polyint.m, |
|
331 signal/freqz.m, signal/hurst.m, sparse/spfun.m, sparse/spones.m, |
|
332 sparse/spstats.m, testfun/assert.m, testfun/fail.m, |
|
333 testfun/test.m: Use specific end keywords. |
|
334 |
7146
|
335 * plot/surfc.m, plot/meshc.m: Don't change view if hold is on. |
|
336 |
|
337 2007-11-09 Kai Habel <kai.habel@gmx.de> |
|
338 |
|
339 * plot/mesh.m, plot/pcolor.m, plot/surf.m, plot/surface.m: |
|
340 Don't change view if hold is on. |
|
341 |
7142
|
342 2007-11-09 David Bateman <dbateman@free.fr> |
|
343 |
7149
|
344 * plot/hidden.m: New function. |
|
345 * plot/Makefile.in (SOURCES): Add it here. |
|
346 * plot/meshc.m, plot/mesh.m: Set facecolor to White for hidden |
|
347 line removal. |
|
348 * plot/__go_draw_axes__.m: If facecolor is white flag hidden line |
|
349 removal and if it is "none" don't do hidden line removal. |
|
350 |
7148
|
351 * plot/legend.m: Also allow labels for surface and patch types. |
|
352 * plot/__bar__.m: Split into separate patch pbjects to allow |
|
353 setting of the legend. |
|
354 * plot/__go_draw_axes__.m: Set titlespec from keylabel for patch |
|
355 objects as well. |
|
356 |
7146
|
357 * plot/area.m, plot/__area__.m: New functions |
|
358 * plot/Makefile.in (SOURCES): Add them to the list of files. |
|
359 |
7142
|
360 * plot/patch.m: Correctly handle case of axis handle as first arg. |
|
361 |
7144
|
362 2007-11-09 Joseph P. Skudlarek <Jskud@Jskud.com> |
|
363 |
|
364 * sparse/spdiags.m: Tweak documentation entries to match other uses. |
|
365 |
7131
|
366 2007-11-08 John W. Eaton <jwe@octave.org> |
|
367 |
7133
|
368 * control/base/dcgain.m, control/base/dre.m, |
|
369 control/base/impulse.m, control/base/step.m, |
|
370 control/system/dmr2d.m, control/system/ord2.m, |
|
371 control/system/sys2ss.m, control/system/sysdimensions.m, |
|
372 control/system/sysgetsignals.m, control/system/sysout.m, |
|
373 control/system/tfout.m, control/system/ugain.m, |
|
374 control/system/zpout.m, control/util/strappend.m: |
|
375 Don't fail with usage message if nargout is too large. |
|
376 |
7131
|
377 * control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
|
378 control/hinf/hinfnorm.m, control/hinf/hinfsyn.m, |
|
379 control/hinf/hinfsyn_chk.m, control/hinf/is_dgkf.m, |
7134
|
380 control/hinf/wgt1o.m, control/obsolete/dezero.m, |
|
381 control/obsolete/dlqg.m, control/obsolete/minfo.m, |
|
382 control/obsolete/packsys.m, control/obsolete/qzval.m, |
|
383 control/obsolete/rotg.m, control/obsolete/series.m, |
|
384 control/obsolete/swapcols.m, control/obsolete/swaprows.m, |
|
385 control/obsolete/syschnames.m, control/obsolete/unpacksys.m, |
7136
|
386 control/system/__syschnamesl__.m, |
|
387 control/system/__syscont_disc__.m, |
|
388 control/system/__sysdefioname__.m, control/system/__sysgroupn__.m, |
|
389 control/system/__tf2sysl__.m, control/system/__zp2ssg2__.m, |
|
390 control/system/abcddim.m, control/system/buildssic.m, |
|
391 control/system/c2d.m, control/system/cellidx.m, |
|
392 control/system/d2c.m, control/system/dmr2d.m, |
|
393 control/system/fir2sys.m, control/system/is_abcd.m, |
|
394 control/system/is_controllable.m, control/system/is_detectable.m, |
|
395 control/system/is_digital.m, control/system/is_observable.m, |
|
396 control/system/is_stabilizable.m, control/system/is_stable.m, |
|
397 control/system/jet707.m, control/system/listidx.m, |
|
398 control/system/parallel.m, control/system/ss.m, |
|
399 control/system/ss2sys.m, control/system/ss2zp.m, |
|
400 control/system/starp.m, control/system/sys2ss.m, |
|
401 control/system/sys2tf.m, control/system/sys2zp.m, |
|
402 control/system/sysadd.m, control/system/sysappend.m, |
|
403 control/system/sysconnect.m, control/system/syscont.m, |
|
404 control/system/sysdimensions.m, control/system/sysdisc.m, |
7135
|
405 control/system/sysdup.m, control/system/sysgetsignals.m, |
|
406 control/system/sysgroup.m, control/system/sysmin.m, |
7136
|
407 control/system/sysmult.m, control/system/sysout.m, |
|
408 control/system/sysprune.m, control/system/sysreorder.m, |
7135
|
409 control/system/sysscale.m, control/system/syssetsignals.m, |
7136
|
410 control/system/syssub.m, control/system/sysupdate.m, |
|
411 control/system/tf.m, control/system/tf2ss.m, |
|
412 control/system/tf2sys.m, control/system/tfout.m, |
|
413 control/system/zp.m, control/system/zp2ss.m, |
|
414 control/system/zp2sys.m, control/system/zp2tf.m, |
|
415 control/system/zpout.m, control/util/__outlist__.m, |
|
416 control/util/__zgpbal__.m, control/util/axis2dlim.m, |
|
417 control/util/prompt.m, control/util/sortcom.m, |
|
418 control/util/zgfmul.m, control/util/zgfslv.m, |
|
419 control/util/zginit.m, control/util/zgreduce.m, |
|
420 control/util/zgrownorm.m, control/util/zgscal.m: Style fixes. |
7131
|
421 |
7130
|
422 2007-11-08 David Bateman <dbateman@free.fr> |
|
423 |
|
424 * plot/quiver.m: Fix arrowheads. |
|
425 |
7128
|
426 2007-11-07 Ben Abbott <bpabbott@mac.com> |
|
427 |
|
428 * set/ismember.m: Call cell_ismember to handle cellstr args. |
7129
|
429 Handle "rows" argument. New tests. |
7128
|
430 (cell_ismember): New function. |
|
431 |
7127
|
432 2007-11-07 John W. Eaton <jwe@octave.org> |
|
433 |
|
434 * control/base/__bodquist__.m, control/base/__freqresp__.m, |
|
435 control/base/__stepimp__.m, control/base/are.m, |
|
436 control/base/ctrb.m, control/base/damp.m, control/base/dare.m, |
|
437 control/base/dcgain.m, control/base/dgram.m, control/base/dlqr.m, |
|
438 control/base/dre.m, control/base/impulse.m, control/base/lqe.m, |
|
439 control/base/lqg.m, control/base/lqr.m, control/base/lsim.m, |
|
440 control/base/ltifr.m, control/base/nichols.m, |
|
441 control/base/nyquist.m, control/base/obsv.m, control/base/place.m, |
|
442 control/base/rlocus.m, control/base/step.m, control/base/tzero.m: |
|
443 Style fixes. |
|
444 |
7125
|
445 2007-11-07 Muthiah Annamalai <muthuspost@gmail.com> |
|
446 |
|
447 * control/base/bode_bounds.m, control/base/dgram.m, |
|
448 control/base/dlyap.m, control/base/freqchkw.m, |
|
449 control/base/gram.m, control/base/place.m, |
|
450 control/hinf/hinf_ctr.m, control/hinf/hinfsyn_chk.m, |
|
451 control/hinf/hinfsyn_ric.m, control/system/is_sample.m, |
|
452 control/system/is_signal_list.m, control/system/ss2tf.m, |
|
453 control/system/sys2fir.m, control/system/sysgettsam.m, |
|
454 control/system/sysgettype.m, control/system/sysreorder.m, |
|
455 control/system/tf2sys.m, control/system/zp2tf.m, |
|
456 control/util/axis2dlim.m, control/util/swap.m, |
|
457 control/util/zgfmul.m, control/util/zgfslv.m, |
|
458 control/util/zginit.m, control/util/zgreduce.m, |
|
459 control/util/zgrownorm.m, control/util/zgscal.m, |
|
460 control/util/zgsgiv.m, control/util/zgshsr.m, general/isa.m, |
|
461 geometry/inpolygon.m, linear-algebra/housh.m, |
|
462 miscellaneous/compare_versions.m, miscellaneous/inputname.m, |
|
463 miscellaneous/run.m, quaternion/qconj.m, |
|
464 quaternion/qcoordinate_plot.m, quaternion/qderiv.m, |
|
465 quaternion/qderivmat.m, quaternion/qinv.m, quaternion/qmult.m, |
|
466 quaternion/qtrans.m, quaternion/qtransvmat.m, signal/fractdiff.m, |
|
467 signal/freqz_plot.m, signal/periodogram.m, signal/rectangle_lw.m, |
|
468 signal/rectangle_sw.m, signal/sinc.m, signal/triangle_lw.m, |
|
469 signal/triangle_sw.m, signal/yulewalker.m, sparse/colperm.m, |
|
470 sparse/etreeplot.m, sparse/nonzeros.m, sparse/spalloc.m, |
|
471 sparse/spones.m, sparse/spy.m, specfun/isprime.m, |
|
472 statistics/distributions/empirical_cdf.m, |
|
473 statistics/distributions/empirical_inv.m, |
|
474 statistics/distributions/empirical_pdf.m, |
|
475 statistics/models/logistic_regression_derivatives.m, |
|
476 statistics/models/logistic_regression_likelihood.m: Check nargin. |
|
477 |
7118
|
478 2007-11-07 David Bateman <dbateman@free.fr> |
|
479 |
7120
|
480 * general/gradient.m: Correctly convert deltax and deltay scalar |
|
481 values are scalars to vectors. |
|
482 |
7119
|
483 * plot/__go_draw_axes__.m: Fix surfaces for gnuplot 4.0 and for |
|
484 the meshc.m function. |
|
485 * plot/meshc.m: Also use the surface function. |
|
486 |
7120
|
487 * plot/meshc.m, plot/quiver.m, plot/surfc.m, : New files. |
7118
|
488 * plot/Makefile.in (SOURCES): Add them to the list. |
|
489 Also add pcolor.m, shading.m, surf.m, and surface.m to the list. |
|
490 |
7117
|
491 2007-11-07 Michael Zeising <michael@michaels-website.de> |
|
492 |
|
493 * audio/wavwrite.m, audio/wavwrite.m: Correct sample scaling. |
|
494 |
7115
|
495 2007-11-07 John W. Eaton <jwe@octave.org> |
|
496 |
|
497 * plot/__go_draw_axes__.m: Also set have_data to false if any of |
|
498 the data limits are infinite. |
|
499 (get_data_limits): Don't do anything if xdat or tx are empty. |
|
500 (get_axis_limits): Don't do anything if min_val or max_val are |
|
501 infinite. |
|
502 |
7112
|
503 2007-11-06 David Bateman <dbateman@free.fr> |
|
504 |
|
505 * plot/hist.m: Pass any additional arguments to bar for |
|
506 treatment. Create a default x value that is always a vector. |
|
507 |
7111
|
508 2007-11-06 Thomas Treichl <Thomas.Treichl@gmx.net> |
|
509 |
|
510 * pkg/pkg.m.m: Check for environment variables CC, CXX, AR, RANLIB |
|
511 when calling ./configure and add quotes to preserve spaces. |
7109
|
512 |
|
513 2007-11-06 Kai Habel <kai.habel@gmx.de> |
|
514 |
|
515 * plot/pcolor.m, plot/shading.m, plot/surf.m, plot/surface.m: |
|
516 New files. |
|
517 * plot/mesh.m: Call surface to do the real work. |
|
518 * plot/__go_draw_axes__.m: Use pm3d mode to handle new surface |
|
519 properties. |
|
520 |
|
521 * image/colormap.m: Also return current colormap if nargout and |
|
522 nargin are both 0. |
|
523 |
7106
|
524 2007-11-05 Michael Goffioul <michael.goffioul@gmail.com> |
|
525 |
|
526 * startup/inputrc: Delete key bindings starting with \340 code. |
|
527 |
7112
|
528 2007-11-05 David Bateman <dbateman@free.fr> |
7101
|
529 |
|
530 * linear-algebra/__norm__.m: Scale frobenius norm by infinity norm |
|
531 to avoid issues of over- and underflow. From Rolf Fabian |
|
532 <Rolf.Fabian@gmx.de>. |
|
533 |
7097
|
534 2007-11-02 Olli Saarela <Olli.Saarela@kcl.fi> |
|
535 |
|
536 * time/asctime.m, general/structfun.m: Fix broken @examples in |
|
537 help texts. |
|
538 |
7096
|
539 2007-11-02 Kai Habel <kai.habel@gmx.de> |
|
540 |
|
541 * plot/bar.m, plot/barh.m: Doc fix. |
|
542 |
7094
|
543 2007-10-31 John W. Eaton <jwe@octave.org> |
|
544 |
|
545 * plot/__go_draw_axes__.m: Call undo_string_escapes on obj.keylabel. |
|
546 |
7086
|
547 2007-10-31 Michael goffioul <michael.goffioul@gmail.com> |
|
548 |
|
549 * plot/subplot.m: Ignore legend objects when parsing existing axes |
|
550 objects and legend objects are implemented with a separate axes |
|
551 object. |
|
552 |
7078
|
553 2007-10-30 David Bateman <dbateman@free.fr> |
|
554 |
7081
|
555 * control/base/DEMOcontrol.m: Doc fixes for small book format. |
|
556 |
7078
|
557 * plot/__go_draw_axes__.m (do_linestyle_command): |
|
558 Use point type 0 for ".". |
|
559 |
7073
|
560 2007-10-26 John W. Eaton <jwe@octave.org> |
|
561 |
7074
|
562 * image/imshow.m: Improve compatibility. |
|
563 * image/image.m: Return handle if nargou > 0. |
|
564 |
7073
|
565 * pkg/pkg.m: Delete PKG_ADD directive for autoloading packes. |
|
566 |
7069
|
567 2007-10-25 John W. Eaton <jwe@octave.org> |
|
568 |
|
569 * miscellaneous/compare_versions.m: Style fixes. |
|
570 |
7060
|
571 2007-10-24 John W. Eaton <jwe@octave.org> |
|
572 |
7061
|
573 * image/saveimage.m: Use functional form of save instead of eval. |
|
574 Use -text instead of -ascii. |
|
575 |
7060
|
576 * plot/__go_draw_axes__.m: Handle visible = "off" for axes objects. |
|
577 |
7054
|
578 2007-10-23 Peter A. Gustafson <petegus@umich.edu> |
|
579 |
|
580 * plot/legend.m: Also extract location string from varargin (lost |
|
581 when 2007-10-08 patch was applied). |
|
582 |
7049
|
583 2007-10-23 David Bateman <dbateman@free.fr> |
|
584 |
|
585 * plot/xlim.m, plot/ylim.m, plot/zlim.m, plot/__axes_limits__.m, |
|
586 miscellaneous/what.m: New functions |
|
587 * plot/Makefile.in, miscellaneous/Makefile.in (SOURCES): Add new |
|
588 functions. |
|
589 |
7045
|
590 2007-10-22 David Bateman <dbateman@free.fr> |
|
591 |
|
592 * miscellaneous/cputime.m, time/tic.m, time/toc.m: Delete. |
|
593 * miscellaneous/Makefile.in (SOURCES): remove cputim.m |
|
594 * time/Makefile.in (SOURCES): Remov tic.m and toc.m |
|
595 |
7042
|
596 2007-10-19 Kai Habel <kai.habel@gmx.de> |
|
597 |
|
598 * plot/contourf.m: New function. |
|
599 * plot/Makefile.in (SOURCES): Add it to the list. |
|
600 |
7040
|
601 2007-10-19 John W. Eaton <jwe@octave.org> |
|
602 |
|
603 * plot/subplot.m: Doc fix. |
|
604 |
7039
|
605 2007-10-19 David Bateman <dbateman@free.fr> |
|
606 |
7041
|
607 * plot/__bar__.m, plot/fill.m: Call newplot as needed. |
7039
|
608 |
7037
|
609 2007-10-17 Carlo de Falco <kingcrimson@tiscali.it> |
|
610 |
|
611 * plot/print.m: Handle -textspecial and -textnormal flags for fig |
|
612 output. |
|
613 |
7031
|
614 2007-10-15 S�ren Hauberg <hauberg@gmail.com> |
|
615 |
|
616 * general/rat.m, sparse/pcg.m, sparse/pcr.m, optimization/sqp.m, |
|
617 statistics/models/logistic_regression.m, polynomial/polygcd.m, |
|
618 control/system/ss.m, signal/arch_rnd.m, control/system/ss2sys.m, |
|
619 control/system/syssetsignals.m, control/base/lqg.m, |
|
620 strings/str2double.m, control/system/sysscale.m, |
|
621 control/hinf/hinfdemo.m, general/cplxpair.m: |
|
622 Make help text fit on pages when using smallbook. |
|
623 |
7028
|
624 2007-10-15 David Bateman <dbateman@free.fr> |
|
625 |
7032
|
626 * plot/print.m: Call drawnow before printing to ensure the plot is |
|
627 on the screen. |
|
628 |
7028
|
629 * testfun/test.m: In error/warning blocks test for an error before |
|
630 a warning to avoid unexpected failures. |
|
631 |
7027
|
632 2007-10-15 Kim Hansen i<kimhanse@gmail.com> |
|
633 |
|
634 * testfun/assert.m: Correct documentation of absolution versus |
|
635 relative error tolerance and add tests. |
|
636 |
7024
|
637 2007-10-14 David Bateman <dbateman@free.fr> |
|
638 |
|
639 * pkg/pkg.m (pkg:configure_make): Treat case of no files to install in |
|
640 src directory. |
|
641 * plot/Makefile.in (SOURCES): Add fill.m. |
|
642 |
7020
|
643 2007-10-13 David Bateman <dbateman@free.fr> |
|
644 |
|
645 * plot/__patch__.m: Allow multiple patches to be defined and |
|
646 return a single patch object. Allow Faces/Vertices form of |
|
647 patch. Flag failure so the patch can call print_usage. |
|
648 * plot/patch.m: Update help string for Faces/Vertices |
|
649 call. Respect the fail flag returned by __patch__. Add demo code |
|
650 that tests the functionality of patch. |
|
651 * plot/__go_draw_axes__.m: Treat an array of patches in a single |
|
652 patch object. |
|
653 * plot/fill.m: New function. |
|
654 |
7016
|
655 2007-10-12 John W. Eaton <jwe@octave.org> |
|
656 |
|
657 * Change copyright notices in all files that are part of Octave to |
|
658 GPLv3 or any later version. |
|
659 |
7012
|
660 2007-10-11 John W. Eaton <jwe@octave.org> |
|
661 |
|
662 * plot/__go_draw_axes__.m (get_axis_limits): |
|
663 Return lim = [] if logscale and no positive values. |
|
664 (__go_draw_axes__): Skip plotting if computed axis limits are empty. |
|
665 Set initial min and min positive values to Inf, max values to -Inf. |
|
666 (get_data_limits): Correctly handle xminp when no positive values |
|
667 are found. |
|
668 |
7011
|
669 2007-10-11 Ben Abbott <bpabbott@mac.com> |
|
670 |
|
671 * polynomial/residue.m: New optional input for pole multiplicity. |
|
672 Doc fix. Fix tests. |
|
673 |
7010
|
674 2007-10-11 Thomas Treichl <Thomas.Treichl@gmx.net> |
|
675 |
|
676 * toplev.cc (Foctave_config_info): Add field "mac". |
|
677 |
|
678 * miscellaneous/ismac.m: New function. |
|
679 * miscellaneous/Makefile.in (SOURCES): Add it to the list. |
|
680 * miscellaneous/ispc.m, miscellaneous/isunix.m: Doc fix. |
|
681 |
7009
|
682 2007-10-11 Arno Onken <asnelt@asnelt.org> |
|
683 |
|
684 * statistics/distributions/hygernd.m: Allow size to be specified |
|
685 as a scalar. Handle three argument case. Allow T, M, and N to be |
|
686 scalars or matrices of a common size. |
|
687 |
7007
|
688 2007-10-11 Brian Gough <bjg@network-theory.co.uk> |
|
689 |
|
690 * control/csrefcard.lt, control/system/is_detectable.m, |
|
691 control/system/sysgroup.m, geometry/voronoin.m, |
|
692 miscellaneous/dir.m, sparse/pcg.m, sparse/treeplot.m, |
|
693 statistics/base/mode.m, statistics/distributions/betarnd.m, |
|
694 statistics/distributions/binornd.m, |
|
695 statistics/distributions/cauchy_rnd.m, |
|
696 statistics/distributions/chi2rnd.m, |
|
697 statistics/distributions/discrete_rnd.m, |
|
698 statistics/distributions/exprnd.m, |
|
699 statistics/distributions/frnd.m, |
|
700 statistics/distributions/gamrnd.m, |
|
701 statistics/distributions/geornd.m, |
|
702 statistics/distributions/laplace_rnd.m, |
|
703 statistics/distributions/logistic_rnd.m, |
|
704 statistics/distributions/lognrnd.m, |
|
705 statistics/distributions/nbinrnd.m, |
|
706 statistics/distributions/normrnd.m, |
|
707 statistics/distributions/poissrnd.m, |
|
708 statistics/distributions/stdnormal_rnd.m, |
|
709 statistics/distributions/trnd.m, |
|
710 statistics/distributions/unifrnd.m, |
|
711 statistics/distributions/wblrnd.m: Spelling fixes. |
|
712 |
7005
|
713 2007-10-10 Thomas Treichl <Thomas.Treichl@gmx.net> |
|
714 |
|
715 * time/tic.m: New optional output value. |
|
716 |
|
717 * general/int2str.m: Doc fix. |
|
718 |
7002
|
719 2007-10-10 Arno Onken <asnelt@asnelt.org> |
|
720 |
|
721 * statistics/distributions/hygecdf.m, |
|
722 statistics/distributions/hygeinv.m, |
|
723 statistics/distributions/hygepdf.m, |
|
724 statistics/distributions/hygernd.m: |
|
725 Swap order of T and M args for compatibility. |
|
726 |
7001
|
727 2007-10-10 Olli Saarela <Olli.Saarela@kcl.fi> |
|
728 |
|
729 * control/hinf/hinfsyn.m, control/hinf/wgt1o.m, |
|
730 control/system/buildssic.m, control/system/c2d.m, |
|
731 control/system/d2c.m, control/system/ord2.m, control/system/ss.m, |
|
732 control/system/ss2sys.m, control/system/ss2tf.m, |
|
733 control/system/syscont.m, control/system/sysdimensions.m, |
|
734 control/system/sysdisc.m, control/system/sysmult.m, |
|
735 control/system/sysrepdemo.m, control/system/tf2ss.m, elfun/lcm.m, |
|
736 finance/fv.m, general/cumtrapz.m, general/gradient.m, |
|
737 general/interp1.m, general/interp2.m, general/interp3.m, |
|
738 general/interpft.m, general/interpn.m, general/polyarea.m, |
|
739 general/rat.m, general/structfun.m, general/trapz.m, |
|
740 geometry/tsearchn.m, image/rgb2hsv.m, linear-algebra/krylov.m, |
|
741 miscellaneous/ans.m, miscellaneous/gzip.m, optimization/glpk.m, |
|
742 optimization/sqp.m, plot/findobj.m, plot/legend.m, plot/peaks.m, |
|
743 plot/plot3.m, plot/stem.m, polynomial/deconv.m, |
|
744 polynomial/pchip.m, polynomial/spline.m, polynomial/unmkpp.m, |
|
745 sparse/pcr.m, sparse/spalloc.m, sparse/spconvert.m, |
|
746 specfun/factor.m, specfun/legendre.m, statistics/base/mean.m, |
|
747 statistics/base/meansq.m, statistics/base/var.m, |
|
748 statistics/tests/chisquare_test_independence.m, |
|
749 statistics/tests/t_test.m, statistics/tests/u_test.m, |
|
750 strings/dec2base.m, strings/mat2str.m, testfun/speed.m, |
|
751 testfun/test.m: Spelling fixes. |
|
752 |
6998
|
753 2007-10-10 Ben Abbott <bpabbott@mac.com> |
|
754 |
|
755 * polynomial/mpoles.m: Return indx = ordr(indx), not indx(ordr). |
|
756 |
6997
|
757 2007-10-10 John W. Eaton <jwe@octave.org> |
|
758 |
|
759 * general/num2str.m: Always allow for sign for automatically |
|
760 computed format widths. |
|
761 |
6988
|
762 2007-10-09 David Bateman <dbateman@free.fr> |
|
763 |
|
764 * plot/patch.m: Accept a handle as the first argument. |
|
765 |
6987
|
766 2007-10-09: Kim Hansen <kimhanse@gmail.com> |
|
767 |
7010
|
768 * general/repmat.m: Handle sparse input. Add tests. |
6987
|
769 |
6985
|
770 2007-10-09 John W. Eaton <jwe@octave.org> |
|
771 |
|
772 * audio/wavwrite.m: Accept arguments in compatible order. |
|
773 |
6979
|
774 2007-10-08 David Bateman <dbateman@free.fr> |
|
775 |
|
776 * general/interp2.m: Relax test for values outside the grid to |
|
777 allow monotonically decreasing abscissa as well. |
|
778 |
6978
|
779 2007-10-08 Ben Abbott <bpabbott@mac.com> |
|
780 |
|
781 * polynomial/residue.m: Doc fix. Add tests. Restore multiplicity |
|
782 as output parameter. |
|
783 |
6977
|
784 2007-10-08 Peter A. Gustafson <petegus@umich.edu> |
|
785 |
|
786 * plot/__go_draw_axes__.m, plot/legend.m: |
|
787 Handle compatible position specifiers as strings. |
|
788 |
6975
|
789 2007-10-08 John Swensen <jpswensen@comcast.net> |
|
790 |
|
791 * general/num2str.m: Eliminate extra whitespace in output. |
|
792 * strings/strtrim.m: New function. |
|
793 * strings/Makefile.in (SOURCES): Add it to the list. |
|
794 |
6968
|
795 2007-10-06 John W. Eaton <jwe@octave.org> |
|
796 |
|
797 * polynomial/residue.m: New test from test/test_poly.m. |
|
798 |
6967
|
799 2007-10-06 S�ren Hauberg <hauberg@gmail.com> |
|
800 |
|
801 * image/saveimage.m: Handle saving color images without a colormap. |
|
802 * image/__img_via_file__.m: Add missing semicolon. |
|
803 |
|
804 2007-10-06 Bill Denney <wsloand@gmail.com> |
|
805 |
7010
|
806 * general/__splinen__.m, general/isscalar.m, general/rat.m, |
6967
|
807 strings/dec2base.m: Use numel(x) instead of prod(size(x)). |
|
808 |
6965
|
809 2007-10-06 Francesco Potorti` <Potorti@isti.cnr.it> |
|
810 |
|
811 * plot/print.m: Handle svg output type. Accept new -S option to |
|
812 specify size for PNG and SVG output types. |
|
813 |
|
814 2007-10-05 Ben Abbott <bpabbott@mac.com> |
6964
|
815 |
|
816 * polynomial/mpoles.m: New function. |
|
817 * polynomial/residue.m: Modified to behave in reciprocal |
|
818 manner. No longer compute 4th output, "e". No longer accept |
|
819 tolerance input. Explicitly set tolerance parameter to 0.001. |
|
820 Respect maximum relative difference in poles when determining |
|
821 their multiplicity. Use mpoles to determine the multiplicity of |
|
822 poles. |
|
823 |
6963
|
824 2007-10-05 Peter A. Gustafson <petegus@umich.edu> |
|
825 |
|
826 * plot/__go_draw_axes__.m: Add cbrange to the plot stream |
|
827 for surface plots. |
|
828 |
6962
|
829 2007-10-05 John W. Eaton <jwe@octave.org> |
|
830 |
|
831 * plot/__next_line_color__.m: Get color_rotation from axes |
|
832 colororder property. |
|
833 |
6953
|
834 2007-10-03 John W. Eaton <jwe@octave.org> |
|
835 |
6955
|
836 * miscellaneous/dir.m: Handle symbolic links in compatible way. |
|
837 Use S_ISDIR (st.mode) instead of checking st.modestr(1) == "d". |
|
838 |
6953
|
839 * linear-algebra/Makefile.in (SOURCES): Rename norm.m to __norm__.m. |
|
840 * linear-algebra/__norm__.m: Rename from norm.m. Eliminate |
|
841 special for __vnorm__. |
|
842 |
6951
|
843 2007-10-03 Quentin Spencer <qspencer@ieee.org> |
|
844 |
6952
|
845 * linear-algebra/norm.m: Special case vector 1-norm and 2-norm. |
6951
|
846 |
6950
|
847 2007-10-03 David Bateman <dbateman@free.fr> |
|
848 |
|
849 * pkg/pkg.m (is_architecture_dependent): New function to identify |
|
850 if a file is architecture dependent based on a list of file |
|
851 extensions. |
|
852 (configure_make): Simplify the search for architecture dependent |
|
853 files based on this function. |
|
854 (load_pakages_and_dependencies): Also look for bin directory in |
|
855 the architecture dependent directory. |
|
856 |
6947
|
857 2007-10-03 John W. Eaton <jwe@octave.org> |
|
858 |
|
859 * miscellaneous/dir.m: Create empty struct with field names. |
|
860 Include datenum in struct. |
|
861 |
6943
|
862 2007-10-02 David Bateman <dbateman@free.fr> |
|
863 |
|
864 * miscellaneous/ls.m: If nargout return string array of files |
|
865 returned by ls. |
|
866 |
6942
|
867 2007-10-01 John W. Eaton <jwe@octave.org> |
|
868 |
|
869 * plot/__go_draw_axes__.m: Use %.15e instead of %.15g when setting |
|
870 range values. |
|
871 |
6937
|
872 2007-10-01 David Bateman <dbateman@free.fr> |
|
873 |
7010
|
874 * linear-algebra/norm.m: Inline the isvector(x) calculation for |
6938
|
875 speed with small vectors. |
6937
|
876 * pkg/pkg.m (archprefix): Set using octave_config_info("libexecdir") |
|
877 rather than OCTAVE_HOME(). |
|
878 |
6935
|
879 2007-09-30 Ben Abbott <bpabbott@mac.com> |
|
880 |
|
881 * plot/findobj.m: New function. |
|
882 * plot/Makefile.m (SOURCES): Add it to SOURCES. |
|
883 |
6925
|
884 2007-09-26 David Bateman <dbateman@free.fr> |
|
885 |
|
886 * pkg/pkg.m: Add second argument to setting for prefix for |
|
887 architecture dependent files. Use throughout. |
|
888 (pkg:issuperuser): New function, use through to check for |
|
889 root user. |
|
890 (pkg:getarchprefix): function to give the archiecture dependent |
|
891 prefix for a package. |
|
892 (pkg:getarchdir): New function giving location of architetcure |
|
893 dependent directory. Use through out. |
|
894 (pkg:install): Treat architecture dependent directory separately |
|
895 as in might not be a sub-directory of the package directory. |
|
896 (pkg:uninstall): ditto. |
|
897 (pkg:create_pkgadddel): Check for global or local install for |
|
898 architecture dependent directory. |
|
899 (pkg:finish_installation): ditto. |
|
900 (pkg:write_INDEX): ditto. |
|
901 (pkg:load_packages_and_dependencies): ditto. |
|
902 (pkg:copy_files): ditto. Add step to copy architecture dependent |
|
903 files to a new location if user is root. |
|
904 (pkg:rm_rf): Check if file or directory exists before removing. |
|
905 (pkg:dirempty): Check if directory exists before checking. |
|
906 |
|
907 * plot/___patch__.m: Allow face colors to be passed as strings |
|
908 |
|
909 * plot/__plt_get_axis_arg__.m: Treat case of empty "varargin" |
|
910 needed for calls to "hold" without an argument. |
|
911 |
6920
|
912 2007-09-21 John W. Eaton <jwe@octave.org> |
|
913 |
6921
|
914 * optimization/sqp.m: Fix typo. |
|
915 |
6920
|
916 * plot/__go_draw_axes__.m (do_tics_1): Use %g, not %.15g here. |
|
917 |
6919
|
918 2007-09-21 Luther Tychonievich <lty@cs.byu.edu> |
|
919 |
|
920 * control/hinf/h2norm: Compute d*d', not d'*d. |
|
921 |
6918
|
922 2007-09-21 Thomas Weber <thomas.weber.mail@gmail.com> |
|
923 |
|
924 * statistics/distributions/Makefile.in (SOURCES): Add unidcdf.m, |
|
925 unidpdf.m and unidinv.m |
|
926 |
6914
|
927 2007-09-18 John W. Eaton <jwe@octave.org> |
|
928 |
|
929 * plot/__go_draw_axes__.m: Use %.15g throughout. |
|
930 (do_tics_1): Set numeric axes formats to "%.15g". |
|
931 |
6912
|
932 2007-09-18 David Bateman <dbateman@free.fr> |
|
933 |
|
934 * plot/__go_draw_axes__.m (__gnuplot_write_data__): Use %e instead |
|
935 of %g when writing data. |
|
936 |
6908
|
937 2007-09-17 John W. Eaton <jwe@octave.org> |
|
938 |
|
939 * plot/__go_draw_axes__.m: Omit linestyle clause for errorbar plots. |
|
940 |
6903
|
941 2007-09-14 Ulrich Tipp <ulrich.tipp@hsnr.de> |
|
942 |
|
943 * miscellaneous/bincoeff.m: Fix calculation of bincoeff (n, k) for |
|
944 noninteger N with N-K < 1. |
|
945 |
6901
|
946 2007-08-04 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
|
947 |
|
948 * strings/index.m: Correct for strings differing after the third |
|
949 position (bug reported by Maude Martin). |
|
950 |
6895
|
951 2007-09-13 John W. Eaton <jwe@octave.org> |
|
952 |
|
953 * plot/__default_colormap__.m: Delete. |
|
954 * plot/Makefile (SOURCES): Remove from the list. |
|
955 |
6898
|
956 2007-09-13 Christof Zeile <cz-oct07@cvmx.com> |
|
957 |
|
958 * pol2cart.m: Make it work with mixed scalar/nonscalar arguments. |
|
959 |
6885
|
960 2007-09-10 David Bateman <dbateman@free.fr> |
|
961 |
|
962 * plot/__go_draw_axes__.m: Allow gnuplot 4.0 with patches, but |
|
963 limit the selection of colors in the same way as for lines. |
|
964 * plot/__patch__.m: Allow matrix arguments with one patch per |
|
965 column. |
|
966 * plot/__bar__.m: Adapt to use "patch". |
|
967 |
6870
|
968 2007-09-06 John W. Eaton <jwe@octave.org> |
|
969 |
|
970 * plot/drawnow.m (drawnow): New arg, debug_file. |
|
971 (init_plot_stream): Split from open_plot_stream. |
|
972 * plot/print.m: Accept -debug=FILE argument. |
|
973 |
6868
|
974 2007-09-06 David Bateman <dbateman@free.fr> |
|
975 |
7010
|
976 * general/celldisp.m: New function. |
|
977 * general/Makefile.in (SOURCES): Add celldisp.m. |
|
978 * miscellaneous/swapbytes.m: New function. |
|
979 * miscellaneous/gzip.m: New function. |
|
980 * miscellaneous/Makefile.in (SOURCES): Add swapbytes.m and gzip.m. |
6868
|
981 |
6863
|
982 2007-09-05 David Bateman <dbateman@free.fr> |
|
983 |
7010
|
984 * general/structfun.m: New function. |
|
985 * general/Makefile.in (SOURCES): Add it to sources. |
|
986 * miscellaneous/run.m: New function. |
|
987 * miscellaneous/Makefile.in (SOURCES): Add it to sources. |
|
988 * statistics/base/mode.m: New function. |
|
989 * statistics/base//Makefile.in (SOURCES): Add it to sources. |
6863
|
990 |
6862
|
991 2007-09-05 John W. Eaton <jwe@octave.org> |
|
992 |
|
993 * miscellaneous/orderfields.m: Use numel instead of length. |
|
994 |
|
995 2007-09-05 Michael goffioul <michael.goffioul@gmail.com> |
|
996 |
|
997 * miscellaneous/orderfields.m: Handle empty structs. |
|
998 |
6861
|
999 2007-09-05 John W. Eaton <jwe@octave.org> |
|
1000 |
|
1001 * plot/__go_draw_axes__.m: Consistently index PARAMETRIC with |
|
1002 DATA_IDX. |
|
1003 |
|
1004 2007-09-04 David Bateman <dbateman@free.fr> |
|
1005 |
|
1006 * general/isdir.m: Return a logical value. |
|
1007 |
6859
|
1008 2007-09-04 David Bateman <dbateman@free.fr> |
|
1009 |
|
1010 * statistics/distributions/chi2pdf.m, |
|
1011 statistics/distributions/chi2cdf.m, |
|
1012 statistics/distributions/chi2inv.m: Modifiy the call to the gamma |
|
1013 distribution functions to account for inverse of scale factor in |
|
1014 gamma functions. |
|
1015 |
6857
|
1016 2007-09-01 John W. Eaton <jwe@octave.org> |
|
1017 |
|
1018 * plot/Makefile.in (SOURCES): Add ancestor.m to the list. |
|
1019 |
6853
|
1020 2007-09-01 David Bateman <dbateman@free.fr> |
|
1021 |
|
1022 * polynomial/polyint.m: New function like polyinteg but with |
|
1023 explicit integration constant. |
|
1024 * polynomial/polyinteg.m: Remove. |
|
1025 * polynomial/Makefile.in (SOURCES): Add polyint.m and remove |
|
1026 polyinteg.m. |
|
1027 * deprecated/polyinteg.m: Move version here. |
|
1028 * deprecated/Makefile.in (SOURCES): Add polyinteg.m. |
|
1029 |
6852
|
1030 * geometry/voronoi.m: Add large box around data to get a good |
|
1031 approximation of the rays to infinity. |
|
1032 |
6851
|
1033 2007-08-31 Michael goffioul <michael.goffioul@gmail.com> |
|
1034 |
|
1035 * plot/axes.m: Allow parent to be specified when creating axes |
|
1036 objects. Support non-figure parents. |
|
1037 |
|
1038 2007-08-31 John W. Eaton <jwe@octave.org> |
|
1039 |
|
1040 * plot/ancestor.m: New function, adapted from Octave Forge. |
|
1041 |
6850
|
1042 2007-08-31 S�ren Hauberg <hauberg@gmail.com> |
|
1043 |
7010
|
1044 * polynomial/polygcd.m: Better layout of example. |
|
1045 * polynomial/compan.m: Remove unnecessary check. |
|
1046 * polynomial/roots.m: Added example to help text. |
|
1047 * polynomial/polyderiv.m: Change 'polyder' to 'polyderiv' in help text. |
|
1048 * polynomial/poly.m: Added example to help text. |
6850
|
1049 |
6848
|
1050 2007-08-30 John W. Eaton <jwe@octave.org> |
|
1051 |
|
1052 * optimization/qp.m: Increase maxit to 200. |
|
1053 |
6847
|
1054 2007-08-30 David Bateman <dbateman@free.fr> |
|
1055 |
|
1056 * geometry/inpolygon.m: New file. |
|
1057 * geometry/Makefile.in (SOURCES): Add inpolygon.m. |
|
1058 |
6843
|
1059 2007-08-29 Peter A. Gustafson <petegus@umich.edu> |
|
1060 |
|
1061 * plot/__go_draw_axes__.m: Disable linetype in do_linestyle_command. |
|
1062 |
6829
|
1063 2007-08-24 David Bateman <dbateman@free.fr> |
|
1064 |
|
1065 * plot/__go_draw_axes__.m: Treat text color property. |
|
1066 |
6828
|
1067 2007-08-24 John W. Eaton <jwe@octave.org> |
|
1068 |
|
1069 * plot/subplot.m, plot/plot.m, plot/grid.m: |
|
1070 Use p = get (h, "prop") instead of obj = get (h); p = obj.prop. |
|
1071 |
|
1072 * miscellaneous/movefile.m: Separate second and third args and |
|
1073 use p1 and p2, not f1 and f2 when constructing arguments for |
|
1074 calls to system. From Michael Goffioul <michael.goffioul@gmail.com>. |
|
1075 |
6825
|
1076 2007-08-24 Michael Goffioul <michael.goffioul@gmail.com> |
|
1077 |
|
1078 * set/intersect.m: Make it work with cell arrays of strings. |
|
1079 |
6823
|
1080 2007-08-24 David Bateman <dbateman@free.fr> |
|
1081 |
7010
|
1082 * geometry/convhull.m, geometry/delaunay.m, geometry/delaunay3.m, |
6823
|
1083 geometry/griddata.m, geometry/voronoi.m, geometry/voronoin.m: New |
|
1084 functions ported from octave-forge. |
7010
|
1085 * geometry/delaunayn.m, geometry/dsearch.m, geometry/dsearchn.m, |
6823
|
1086 geometry/griddata3.m, geometry/griddatan.m, geometry/trimesh.m, |
|
1087 geometry/triplot.m, geometry/tsearchn.m: |
|
1088 New functions. |
7010
|
1089 * geometry/voronoi.m: Remove duplicate edges from Voronoi diagram. |
|
1090 * geometry/Makefile.in (SOURCES): Add functions above. |
|
1091 * configure.in (AC_CONFIG_FILES): Add new file geometry/Makefile. |
6823
|
1092 |
6820
|
1093 2007-08-23 John W. Eaton <jwe@octave.org> |
|
1094 |
|
1095 * pkg/pkg.m: Avoid using installed_packages for both function and |
|
1096 variable name. |
|
1097 |
|
1098 2007-08-23 David Bateman <dbateman@free.fr> |
|
1099 |
|
1100 * plot/plot.m: Allow first arg to be axes handle. |
|
1101 |
6818
|
1102 2007-08-22 David Bateman <dbateman@free.fr> |
|
1103 |
|
1104 * control/base/nichols.m: Correct for misnamed variable, and ensure |
|
1105 outputs are returned only if requested. |
|
1106 |
|
1107 2007-08-22 Donald Parsons <dparsons@brightdsl.net> |
|
1108 |
|
1109 * control/base/nichols.m: Fix typo. |
|
1110 |
6813
|
1111 2007-08-13 John W. Eaton <jwe@octave.org> |
|
1112 |
|
1113 * plot/meshgrid.m: Use repmat instead of multiplication. |
|
1114 |
6809
|
1115 2007-08-10 Peter A. Gustafson <petegus@umich.edu> |
|
1116 |
|
1117 * plot/__go_draw_axes__.m: Add axes position to the usingclause, |
|
1118 use axes position in each appropriate gnuplot set statement. |
|
1119 |
6808
|
1120 2007-08-10 John W. Eaton <jwe@octave.org> |
|
1121 |
|
1122 * image/Makefile.in (DISTFILES): Also include $(IMAGES) in the list. |
|
1123 (install install-strip): Use $(IMAGES), not $(IMAGE_FILES_NO_DIR). |
|
1124 (uninstall): Use $(IMAGES), not $(IMAGE_FILES_NO_DIR). |
|
1125 (IMAGE_FILES, IMAGE_FILES_NO_DIR): Delete obsolete variables. |
|
1126 |
6807
|
1127 2007-08-10 Kai Habel <kai.habel@gmx.de> |
|
1128 |
|
1129 * plot/patch.m, plot/__patch__.m: New files. |
|
1130 * plot/Makefile.in (SOURCES): Add them to the list. |
|
1131 |
|
1132 2007-08-07 John W. Eaton <jwe@octave.org> |
|
1133 |
|
1134 * path/savepath.m: Use single quotes for argument to PATH command |
|
1135 that is inserted in file. |
|
1136 |
6805
|
1137 2007-07-27 John W. Eaton <jwe@octave.org> |
|
1138 |
|
1139 * plot/drawnow.m: Only set default value for term if GNUTERM is |
|
1140 not set in the environment. |
|
1141 |
6796
|
1142 2007-07-25 David Bateman <dbateman@free.fr> |
|
1143 |
|
1144 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
1145 control/base/Makefile.in, control/hinf/Makefile.in, |
|
1146 control/obsolete/Makefile.in, control/system/Makefile.in, |
|
1147 control/util/Makefile.in, deprecated/Makefile.in, |
|
1148 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, |
|
1149 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, |
|
1150 miscellaneous/Makefile.in, optimizaton/Makefile.in, |
|
1151 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, |
|
1152 polynomial/Makefile.in, quaternion/Makefile.in, |
|
1153 set/Makefile.in, signal/Makefile.in, sparse/Makefile.in, |
|
1154 specfun/Makefile.in, special-matrix/Makefile.in, |
|
1155 startup/Makefile.in, statistics/Makefile.in, |
|
1156 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
1157 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
1158 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: |
|
1159 Adjust DISTFILES to allow out of tree "make dist" to work. |
|
1160 |
6795
|
1161 2007-07-25 John W. Eaton <jwe@octave.org> |
|
1162 |
|
1163 * plot/__plt2__.m: Return [](0x1) if both X and Y are empty. |
|
1164 |
6793
|
1165 2007-07-24 David Bateman <dbateman@free.fr> |
|
1166 |
|
1167 * image/flag.m: New colormap function. |
|
1168 * images/Makefile.in: Include it in SOURCES. |
|
1169 |
|
1170 * image/autumn.m image/bone.m image/cool.m image/copper.m |
|
1171 image/hot.m image/hsv.m image/jet.m image/pink.m image/prism.m |
|
1172 image/rainbow.m image/spring.m image/summer.m image/white.m |
|
1173 image/winter.m, image/brighten.m: Use isscalar and not is_scalar. |
|
1174 * image/gray.m, image/ocean.m: Use the same means of finding the |
|
1175 number of colormap elements as the other colormap functions. |
|
1176 |
6790
|
1177 2007-07-24 Kai Habel <kai.habel@gmx.de> |
|
1178 |
|
1179 * plot/__go_draw_axes__.m: Handle patch. |
|
1180 |
6788
|
1181 2007-07-23 David Bateman <dbateman@free.fr> |
|
1182 |
|
1183 * general/rat.m: New function for ration approximation imported |
|
1184 from octave-forge. |
|
1185 * general/del2.m: New function for discrete laplacian operator. |
|
1186 * general/Makefile.in: Include rat.m and del2.m in SOURCES. |
|
1187 |
|
1188 * image/autumn.m image/bone.m image/cool.m image/copper.m |
|
1189 image/hot.m image/hsv.m image/jet.m image/pink.m image/prism.m |
|
1190 image/rainbow.m image/spring.m image/summer.m image/white.m |
|
1191 image/winter.m, image/brighten.m: Port image functions from |
|
1192 octave-forge. |
|
1193 * image/Makefile.in: Add ported functions to SOURCES. |
|
1194 * image/gray.m, image/ocean.m: Don't set the colormap for |
|
1195 compatibility with matlab. |
|
1196 |
|
1197 * plot/meshc.m, plot/peaks.m: Port plotting function from |
|
1198 octave-forge |
|
1199 * plot/Makefile.in: Add ported functions to SOURCES. |
|
1200 * plot/__go_draw_axes__.m: Set the palette for the surfaces if |
|
1201 using gnuplot 4.2 or greater. |
|
1202 |
6785
|
1203 2007-07-23 Claudio Belotti <c.belotti@imperial.ac.uk> |
|
1204 |
|
1205 * general/cart2sph.m: Fix unbalanced paranthesis. |
|
1206 |
6781
|
1207 2007-07-19 David Bateman <dbateman@free.fr> |
|
1208 |
|
1209 * plot/fplot.m: More compatible version. |
|
1210 |
6780
|
1211 2007-07-18 Michael Goffioul <michael.goffioul@gmail.com> |
|
1212 |
|
1213 * plot/clf.m: Check for valid handle before deleting. |
|
1214 |
|
1215 * plot/figure.m: Pass "figure" property/value pairs directly to |
|
1216 __go_figure__ instead of using regular "set" call. |
|
1217 |
6779
|
1218 2007-07-18 Paul Kienzle <pkienzle@users.sf.net> |
|
1219 |
|
1220 * plot/drawnow.m: Prefer GNUTERM to DISPLAY when choosing terminal |
|
1221 type for gnuplot. |
|
1222 |
6778
|
1223 2007-07-18 John W. Eaton <jwe@octave.org> |
|
1224 |
|
1225 * plot/__go_draw_axes__.m: Unconditionally send "unset label" to |
|
1226 gnuplot for each set of axes. |
|
1227 |
6777
|
1228 2007-07-18 David Bateman <dbateman@free.fr> |
|
1229 |
6778
|
1230 * statistics/distributions/gamcdf.m, statistics/distributions/gaminv.m, |
|
1231 statistics/distributions/gampdf.m, statistics/distributions/gamrnd.m, |
|
1232 statistics/distributions/expcdf.m, statistics/distributions/expinv.m, |
|
1233 statistics/distributions/exppdf.m, statistics/distributions/exprnd.m: |
|
1234 Use standard scale factor rather than one on the scale factor for |
|
1235 compatibility. |
|
1236 |
|
1237 * deprecated/gamma_cdf.m, deprecated/gamma_inv.m, |
|
1238 deprecated/gamma_pdf.m, deprecated/gamma_rnd.m, |
|
1239 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, |
|
1240 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m: |
|
1241 Preserve backward compatibility. |
6777
|
1242 |
6776
|
1243 2007-07-17 Michael Goffioul <michael.goffioul@gmail.com> |
|
1244 |
|
1245 * pkg/pkg.m (pkg:installed_packages): Use findstr rather than regexp |
|
1246 to avoid issues with regexp special characters in the path strings. |
|
1247 |
6770
|
1248 2007-07-06 David Bateman <dbateman@free.fr> |
|
1249 |
6778
|
1250 * general/accumarray.m: New function to create an array by |
|
1251 accumulating the elements. |
6770
|
1252 |
6768
|
1253 2007-06-29 Marcus W. Reble <reble@wisc.edu> |
|
1254 |
|
1255 * optimization/sqp.m (sqp): New args, lb, ub, maxiter, and tolerance. |
|
1256 (fdjac): Set nx outside of if block. |
|
1257 (cf_ub_lb, cigrad_ub_lb): New subfunctons. |
|
1258 |
6765
|
1259 2007-06-28 Michael Goffioul <michael.goffioul@gmail.com> |
|
1260 |
|
1261 * plot/subplot.m: Add 'ishandle' check when parsing the existing axes. |
|
1262 |
|
1263 * plot/axis.m: Also set "visible" property when setting axes to |
|
1264 on/off. |
|
1265 |
6762
|
1266 2007-06-27 Michael Goffioul <michael.goffioul@swing.be> |
|
1267 |
|
1268 * image/colormap.m: Only return colormap if nargout > 0. |
|
1269 Mark as command. |
|
1270 |
6758
|
1271 2007-06-25 John W. Eaton <jwe@octave.org> |
|
1272 |
|
1273 * plot/drawnow.m, plot/__go_draw_axes__.m: Use strcmpi instead of |
|
1274 strcmp for selected property comparisons. |
|
1275 |
6756
|
1276 2007-06-25 S�ren Hauberg <hauberg@gmail.com> |
|
1277 |
6778
|
1278 * image/imshow.m: Fix check for colormap arguments. |
6756
|
1279 |
6754
|
1280 2007-06-25 Joel Keay <keay@nhn.ou.edu> |
|
1281 |
|
1282 * plot/drawnow.m: Handle GNUTERM=aqua if DISPLAY is not set. |
|
1283 |
6756
|
1284 2007-06-25 S�ren Hauberg <hauberg@gmail.com> |
6754
|
1285 |
6778
|
1286 * statistics/base/median.m: Update help text to mention 'dim' |
6754
|
1287 argument, and note that the data should be sorted for the |
|
1288 definition of the median to be correct. |
|
1289 |
6778
|
1290 * statistics/base/std.m: Add missing square to definition of |
6754
|
1291 standard deviation. |
|
1292 |
6778
|
1293 * statistics/base/cov.m: Add definition of covariance to the help text. |
|
1294 |
|
1295 * statistics/base/kurtosis.m, statistics/base/skewness.m, |
6754
|
1296 statistics/base/std.m: |
|
1297 Note that \bar{x} is the mean value of x in the help text. |
|
1298 |
6778
|
1299 * specfun/nchoosek.m: Add alternative definition of the binomial |
6754
|
1300 coefficient to the help text. |
|
1301 |
6778
|
1302 * specfun/perms.m, statistics/base/values.m: Add example in help text. |
|
1303 |
|
1304 * statistics/base/var.m: Put N in @math in help text. |
|
1305 |
|
1306 * statistics/base/qqplot.m, statistics/base/ppplot.m, |
6754
|
1307 statistics/tests/kolmogorov_smirnov_test.m: |
|
1308 Write about possible values of 'dist' in help text. |
|
1309 |
6778
|
1310 * statistics/base/corrcoef.m, statistics/base/cor.m: |
6754
|
1311 Add definition of correlation to the help text. |
|
1312 |
6778
|
1313 * statistics/base/logit.m, statistics/base/kendall.m, |
|
1314 statistics/base/cloglog.m, statistics/tests/hotelling_test_2.m, |
6754
|
1315 statistics/distributions/wblcdf.m, statistics/distributions/wblpdf.m: |
|
1316 TeXification of help text. |
|
1317 |
|
1318 * statistics/tests/hotelling_test.m: Write T^2 in @math in help text. |
|
1319 |
|
1320 * statistics/tests/var_test.m, statistics/tests/welch_test.m: |
|
1321 Add missing @var's to help text. |
|
1322 |
|
1323 * statistics/models/logistic_regression.m: Fix typos in help text. |
|
1324 |
|
1325 * statistics/distributions/kolmogorov_smirnov_cdf.m: Fix TeX part |
|
1326 of help text. |
|
1327 |
|
1328 * statistics/distributions/unidinv.m: Add a missing 'discrete' to |
|
1329 help text. |
|
1330 |
|
1331 * statistics/distributions/unidpdf.m, |
|
1332 statistics/distributions/discrete_pdf.m: |
|
1333 Replace 'pDF' with 'PDF' in help text. |
|
1334 |
6753
|
1335 2007-06-25 John W. Eaton <jwe@octave.org> |
|
1336 |
|
1337 * strings/substr.m: Use offset consistently in code and doc string. |
|
1338 From Rafael Laboissiere <rafael@debian.org>. |
|
1339 |
6752
|
1340 2007-06-25 Pete Gustafson <petegus@umich.edu> |
|
1341 |
6778
|
1342 * plot/__go_draw_axes__.m: Handle units for text objects. |
6752
|
1343 |
6751
|
1344 2007-06-25 John W. Eaton <jwe@octave.org> |
|
1345 |
|
1346 * plot/__go_draw_axes__.m: Handle char arrays for tic labels. |
|
1347 Recycle tic labels if necessary. From Juhani Saastamoinen |
|
1348 <juhani@cs.joensuu.fi>. |
|
1349 |
6748
|
1350 2007-06-20 John W. Eaton <jwe@octave.org> |
|
1351 |
6749
|
1352 * strings/index.m: Allow strings to be empty. |
|
1353 From Hartmut Wziontek <hwz@hwz.bv.TU-Berlin.DE> |
|
1354 |
6748
|
1355 * plot/__go_draw_axes__.m (do_tics_1): Fix typo (xtic -> tics). |
|
1356 |
6747
|
1357 2007-06-19 Vittoria Rezzonico <vittoria.rezzonico@epfl.ch> |
|
1358 |
|
1359 * sparse/pcg.m: Allow the preconditioner to be passed as two |
|
1360 separate matrices. |
|
1361 |
6746
|
1362 2007-06-19 David Bateman <dbateman@free.fr> |
|
1363 |
|
1364 * plot/axis.m: Prefer to use legend rather than the older Octave |
|
1365 only ";;" legend syntax. |
|
1366 * polynomial/mkpp.m: ditto. |
|
1367 * polynomial/pchip.m: ditto. |
|
1368 * signal/freqz_plot.m: ditto. |
|
1369 * sparse/gplot.m: ditto. |
|
1370 * sparse/treeplot.m: ditto. |
|
1371 |
6745
|
1372 2007-06-19 John W. Eaton <jwe@octave.org> |
|
1373 |
|
1374 * plot/__go_draw_axes__.m (do_tics, do_tics_1): New functions. |
|
1375 (__go_draw_axes__): Call do_tics to handle tic marks. |
|
1376 |
6742
|
1377 2007-06-18 S�ren Hauberg <hauberg@gmail.com> |
|
1378 |
6778
|
1379 * general/interp1.m, general/interp2.m, general/interp3.m, |
6742
|
1380 general/interpn.m: Replace, NaN with NA. Use isna instead of == |
|
1381 to check for NA. |
|
1382 |
6741
|
1383 2007-06-18 S�ren Hauberg <hauberg@gmail.com> |
|
1384 |
6778
|
1385 * optimization/glpk.m: TeXified the help text. |
|
1386 * optimization/qp.m: TeXified the help text. |
|
1387 * optimization/sqp.m: TeXified the help text. |
6741
|
1388 |
6740
|
1389 2007-06-16 S�ren Hauberg <hauberg@gmail.com> |
|
1390 |
6778
|
1391 * plot/legend.m: Replace 'vargin' with 'varargin'. |
6740
|
1392 |
6738
|
1393 2007-06-15 John W. Eaton <jwe@octave.org> |
|
1394 |
|
1395 * plot/__go_draw_axes__.m: Only attempt label rotation if |
|
1396 have_newer_gnuplot is true. |
|
1397 |
6736
|
1398 2007-06-15 Pete Gustafson <petegus@umich.edu> |
|
1399 |
6778
|
1400 * plot/__go_draw_axes__.m Handle rotation arg for axis labels. |
|
1401 * plot/__axis_label__.m Assign ylabel default rotation property |
6737
|
1402 to 90, all others 0. |
|
1403 |
6778
|
1404 * plot/__errplot__.m: Set ifmt from fmt.linestyle. |
|
1405 * plot/__go_draw_axes__.m: Removed undefined tx from call to |
6736
|
1406 get_data_limits. |
6778
|
1407 * plot/__plotopt1__.m: Intercept and strip format string when |
6736
|
1408 called by __errplot__. |
|
1409 |
6730
|
1410 2007-06-15 John W. Eaton <jwe@octave.org> |
|
1411 |
|
1412 * testfun/test.m: Also return number of expected failures. |
|
1413 |
6724
|
1414 2007-06-14 John W. Eaton <jwe@octave.org> |
|
1415 |
6730
|
1416 * set/ismember.m: Mark two tests known to fail with xtest. |
|
1417 |
6724
|
1418 * plot/__go_draw_axes__.m: Handle text rotation property. |
|
1419 |
6728
|
1420 2007-06-14 Paul Kienzle <pkienzle@users.sf.net> |
|
1421 |
|
1422 * testfun/test.m: Add xtest support for tests known to fail. |
|
1423 |
6727
|
1424 2007-06-14 Sebastian Schubert <sebastian-schubert@gmx.de> |
|
1425 |
|
1426 * plot/print.m: Handle pstex, pslatex, epslatex, and |
|
1427 epslatexstandalone terminals. |
|
1428 |
6721
|
1429 2007-06-14 David Bateman <dbateman@free.fr> |
|
1430 |
|
1431 * general/__splinen__.m: Check also for ND vectors. Fix for N > 2, |
|
1432 as permutation of results was incorrect. |
|
1433 * general/interp1.m: Add demo on second derivative |
|
1434 * general/interpn.m: Convert "y" to vectors for __splinen__ |
6722
|
1435 call. Add 3D demo. Fix typos |
|
1436 * general/interp3.m: Fix typos. Correct permutation for use of |
|
1437 interpn. |
6721
|
1438 * polynomial/mkpp.m: Correction for matrices of 3 or more dimensions. |
|
1439 |
6717
|
1440 2007-06-13 John W. Eaton <jwe@octave.org> |
|
1441 |
|
1442 * miscellaneous/mkoctfile.m: Quote args too. |
6712
|
1443 |
6706
|
1444 2007-06-13 Michael Goffioul <michael.goffioul@swing.be> |
|
1445 |
|
1446 * miscellaneous/mkoctfile.m: Quote script name for call to system. |
|
1447 |
6704
|
1448 2007-06-12 Michael Goffioul <michael.goffioul@swing.be> |
|
1449 |
|
1450 * plot/__pltopt1__.m: Set linestyle to "none" instead of "". |
|
1451 Set have_linestyle to true if two character linestyle is found. |
|
1452 |
6702
|
1453 2007-06-12 David Bateman <dbateman@free.fr> |
|
1454 |
6717
|
1455 * general/Makefile.in (SOURCES): Include __spline__.m, interp3.m |
|
1456 and interpn.m. |
|
1457 |
|
1458 * pkg/pkg.m (pkg:load_package_dirs): Check for field "loaded" in |
|
1459 structure before using it. |
|
1460 |
|
1461 2007-06-12 David Bateman <dbateman@free.fr> |
|
1462 |
6704
|
1463 * general/interp1.m: Change examples to use new graphics interface. |
6702
|
1464 * general/__splinen__.m: New support function for N-dimensional |
|
1465 spline interpolation. |
|
1466 * general/bicubic.m: Allow definition of extrapolation |
|
1467 value. Adapt tests to use new graphics interface |
|
1468 * general/interp2.m: Call __splinen__ for 2-D spline |
|
1469 interpolation. Make the lookup table code only be called for |
|
1470 linear and nearest methods. |
|
1471 * general/interpn.m: New function for N-dimensional, linear, nearest |
|
1472 and spline interpolation. |
|
1473 * general/interp3.m: New function for 3-dimensional, linear, nearest |
|
1474 and spline interpolation. |
6704
|
1475 * polynomial/spline.m: Change examples to use new graphics interface. |
6702
|
1476 |
6701
|
1477 2007-06-12 Steve M. Robbins <steve@sumost.ca> |
|
1478 |
|
1479 * statistics/tests/wilcoxon_test.m: Error if N <= 25. |
|
1480 |
6699
|
1481 2007-06-12 S�ren Hauberg <soren@hauberg.org> |
|
1482 |
|
1483 * plot/fplot.m: If function is inline, vectorize it. |
|
1484 |
6698
|
1485 2007-06-10 David Bateman <dbateman@free.fr> |
|
1486 |
|
1487 * pkg/pkg.m (pkg:installed_packages): truncate start of package |
|
1488 directory if need to, so that it fits on a line. |
|
1489 |
6695
|
1490 2007-06-07 David Bateman <dbateman@free.fr> |
|
1491 |
|
1492 * pkg/pkg.m (pkg): For rebuild target, force package order in |
|
1493 saved file so that dependent packages are loaded first, and if |
|
1494 nargout==0 don't return any arguments. |
|
1495 (pkg:install): Only load packages that are marked autoload after |
|
1496 install. Various fixes. Save in order. |
|
1497 (pkg:uninstall): Save in order |
|
1498 (pkg:load_packages): Use load_package_and_dependencies to load |
|
1499 packages. |
|
1500 (pkg:save_order): New function to sort package list with dependent |
|
1501 packages first. |
|
1502 (pkg:load_packages_and_dependencies): New function to load both a |
|
1503 list of packages and their dependencies. |
|
1504 (pkg:load_package_dirs): New function that returns a vector of the |
|
1505 indexes into the installed package list indicating the packages to |
|
1506 load and the order to load them in to respect the dependencies. |
|
1507 |
6688
|
1508 2007-06-03 S�ren Hauberg <soren@hauberg.org> |
|
1509 |
|
1510 * plot/axes.m: Eliminate redundant else clause. |
|
1511 |
6686
|
1512 2007-06-03 David Bateman <dbateman@free.fr> |
|
1513 |
|
1514 * polynomial/spline.m: Add a small tolerance to spline tests. |
6687
|
1515 * pkg/pkg.m: Protect against multiple actions being define. |
|
1516 |
6683
|
1517 2007-06-01 David Bateman <dbateman@free.fr> |
|
1518 |
|
1519 * pkg.m (pkg:is_superuser): Remove function used in one place and |
|
1520 incorporate into main pkg function. |
|
1521 (pkg:install): Check for existence of files to install before |
|
1522 globbing and warn the user if they don't exist. |
|
1523 |
6675
|
1524 2007-05-31 David Bateman <dbateman@free.fr> |
|
1525 |
6679
|
1526 * miscellaneous/copyfile.m: Split copying of multiple files to a |
|
1527 directory over several copy command to limit the line length. |
|
1528 * miscellaneous/movefile.m: Ditto. |
|
1529 |
6675
|
1530 * pkg.m: Add build option to allow binary Octave packages to be |
|
1531 built from source packages. Probe absolute path of prefix, global |
|
1532 and local lists. Use strcat, rather that [] for strings. |
|
1533 (pkg:build): New function to binary binary package. |
|
1534 (pkg:absolute_pathname): Use fileattrib to probe absolute path. |
|
1535 (pkg:repackage): Package binary Octave package from installation. |
|
1536 (pkg:create_pkgadddel): Extract PKG_ADD and PKG_DEL directives |
|
1537 from m-files into main installation directory. |
|
1538 (pkg:shell): Suppress verbose messages from shell and only display |
|
1539 them with the verbose flag. |
|
1540 (pkg:installed_packages): Also include the loaded flag in the |
|
1541 local and global packages. |
|
1542 (pkg:uninstall): On uninstall, only rmpath the package if it is |
|
1543 flagged as loaded. |
|
1544 |
|
1545 2007-05-31 Michael Goffioul <michael.goffioul@swing.be> |
|
1546 |
|
1547 * pkg.m (pkg:load_packages): Correctly load a mix of packages |
|
1548 with and without architecture dependent directories. |
|
1549 (pkg:installed_packages): Probe the global_list file even if it is |
|
1550 the same as the local_list. |
|
1551 |
6669
|
1552 2007-05-29 John W. Eaton <jwe@octave.org> |
|
1553 |
|
1554 * sparse/spy.m: Set axis to "ij" mode. |
|
1555 |
6664
|
1556 2007-05-24 John W. Eaton <jwe@octave.org> |
|
1557 |
|
1558 * set/ismember.m: Quote first arg of "fail" tests. |
|
1559 |
6663
|
1560 2007-05-24 David Bateman <dbateman@free.fr> |
|
1561 |
6778
|
1562 * pkg/pkg.m (pkg:rebuild): Thinko in rebuild logic. |
6663
|
1563 |
6655
|
1564 2007-05-22 David Bateman <dbateman@free.fr> |
|
1565 |
|
1566 * pkg/pkg.m: Use rethrow(lasterror()) throughout rather than |
|
1567 error(lasterr()(8:end)). |
|
1568 (pkg:install): Warning for empty packages being removed. Suppress |
|
1569 spurious output. Warning rather than error for uninstalling a |
|
1570 package that is not installed to avoid RPM issue. |
|
1571 (pkg:configure_make): Fix for parsing of src/FILES. Don't create |
|
1572 inst or architecture dependent directory if it exists. |
|
1573 |
6653
|
1574 2007-05-22 Thomas Weber <thomas.weber.mail@gmail.com> |
|
1575 |
|
1576 * ChangeLog, control/system/is_stabilizable.m, general/bicubic.m, |
|
1577 image/ind2gray.m, image/saveimage.m, plot/box.m, plot/grid.m, |
|
1578 signal/freqz.m: Fix typos. |
|
1579 |
6645
|
1580 2007-05-21 David Bateman <dbateman@free.fr> |
|
1581 |
|
1582 * pkg/pkg.m: Add rebuild target, and -local, -global option to |
|
1583 force installation location. |
|
1584 (rebuild): New subfunction to rebuild package database from |
|
1585 installed packages. Also allows changing of autoload status |
|
1586 (install): Warn use if attempting to install from non existent |
|
1587 file. |
|
1588 (issuperuser): Use 'geteuid() == 0' instead of 'strcmp (getenv( |
|
1589 "USER", "root"))' for root test. |
|
1590 |
|
1591 2007-05-21 Michael Goffioul <michael.goffioul@swing.be> |
|
1592 |
|
1593 * miscellaneous/copyfile.m: check for cp.exe on Windows platforms |
|
1594 and replace "\" characters with "/". |
|
1595 * pkg/pkg.m: Use shell rather than system throughout. Replace "\" |
|
1596 characters with "/" throughout. |
|
1597 (shell): New subfunction that wraps system and is careful with the |
|
1598 shell on windows platforms. |
|
1599 (configure_make): Explictly pass complier etc to configure |
|
1600 process. |
|
1601 (issuperuser): Force default to global install for Windows machines. |
|
1602 |
6636
|
1603 2007-05-19 Kristan Onu |
|
1604 |
|
1605 * plot/Makefile.in (SOURCES): Remove hbar.m and add barh.m. |
|
1606 |
6634
|
1607 2007-05-18 David Bateman <dbateman@free.fr> |
|
1608 |
|
1609 * pkg/pkg.m (install): More verbosity. |
|
1610 (configure_make): Ditto. |
|
1611 (create_pkgadddel): Install in architecture dependent directory if |
|
1612 it exists to address issues with autoload/mfilename. |
|
1613 (write_INDEX): Check in archiecture dependent directories as well. |
|
1614 |
6633
|
1615 2007-05-17 David Bateman <dbateman@free.fr> |
|
1616 |
|
1617 * plot/hbar.m: Remove. |
|
1618 * plot/barh.m: and move it here. |
|
1619 |
6631
|
1620 2007-05-16 S�ren Hauberg <soren@hauberg.org> |
|
1621 |
|
1622 * general/sub2ind.m, general/ind2sub.m: Doc fix. |
|
1623 |
6629
|
1624 2007-05-16 John W. Eaton <jwe@octave.org> |
|
1625 |
|
1626 * general/logspace.m: Return second arg if fewer than two values |
|
1627 are requested. |
|
1628 |
6619
|
1629 2007-05-14 John W. Eaton <jwe@octave.org> |
|
1630 |
|
1631 * plot/__go_draw_figure__.m: Ensure that a reset commands starts |
|
1632 on a new line. |
|
1633 |
6617
|
1634 2007-05-14 Tarmigan Casebolt <tarmigan+list@gmail.com> |
|
1635 |
|
1636 * statistics/distributions/norminv.m, |
|
1637 statistics/distributions/norminv.m, |
|
1638 statistics/distributions/normpdf.m, |
|
1639 statistics/distributions/normrnd.m: |
|
1640 Use standard deviation, not variance. |
|
1641 * statistics/distributions/lognpdf.m: Adapt to change in norminv. |
|
1642 * statistics/distributions/logninv.m: Refer to norminv, not normal_inv. |
|
1643 * deprecated/normal_cdf.m, deprecated/normal_inv.m, |
|
1644 deprecated/normal_pdf.m, deprecated/normal_rnd.m: Preserve |
|
1645 backward compatibility. |
|
1646 |
6616
|
1647 2007-05-14 David Bateman <dbateman@free.fr> |
|
1648 |
|
1649 * pkg/pkg.m: Mark loaded packages with "*". |
|
1650 |
6615
|
1651 2007-05-13 S�ren Hauberg <soren@hauberg.org> |
|
1652 |
|
1653 * miscellaneous/single.m: Doc fix. |
|
1654 Convert to double instead of returning argument unchanged. |
|
1655 |
|
1656 * miscellaneous/doc.m: Doc fix. |
|
1657 |
|
1658 * miscellaneous/ver.m: Doc fix. |
|
1659 Don't display information about Octave Forge. |
|
1660 |
6614
|
1661 2007-05-12 David Bateman <dbateman@free.fr> |
|
1662 |
|
1663 * pkg/pkg.m: Add a "-verbose" option that allows all output of an |
|
1664 install to be printed. An error in the on_uninstall script causes |
|
1665 a failure to uninstall. Place oct- and mex-files in an |
|
1666 architecture dependent directory. |
|
1667 |
6611
|
1668 2007-05-09 John W. Eaton <jwe@octave.org> |
|
1669 |
|
1670 * plot/__go_draw_axes__.m: Break plot command over multiple lines. |
|
1671 |
6609
|
1672 2007-05-09 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
1673 |
|
1674 * statistics/distributions/normcdf.m: Use standard deviation |
|
1675 instead of variance for compatibility. |
|
1676 |
|
1677 2007-05-08 John W. Eaton <jwe@octave.org> |
|
1678 |
|
1679 |
|
1680 * set/unique.m, set/ismember.m: Use numel(x) instead of prod(size(x)). |
|
1681 |
|
1682 * set/ismember.m: Always return logical values. |
|
1683 |
|
1684 * set/ismember.m: Return early if no matches are found. New tests. |
6749
|
1685 From David Grohmann <grohmann@arlut.utexas.edu>. |
6609
|
1686 |
|
1687 * general/__isequal__.m: Allow numeric values of different classes |
|
1688 to compare equal. |
|
1689 |
6606
|
1690 2007-05-07 David Bateman <dbateman@free.fr> |
|
1691 |
6607
|
1692 * sparse/spy.m: Reverse Y axis for new graphics code. Make more |
|
1693 compatiable, accepting LineSpec and markersize arguments. |
6606
|
1694 |
6605
|
1695 2007-05-02 John W. Eaton <jwe@octave.org> |
|
1696 |
|
1697 * plot/__go_draw_axes__.m: Convert NA to NaN before writing. |
|
1698 |
6604
|
1699 2007-05-02 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
1700 |
|
1701 * contour.m: Rewrite help string. |
|
1702 |
6599
|
1703 2007-04-28 John W. Eaton <jwe@octave.org> |
|
1704 |
|
1705 * miscellaneous/unzip.m, miscellaneous/untar.m, |
|
1706 miscellaneous/bunzip2.m, miscellaneous/gunzip.m: |
|
1707 Special case nargout == 0. |
|
1708 |
6597
|
1709 2007-04-27 Kim Hansen <kimhanse@gmail.com> |
|
1710 |
|
1711 * general/sub2ind.m: Handle empty input, add tests. |
|
1712 |
6590
|
1713 2007-04-27 G. D. McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
1714 |
|
1715 * plot/contourc.m: Doc fix. |
|
1716 |
6586
|
1717 2007-04-26 David Bateman <dbateman@free.fr> |
|
1718 |
|
1719 * plot/hist.m: Partially remove previous patch. |
|
1720 |
6582
|
1721 2007-04-26 David Bateman <dbateman@free.fr> |
|
1722 |
|
1723 * plot/hist.m: Support returning of handle |
|
1724 * plot/__bar__.m: __pltopt__ should only be called on strings or |
|
1725 cells. |
|
1726 |
6575
|
1727 2007-04-25 John W. Eaton <jwe@octave.org> |
|
1728 |
6579
|
1729 * plot/__go_draw_axes__.m: For images, set titlespec{data_idx} to |
|
1730 "title \"\"", not "". |
|
1731 |
6575
|
1732 * plot/legend.m: Initialize WARNED to false. |
|
1733 |
6567
|
1734 2007-04-24 John W. Eaton <jwe@octave.org> |
|
1735 |
|
1736 * io/beep.m: Fix cut and paste error. |
|
1737 From S�ren Hauberg <soren@hauberg.org>. |
|
1738 |
|
1739 2007-04-23 John W. Eaton <jwe@octave.org> |
|
1740 |
|
1741 * plot/box.m: Delete extra endfunction keyword. |
|
1742 |
6560
|
1743 2007-04-23 David Bateman <dbateman@free.fr> |
|
1744 |
|
1745 * plot/plot3.m: Call newplot. |
|
1746 |
6553
|
1747 2007-04-20 John W. Eaton <jwe@octave.org> |
|
1748 |
|
1749 * plot/Makefile.in (SOURCES): Fix typo in adding __bar__.m to the list. |
|
1750 |
6546
|
1751 2007-04-19 John W. Eaton <jwe@octave.org> |
|
1752 |
|
1753 * miscellaneous/unpack.m: Use gzip -d and bzip2 -d instead of |
|
1754 gunzip and bunzip. From Michael Goffioul <michael.goffioul@swing.be>. |
|
1755 |
6544
|
1756 2007-04-19 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
1757 |
|
1758 * control/util/axis2dlim.m: Delete extraneous line. |
|
1759 |
6542
|
1760 2007-04-18 John W. Eaton <jwe@octave.org> |
|
1761 |
|
1762 * specfun/factorial.m: Increase tolerance in large value test. |
|
1763 |
6540
|
1764 2007-04-18 David Bateman <dbateman@free.fr> |
|
1765 |
|
1766 * __bar__.m: New support function for bar/hbar to support graphic |
|
1767 handles, and additional arguments. |
|
1768 * bar.m: Convert to use __bar__. |
|
1769 * hbar.m: New function |
|
1770 * hist.m: Explicitly set the width of the bar plot. |
|
1771 |
6533
|
1772 2007-04-17 John W. Eaton <jwe@octave.org> |
|
1773 |
6534
|
1774 * plot/stem.m (stem_line_spec): Pass false as third arg to __pltopt__. |
|
1775 |
6533
|
1776 * set/ismember.m: New tests. |
|
1777 From David Grohmann <grohmann@arlut.utexas.edu> |
|
1778 |
6532
|
1779 2007-04-17 Paul Kienzle <pkienzle@users.sf.net> |
|
1780 |
|
1781 * specfun/factorial.m: Use gamma function instead of cumprod. |
|
1782 Add tests. |
|
1783 |
6527
|
1784 2007-04-16 John W. Eaton <jwe@octave.org> |
|
1785 |
6528
|
1786 * gethelp.cc (looks_like_octave_copyright): Use same logic as in |
|
1787 looks_like_copyright in src/help.cc. |
|
1788 From S�ren Hauberg <soren@hauberg.org>. |
|
1789 |
6527
|
1790 * plot/__go_draw_axes__.m: For log plots, omit zero values too. |
|
1791 |
6526
|
1792 2007-04-13 John W. Eaton <jwe@octave.org> |
|
1793 |
6527
|
1794 * optimization/sqp.m: Initialize info to 0. |
|
1795 |
6526
|
1796 * optimization/qp.m: Undo previous change. |
|
1797 |
6524
|
1798 2007-04-13 Geordie McBain <geordie.mcbain@aeromech.usyd.edu.au> |
|
1799 |
|
1800 * spdiags.m: Fixed the four-argument case to work for columns of |
|
1801 length one. |
|
1802 |
6523
|
1803 2007-04-12 John W. Eaton <jwe@octave.org> |
|
1804 |
|
1805 * optimization/qp.m: Avoid Octave indexing bug. |
|
1806 |
6521
|
1807 2007-04-12 Carlo de Falco <kingcrimson@tiscali.it> |
|
1808 |
6522
|
1809 * miscellaneous/menu.m, control/base/bddemo.m, |
|
1810 control/hinf/dgkfdemo.m, control/system/packedform.m, |
|
1811 control/system/sysrepdemo.m: |
|
1812 Adapt to page_screen_output as a function. |
6521
|
1813 |
6518
|
1814 2007-04-11 John W. Eaton <jwe@octave.org> |
|
1815 |
|
1816 * miscellaneous/not.m: Delete. |
|
1817 * miscellaneous/Makefile.in (SOURCES): Delete it from the list. |
|
1818 |
|
1819 2007-04-11 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
1820 |
|
1821 * control/util/axis2dlim.m: Try harder to handle min and max vals |
|
1822 that are close but not exactly equal. |
|
1823 |
6515
|
1824 2007-04-11 David Bateman <dbateman@free.fr> |
|
1825 |
|
1826 * general/bitcmp.m: Make it work again. |
|
1827 |
6512
|
1828 2007-04-10 John W. Eaton <jwe@octave.org> |
|
1829 |
|
1830 * plot/__go_draw_axes__.m: Try harder to handle min and max vals |
|
1831 that are close but not exactly equal. |
|
1832 |
6511
|
1833 2007-04-09 Daniel J. Sebald <daniel.sebald@ieee.org> |
|
1834 |
|
1835 * plot/stem.m: Add back the baseline line and let it be not adjustable |
|
1836 in response to a change in x limits for now. |
|
1837 |
6510
|
1838 2007-04-09 John W. Eaton <jwe@octave.org> |
|
1839 |
|
1840 * plot/__go_draw_axes__.m (__gnuplot_write_data__): New function. |
|
1841 (__go_draw_axes__): Use it to write data to plot stream. |
|
1842 |
6509
|
1843 2007-04-09 Daniel J Sebald <daniel.sebald@ieee.org> |
|
1844 |
|
1845 * plot/stem.m: Fix typos in doc string. Fix typo in call to |
|
1846 zeros. Set markerfacecolor property in call to plot. |
|
1847 |
6508
|
1848 2007-04-06 John W. Eaton <jwe@octave.org> |
|
1849 |
|
1850 * linear-algebra/norm.m: Use new __vnorm__ function for vector args. |
|
1851 |
|
1852 2007-04-06 Daniel J Sebald <daniel.sebald@ieee.org> |
|
1853 |
|
1854 * plot/stem.m: Use plot instead of a series of calls to line. |
|
1855 |
6494
|
1856 2007-04-05 John W. Eaton <jwe@octave.org> |
|
1857 |
6499
|
1858 * sparse/nonzeros.m, sparse/normest.m, sparse/spconvert.m, |
|
1859 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/spones.m, |
|
1860 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, |
|
1861 sparse/spstats.m, sparse/treeplot.m: Style fixes. |
|
1862 |
6496
|
1863 * pkg/pkg.m: Use "strcat (...)" instead of "[...]". |
6500
|
1864 Use strcmpi instead of strcmp+tolower. |
6496
|
1865 Style fixes. |
|
1866 |
6494
|
1867 * testfun/speed.m: Use "strcat (...)" instead of "[...]". |
|
1868 Plotting fixes. Style fixes. |
|
1869 |
|
1870 * testfun/test.m: Use "strcat (...)" instead of "[...]". |
|
1871 Style fixes. |
|
1872 |
|
1873 * testfun/fail.m: No need to check for evalin and lastwarn. |
|
1874 Style fixes. |
|
1875 |
|
1876 * testfun/demo.m, testfun/example.m: Style fixes. |
|
1877 Use "strcat (...)" instead of "[...]". |
|
1878 Use format specifiers in calls to warning. |
|
1879 |
|
1880 * testfun/assert.m: Use "numel (x)" instead of "prod (size (x))". |
|
1881 Use "strcat (...)" instead of "[...]". |
|
1882 Use "x(end)" instead of "x(length (x))". |
|
1883 Check NA before NaN. |
|
1884 Style fixes. |
|
1885 |
6473
|
1886 2007-03-29 John W. Eaton <jwe@octave.org> |
|
1887 |
6474
|
1888 * plot/stem.m (stem, set_default_values): Use RGB triple for color. |
6473
|
1889 |
6467
|
1890 2007-03-27 John W. Eaton <jwe@octave.org> |
|
1891 |
|
1892 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
1893 control/base/Makefile.in, control/hinf/Makefile.in, |
|
1894 control/obsolete/Makefile.in, control/system/Makefile.in, |
|
1895 control/util/Makefile.in, deprecated/Makefile.in, |
|
1896 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, |
|
1897 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, |
|
1898 miscellaneous/Makefile.in, optimization/Makefile.in, |
|
1899 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, |
|
1900 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
1901 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
1902 special-matrix/Makefile.in, startup/Makefile.in, |
|
1903 statistics/Makefile.in, statistics/base/Makefile.in, |
|
1904 statistics/distributions/Makefile.in, |
|
1905 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
1906 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: |
|
1907 Use ln instead of $(LN_S) in dist target. |
|
1908 |
6465
|
1909 2007-03-27 David Bateman <dbateman@free.fr> |
|
1910 |
|
1911 * plot/__go_draw_axes__.m: Allow linewidth settings to work with |
|
1912 gnuplot 4.0. |
|
1913 |
6464
|
1914 2007-03-26 John W. Eaton <jwe@octave.org> |
|
1915 |
|
1916 * plot/__go_draw_axes__.m: Send image data to gnuplot via plot stream. |
|
1917 |
6461
|
1918 2007-03-26 Daniel J Sebald <daniel.sebald@ieee.org> |
|
1919 |
|
1920 * plot/__go_draw_axes__.m: Always end palette data to gnuplot via |
|
1921 plot stream and using binary data. |
|
1922 |
6459
|
1923 2007-03-26 John W. Eaton <jwe@octave.org> |
|
1924 |
|
1925 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
1926 lot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
1927 plot/__plt2vv__.m: Accept properties in addtition to options struct. |
|
1928 |
|
1929 2007-03-26 David Bateman <dbateman@free.fr> |
|
1930 |
6461
|
1931 * plot/__go_draw_axes__.m: Send "set ticslevel 0" to plot stream. |
|
1932 |
6459
|
1933 * plot/plot3.m: Handle line properties. |
|
1934 * plot/plot.m: Update docstring. |
|
1935 * plot/__plotopt__.m, plot/__pltopt1__.m: New arg, err_on_invalid. |
|
1936 * plot/__plt__.m: Also gather properties. |
|
1937 |
6455
|
1938 2007-03-26 Kim Hansen <kimhanse@gmail.com> |
|
1939 |
|
1940 * testfun/assert.m: Delete special check for empty objects. |
|
1941 Add test. |
|
1942 |
6453
|
1943 2007-03-26 John W. Eaton <jwe@octave.org> |
|
1944 |
6454
|
1945 * plot/drawnow.m: Exit early if call is recursive. |
|
1946 |
6453
|
1947 * plot/__go_draw_axes__.m (get_data_limits): New function. |
|
1948 Check for Inf too. |
|
1949 (__go_draw_axes__): Use get_data_limits. |
|
1950 |
6450
|
1951 2007-03-24 John W. Eaton <jwe@octave.org> |
|
1952 |
6451
|
1953 * plot/drawnow.m: If GNUTERM is set to wxt in the environment, |
|
1954 send terminal setting command with title option to plot stream. |
|
1955 |
6450
|
1956 * plot/legend.m: Correctly increment index into list of children.. |
|
1957 |
6434
|
1958 2007-03-23 John W. Eaton <jwe@octave.org> |
|
1959 |
6448
|
1960 * general/interp2.m, general/bicubic.m, control/base/rldemo.m, |
|
1961 control/hinf/hinfdemo.m, control/hinf/dhinfdemo.m, |
|
1962 control/base/nyquist.m, control/base/nichols.m, |
|
1963 control/base/frdemo.m, signal/freqz_plot.m, |
|
1964 control/base/__stepimp__.m, control/base/bode.m, |
|
1965 quaternion/demoquat.m, quaternion/qcoordinate_plot.m, |
|
1966 statistics/base/qqplot.m, statistics/base/ppplot.m, sparse/spy.m: |
6447
|
1967 Update plotting code. |
|
1968 |
|
1969 * control/base/bode.m: Unwrap phase angle. |
|
1970 |
|
1971 * miscellaneous/dump_prefs.m: Remove automatic_replot from the list. |
|
1972 |
|
1973 * plot/axis.m: Don't check automatic_replot, or call replot. |
|
1974 |
|
1975 * quaternion/demoquat.m: Delete comments with obsolete plotting |
|
1976 commands. |
6446
|
1977 |
6442
|
1978 * plot/__pltopt1__.m: Handle "@" marker same as "+". |
6444
|
1979 Handle numeric color specs. |
6442
|
1980 * plot/plot.m: Remove "-@" and "@" from docstring. |
|
1981 |
6441
|
1982 * plot/orient.m: Fix tests to avoid creating a plot window. |
|
1983 |
6440
|
1984 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, |
|
1985 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, |
|
1986 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m, |
|
1987 general/arrayfun.m, miscellaneous/compare_versions.m, |
|
1988 path/savepath.m, pkg/pkg.m, plot/__gnuplot_version__.m, |
|
1989 plot/contour.m, plot/contourc.m, plot/legend.m, plot/stem.m, |
|
1990 polynomial/pchip.m: Fix copyright notice, correct FSF address. |
|
1991 |
6438
|
1992 * plot/__go_draw_figure__.m: Send reset to gnuplot before every |
|
1993 plot, not just multiplots. |
|
1994 |
6436
|
1995 * plot/__go_draw_axes__.m: Use %g for label coordinates, not %d. |
|
1996 |
6434
|
1997 * plot/contour.m: Don't call drawnow. |
|
1998 |
6431
|
1999 2007-03-22 John W. Eaton <jwe@octave.org> |
|
2000 |
6432
|
2001 * plot/drawnow.m: Check and optionally, set, the __modified__ |
|
2002 property of each figure. |
|
2003 |
6431
|
2004 * plot/__go_draw_axes__.m: If no real data, plot a point at Inf, |
|
2005 Inf to show axes. From Daniel J Sebald <daniel.sebald@ieee.org>. |
|
2006 |
|
2007 2007-03-21 John W. Eaton <jwe@octave.org> |
|
2008 |
|
2009 * linear-algebra/null.m: Set elements of retval with magnitudes |
|
2010 less than eps to 0. |
|
2011 |
6429
|
2012 2007-03-21 David Bateman <dbateman@free.fr> |
6425
|
2013 |
|
2014 * plot/__go_draw_axes__.m: Handle some colors with older gnuplot. |
6429
|
2015 * testfun/speed.m: Documentation and example fix. |
|
2016 |
6424
|
2017 2007-03-21 John W. Eaton <jwe@octave.org> |
|
2018 |
|
2019 * plot/subplot.m: If we find an existing subplot region, set |
|
2020 it to be the "currentaxes" property for the current figure. |
6425
|
2021 Delete old axes objects if the new axes object overlaps the old. |
6424
|
2022 |
6422
|
2023 2007-03-20 David Bateman <dbateman@free.fr> |
|
2024 |
|
2025 * general/Makefile.in: Include arrayfun.m in SOURCES. |
|
2026 |
|
2027 2007-03-20 Bill Denney <denney@seas.upenn.edu> |
|
2028 |
|
2029 * general/arrayfun.m: New function. |
|
2030 |
6418
|
2031 2007-03-20 John W. Eaton <jwe@octave.org> |
|
2032 |
6419
|
2033 * plot/newplot.m: Call __request_drawnow__ after initializing axes. |
|
2034 * plot/text.m: Call __request_drawnow__ after creating text objects. |
|
2035 |
|
2036 * plot/clf.m: Don't call drawnow. |
|
2037 |
6431
|
2038 2007-03-20 Daniel J Sebald <daniel.sebald@ieee.org> |
6419
|
2039 |
6420
|
2040 * image/__img__.m: Maybe set yaxis to reverse for images. |
|
2041 * plot/__go_draw_axes__.m: Don't add flipy to gnuplot command for |
|
2042 images. |
|
2043 |
6418
|
2044 * plot/drawnow.m: Make __go_close_all_registered__ persistent |
6419
|
2045 instead of global. Only register __go_close_all__ with atexit if |
|
2046 the plot stream is successfully opened. |
6418
|
2047 |
6413
|
2048 2007-03-15 John W. Eaton <jwe@octave.org> |
|
2049 |
6418
|
2050 * plot/__go_draw_axes__.m: Make have_newer_gnuplot persistent. |
6413
|
2051 From Daniel J Sebald <daniel.sebald@ieee.org>. |
|
2052 |
|
2053 2007-03-15 Daniel J Sebald <daniel.sebald@ieee.org> |
|
2054 |
|
2055 * plot/__go_draw_axes__.m (do_linestyle_command): Fix marker types. |
6415
|
2056 Use numeric line types. |
6413
|
2057 |
|
2058 * control/base/rlocus.m: Add asymptotes to the plot. Use wider |
6415
|
2059 lines and larger markers. Remove key titles from line type |
|
2060 properties. |
6413
|
2061 |
6405
|
2062 2007-03-14 John W. Eaton <jwe@octave.org> |
|
2063 |
6412
|
2064 * plot/__axis_label__.m: Accept additional property-value pairs |
|
2065 and pass them to __go_text__. Simply return the handle obtained |
|
2066 from __go_text__ instead of calling get on the current axis. |
|
2067 * plot/xlabel.m, plot/zlabel.m, plot/zlabel.m: Check args here. |
|
2068 Allow for extra property value pairs to be passed along. |
|
2069 * plot/title.m: Implement with __axis_label__ since it does all |
|
2070 that title needs to do. |
|
2071 |
6410
|
2072 * plot/clf.m: Set currentaxes property for current figure to []. |
|
2073 |
6405
|
2074 * plot/__axis_label__.m: Convert arg to text handle before calling set. |
|
2075 |
|
2076 * plot/__plt__.m: Return line handles from all calls to __plt1__ |
|
2077 and __plt2__, not just the last. |
|
2078 |
|
2079 * plot/Makefile.in (SOURCES): Rename from SOURCES_M. |
|
2080 (SOURCES_IN, GEN_M): Delete. |
|
2081 (FCN_FILES): Don't include $(GEN_M). |
|
2082 (all): Don't depend on $(GEN_M). |
|
2083 ($(GEN_M) : %.m : %.in): Delete pattern rule. |
|
2084 |
|
2085 * plot/text.m: Use __go_text__ instead of __uiboject_text_ctor__. |
|
2086 |
|
2087 * plot/newplot.m: Call __go_axes_init__ instead of |
|
2088 __uiobject_axes_init__. |
|
2089 |
|
2090 * plot/mesh.m: Use __go_surface__ instead of |
|
2091 __uiobject_surface_ctor__. Don't access object fields directly. |
|
2092 |
|
2093 * plot/line.m: Use __line__ to do actual work. |
|
2094 * plot/__line__.m: New function. |
|
2095 |
|
2096 * plot/axes.m: Use __go_axes__ to create axes graphics handle. |
|
2097 Use get and set instead of accessing object fields directly. |
|
2098 |
|
2099 * plot/figure.m: Use __go_figure__ to create figure graphics |
|
2100 handle. |
|
2101 |
|
2102 * plot/drawnow.m: Register __go_close_all__ with atexit instead of |
|
2103 __uiobject_close_all. Call __go_draw_figure__ instead of |
|
2104 __uiobject_draw_figure__. |
|
2105 |
|
2106 * plot/clf.m: Use get instead of accessing object fields |
|
2107 directly. Simply delete children. Don't set currentaxes. |
|
2108 |
|
2109 * plot/close.m (close_all_figures): New subfunction. |
|
2110 Use it instead of getting list of figures to close from |
|
2111 __uiobject_figures__. |
|
2112 |
|
2113 * plot/closereq.m: Simply delete the current figure. Don't set |
|
2114 currentfigure. |
|
2115 |
|
2116 * plot/__errplot__.m: Call __line__ instead of |
|
2117 __uiobject_line_ctor__. Use set instead of accesing object fields |
|
2118 directly. Don't call __uiobject_adopt__. |
|
2119 |
|
2120 * plot/__uiobject_adopt__.m, plot/__uiobject_alloc__.in, |
|
2121 plot/__uiobject_axes_ctor__.m, plot/__uiobject_axes_dtor__.m, |
|
2122 plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m, |
|
2123 plot/__uiobject_delete__.m, plot/__uiobject_figure_ctor__.m, |
|
2124 plot/__uiobject_figures__.in, plot/__uiobject_free__.in, |
|
2125 plot/__uiobject_get_handle__.in, plot/__uiobject_globals__.m, |
|
2126 plot/__uiobject_grow_list__.in, plot/__uiobject_handle2idx__.in, |
|
2127 plot/__uiobject_image_ctor__.m, plot/__uiobject_init_figure__.in, |
|
2128 plot/__uiobject_init_root_figure__.in, |
|
2129 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.in, |
|
2130 plot/__uiobject_root_figure_ctor__.m, |
|
2131 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m: |
|
2132 plot/get.in, plot/include-globals.awk, plot/ishandle.m, |
|
2133 plot/set.in: Delete. |
6408
|
2134 * plot/Makefile.in (SOURCES_M, SOURCES_IN): Remove from lists. |
6405
|
2135 |
|
2136 * plot/__go_close_all__.m: Rename from __uiobject_close_all.m. |
|
2137 Pass "hidden" as second arg to close. |
|
2138 * plot/__go_draw_axes__.m: Rename from __uiobject_draw_axes.m. |
|
2139 * plot/__go_draw_figure__.m: Rename from __uiobject_draw_figure.m. |
6408
|
2140 * plot/Makefile.in (SOURCES_M): Rename in list. |
|
2141 |
6405
|
2142 * image/__img__.m: Use __go_image__ to create image graphics |
|
2143 handle. |
|
2144 |
|
2145 * miscellaneous/delete.m: Call __go_delete__, not |
|
2146 __uiobject_delete__. Check that arg is a graphics handle before |
|
2147 calling __go_delete__. |
|
2148 |
6403
|
2149 2007-03-13 John W. Eaton <jwe@octave.org> |
|
2150 |
|
2151 * miscellaneous/cast.m: Use feval and strcmp with cell to check |
|
2152 arg instead of switch statement. |
6528
|
2153 From S�ren Hauberg <soren@hauberg.org>. |
6403
|
2154 |
|
2155 2007-03-12 John W. Eaton <jwe@octave.org> |
|
2156 |
|
2157 * miscellaneous/cast.m: New function. |
|
2158 |
|
2159 * miscellaneous/delete.m: Call __go_delete__, not __uiobject_delete__. |
|
2160 |
6398
|
2161 2007-03-08 John W. Eaton <jwe@octave.org> |
|
2162 |
|
2163 * miscellaneous/copyfile.m, miscellaneous/movefile.m: Perform |
|
2164 tilde expansion on target filename before passing it to the shell. |
|
2165 |
|
2166 * statistics/base/Makefile.in (SOURCES): Remove unidrnd.m from list. |
|
2167 * statistics/distributions/Makefile.in (SOURCES): Add it here. |
|
2168 |
6396
|
2169 2007-03-08 David Bateman <dbateman@free.fr> |
|
2170 |
|
2171 * statistics/base/unidrnd.m: Move to statistics/distributions |
|
2172 replacing slower version based on dicrete_rnd. |
|
2173 |
6392
|
2174 2007-03-07 John W. Eaton <jwe@octave.org> |
|
2175 |
6395
|
2176 * control/base/rlocus.m: Update for current plotting functions. |
|
2177 |
|
2178 2007-03-07 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
2179 |
|
2180 * control/base/rlocus.m: Improve display. |
|
2181 |
|
2182 2007-03-07 John W. Eaton <jwe@octave.org> |
|
2183 |
|
2184 * plot/legend.m: Only handle positions -1:4. |
|
2185 * plot/__pltopt1__.m: Don't set linestyle if only marker style is |
|
2186 found in option string |
|
2187 * plot/__uiobject_draw_axes__.m: Handle key position. |
|
2188 |
6394
|
2189 * plot/newplot.m: Always reset next line color. |
|
2190 |
6392
|
2191 * testfun/assert.m: Check that number of dimensions match before |
|
2192 checking dimensions. |
|
2193 |
6391
|
2194 2007-03-07 Muthiah Annamalai <muthuspost@gmail.com> |
|
2195 |
|
2196 * specfun/perms.m, specfun/factorial.m: Check args. |
|
2197 |
6387
|
2198 2007-03-07 John W. Eaton <jwe@octave.org> |
|
2199 |
6390
|
2200 * plot/mesh.m: Call newplot before doing anything. |
|
2201 |
|
2202 * plot/__uiobject_draw_axes__.m: Send "e\n" at end of data, not |
|
2203 just "e". Only flush plot stream once. |
|
2204 From Daniel J Sebald <daniel.sebald@ieee.org>. |
|
2205 |
6387
|
2206 * strings/blanks.m: Omit first index in assignment. |
|
2207 |
6386
|
2208 2007-03-07 Paul Kienzle <pkienzle@users.sf.net> |
|
2209 |
|
2210 * set/setdiff.m: Some code cleanup and a fix for setdiff on rows. |
|
2211 |
6385
|
2212 2007-03-06 David Bateman <dbateman@free.fr> |
|
2213 John W. Eaton <jwe@octave.org> |
|
2214 |
|
2215 * set/setdiff.m: Ignore "rows" for cell array args. |
|
2216 Handle cellstr args. |
|
2217 |
6382
|
2218 2007-03-05 John W. Eaton <jwe@octave.org> |
|
2219 |
|
2220 * optimization/sqp.m: Defer first call to obj_hess until after |
|
2221 calling obj_fun. |
|
2222 |
6377
|
2223 2007-03-02 Bob Weigel <rweigel@gmu.edu> |
|
2224 |
|
2225 * specfun/nchoosek.m: Fix nargin check. |
|
2226 |
6376
|
2227 2007-03-01 Daniel J Sebald <daniel.sebald@ieee.org> |
|
2228 |
|
2229 * image/__img__.m: Don't set xlim and ylim properties. |
|
2230 |
6374
|
2231 2007-03-01 Paul Kienzle <pkienzle@users.sf.net> |
|
2232 |
|
2233 * general/interp1.m: Fix *style cases for decreasing x. |
|
2234 |
6372
|
2235 2007-03-01 Muthiah Annamalai <muthuspost@gmail.com> |
|
2236 |
|
2237 * polynomial/roots.m: Check nargin before accessing arg. |
|
2238 |
6369
|
2239 2007-02-28 John W. Eaton <jwe@octave.org> |
|
2240 |
|
2241 * plot/__uiobject_draw_axes__.m: If looking at image data, Don't |
|
2242 increment data_idx unless using gnuplot for display. |
|
2243 |
6368
|
2244 2007-02-28 Daniel J Sebald <daniel.sebald@ieee.org> |
|
2245 |
|
2246 * plot/__uiobject_draw_axes__.m: Improve calculation of limits for |
|
2247 plots with images. |
|
2248 * image/image.m, image/imagesc.m, image/imshow.m: |
|
2249 Deprecate zoom argument. |
|
2250 |
6366
|
2251 2007-02-28 John W. Eaton <jwe@octave.org> |
|
2252 |
|
2253 * plot/__uiobject_draw_axes__.m: Use fullfile to generate |
|
2254 temporary file names. Keep image and colormap file ids separate. |
|
2255 |
|
2256 * general/interp1.m: Correctly compute min and max values when |
|
2257 values are decreasing and not evenly spaced. |
|
2258 From Ricardo Marranita <ricardo.marranita@gmail.com>. |
|
2259 |
6365
|
2260 2007-02-27 John W. Eaton <jwe@octave.org> |
|
2261 |
|
2262 * testfun/test.m (test): Handle possibility of file_in_loadpath |
|
2263 returning an empty cell array. |
|
2264 |
6546
|
2265 2007-02-27 Michael Goffioul <michael.goffioul@swing.be> |
6364
|
2266 |
|
2267 * pkg/pkg.m: Use fullfile to create filenames from parts. |
|
2268 |
6546
|
2269 2007-02-26 Michael Goffioul <michael.goffioul@swing.be> |
6358
|
2270 |
|
2271 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
2272 control/base/Makefile.in, control/hinf/Makefile.in, |
|
2273 control/obsolete/Makefile.in, control/system/Makefile.in, |
|
2274 control/util/Makefile.in, deprecated/Makefile.in, |
|
2275 elfun/Makefile.in, finance/Makefile.in, general/Makefile.in, |
|
2276 image/Makefile.in, io/Makefile.in, linear-algebra/Makefile.in, |
|
2277 miscellaneous/Makefile.in, optimization/Makefile.in, |
|
2278 path/Makefile.in, pkg/Makefile.in, plot/Makefile.in, |
|
2279 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
2280 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
2281 special-matrix/Makefile.in, startup/Makefile.in, |
|
2282 statistics/Makefile.in, statistics/base/Makefile.in, |
|
2283 statistics/distributions/Makefile.in, |
|
2284 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
2285 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in: |
|
2286 Use $(LN_S) instead of ln or ln -s. |
|
2287 |
6356
|
2288 2007-02-24 David Bateman <dbateman@free.fr> |
|
2289 |
|
2290 * pkg/pkg.m (configure_make): Ignore blank lines and trailing |
|
2291 '\n' in FILES file. |
6357
|
2292 (configure_make): Also install any mex files. |
6356
|
2293 |
6353
|
2294 2007-02-24 David Bateman <dbateman@free.fr> |
|
2295 |
|
2296 * statistics/distributions (SOURCES): Add nbincdf.m, |
|
2297 nbininv.m, nbinpdf.m and nbinrnd.m. |
|
2298 |
6351
|
2299 2007-02-23 John W. Eaton <jwe@octave.org> |
|
2300 |
|
2301 * statistics/distributions/Makefile.in (SOURCES): Remove |
|
2302 pascal_cdf.m pascal_inv.m pascal_pdf.m pascal_rnd.m from the list. |
|
2303 |
|
2304 * deprecated/Makefile.in (SOURCES): Add pascal_cdf.m, |
|
2305 pascal_inv.m, pascal_pdf.m, and pascal_rnd.m to the list. |
|
2306 |
6349
|
2307 2007-02-23 David Bateman <dbateman@free.fr> |
|
2308 |
|
2309 * statistics/distributions/discrete_rnd.m, |
|
2310 statistics/distributions/geornd.m, |
|
2311 statistics/distributions/lognnd.m, |
|
2312 statistics/distributions/nbinrnd.m, |
|
2313 statistics/distributions/wblrnd.m: Accelerate distributions. |
|
2314 |
|
2315 * statistics/distributions/unidcdf.m, |
|
2316 statistics/distributions/unidinv.m, |
|
2317 statistics/distributions/unidpdf.m, |
|
2318 statistics/distributions/unidrnd.m: New functions based on |
6351
|
2319 discrete_cdf, etc. |
6349
|
2320 |
|
2321 * statistics/distributions/pascal_cdf.m, |
|
2322 statistics/distributions/pascal_inv.m, |
|
2323 statistics/distributions/pascal_pdf.m, |
|
2324 statistics/distributions/pascal_rnd.m: Remove. |
|
2325 * statistics/distributions/nbincdf.m, |
|
2326 statistics/distributions/nbininv.m, |
|
2327 statistics/distributions/nbinpdf.m, |
|
2328 statistics/distributions/nbinrnd.m: Replace with matlab |
|
2329 compatible functions. |
|
2330 * deprecated/pascal_cdf.m, deprecated/pascal_inv.m, |
|
2331 deprecated/pascal_pdf.m, deprecated/pascal_rnd.m: Use the new |
|
2332 nbincdf, etc functions to implement these. |
|
2333 |
6344
|
2334 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
|
2335 |
|
2336 * plot/__uiobject_draw_axes__.m: Insert newline between plot |
|
2337 command and data. |
|
2338 |
|
2339 2007-02-22 John W. Eaton <jwe@octave.org> |
|
2340 |
|
2341 * miscellaneous/doc.m: If index search fails, try again without |
|
2342 the index search option. |
|
2343 |
6339
|
2344 2007-02-22 David Bateman <dbateman@free.fr> |
|
2345 |
6341
|
2346 * miscellaneous/doc.m: Find doc.info file correctly in user directories. |
|
2347 |
6340
|
2348 * statistics/distributions/frnd.m, statistics/distributions/exprnd.m, |
|
2349 statistics/distributions/gamrnd.m, statistics/distributions/trnd.m, |
|
2350 statistics/distributions/poissrnd.m, statistics/distributions/chi2rnd.m, |
|
2351 statistics/distributions/betarnd.m: Convert to use randg, rande |
|
2352 and randp to accelerate. |
|
2353 |
6339
|
2354 * pkg/pkg.m (fix_depends): Support > and < operators as well. |
|
2355 |
6338
|
2356 2007-02-22 John W. Eaton <jwe@octave.org> |
|
2357 |
|
2358 * plot/__uiobject_draw_axes__.m: If not using gnuplot for images, |
|
2359 cache data and display after xlim and ylim have been determined. |
|
2360 |
6337
|
2361 2007-02-22 Daniel J Sebald <daniel.sebald@ieee.org> |
|
2362 |
|
2363 * plot/__uiobject_draw_axes__.m: |
|
2364 Allow multiple images to be displayed with gnuplot. |
|
2365 |
6333
|
2366 2007-02-20 Rafael Laboissiere <rafael@debian.org> |
|
2367 |
|
2368 * optimization/glpk.m: Document the fact that extra.mem does not work |
|
2369 for versions of GLPK 4.15 and later. |
|
2370 |
6328
|
2371 2007-02-19 John W. Eaton <jwe@octave.org> |
|
2372 |
|
2373 * plot/__uiobject_alloc__.in: If next available element in |
|
2374 __uiobject_list__ is 0, grow list before doing anything else. |
|
2375 * plot/__uiobject_grow_list__.in: Only set __uiobject_head__ on |
|
2376 first call when size of __uiobject_list__ is 0. |
|
2377 |
6323
|
2378 2007-02-16 John W. Eaton <jwe@octave.org> |
|
2379 |
|
2380 * miscellaneous/Makefile.in (SOURCES): Remove popen2.m from the list. |
|
2381 |
6321
|
2382 2007-02-16 Michael Goffioul <michael.goffioul@swing.be> |
|
2383 |
|
2384 * miscellaneous/popen2.m: Remove as replaced with builtin. |
|
2385 |
6316
|
2386 2007-02-16 Muthiah Annamalai <muthuspost@gmail.com> |
|
2387 |
|
2388 * specfun/nchoosek.m: Check nargin. |
|
2389 |
6314
|
2390 2007-02-15 John W. Eaton <jwe@octave.org> |
|
2391 |
6315
|
2392 * path/addpath.m, path/rmpath.m: Delete |
|
2393 * path/Makefile.in (SOURCES): Remove them from the list. |
|
2394 |
6314
|
2395 * plot/__uiobject_axes_init__.in, plot/__uiobject_axes_setr__.m: |
|
2396 Delete title, xlabel, ylabel, and zlabel properties before |
|
2397 reassigning. |
|
2398 * plot/__uiobject_axes_init__.in: New arg, mode. |
|
2399 Don't init outerposition if "mode" is "replace". |
|
2400 * plot/newplot.m: Check both figure and axes nextplot properties. |
|
2401 If axes nextplot property is replace, pass "replace" as mode arg |
|
2402 to __uiobject_axes_init__. |
|
2403 |
6308
|
2404 2007-02-15 Daniel J Sebald <daniel.sebald@ieee.org> |
|
2405 |
6310
|
2406 * image/imshow.m: Don't restore old colormap. |
|
2407 |
6309
|
2408 * plot/__uiobject_image_ctor__.m: Set xdata and ydata properties. |
|
2409 * image/__img__.m: New file containing common parts of image.m and |
|
2410 imshow.m. |
6312
|
2411 * image/Makefile.in (SOURCES): Add __img__.m to the list. |
6309
|
2412 * image/image.m, image/imshow.m: Call __img__. |
|
2413 * plot/__uiobject_draw_axes__.m: |
|
2414 Handle rgb imaged data stored in 3-d arrays. |
|
2415 |
6308
|
2416 * plot/figure.m: Doc fix. |
|
2417 |
6304
|
2418 2007-02-14 Thomas Weber <thomas.weber.mail@gmail.com> |
|
2419 |
|
2420 * audio/wavread.m, audio/wavwrite.m: Use types with specific sizes |
|
2421 for reading and writing data. New tests. Improve rounding. |
|
2422 |
6302
|
2423 2007-02-13 John W. Eaton <jwe@octave.org> |
|
2424 |
6303
|
2425 * plot/stem.m: New file, adapted from OctPlot. |
|
2426 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2427 |
6302
|
2428 * plot/__errcomm__.m, plot/__plr1__.m, plot/__plr2__.m, |
|
2429 plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
2430 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
2431 plot/__plt2vv__.m, plot/__plt__.m, plot/loglog.m, |
|
2432 plot/loglogerr.m, plot/plot.m, plot/plot3.m, plot/polar.m, |
|
2433 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, |
|
2434 plot/semilogyerr.m: Return handles to line objects. |
|
2435 |
6301
|
2436 2007-02-11 John W. Eaton <jwe@octave.org> |
|
2437 |
|
2438 * plot/__uiobject_close_all.m: New file. |
|
2439 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2440 |
6298
|
2441 2007-02-10 John W. Eaton <jwe@octave.org> |
|
2442 |
|
2443 * plot/drawnow.m: Arrange for plot streams to be close on exit. |
|
2444 * plot/__uiobject_globals__.m: Don't call mlock. |
|
2445 |
|
2446 * plot/drawnow.m: Only check for DISPLAY if isunix returns true. |
|
2447 * plot/__uiobject_delete__.m: Send quit command and flush stream |
|
2448 before calling pclose. |
|
2449 |
6291
|
2450 2007-02-09 John W. Eaton <jwe@octave.org> |
|
2451 |
6295
|
2452 * plot/subplot.m: Delete spurious call to axes. |
|
2453 |
6293
|
2454 * plot/figure.m: Call drawnow for current figure before creating |
|
2455 or switching to a new figure. |
|
2456 * plot/__uiobject_init_figure__.in: Handle empty arg the same as |
|
2457 nargin == 0 case. |
|
2458 |
6291
|
2459 * testfun/assert.m: Try to avoid problems when comparisons involve |
|
2460 strange values like Inf+NaNi. |
|
2461 |
6283
|
2462 2007-02-08 John W. Eaton <jwe@octave.org> |
|
2463 |
6286
|
2464 * plot/drawnow.m: Use gnuplot_binary() instead of just "gnuplot" |
|
2465 and check gnuplot_use_title_option instead of just assuming -title |
|
2466 works. From Michael Goffioul <michael.goffioul@swing.be>. |
|
2467 |
6285
|
2468 * Makefile.in (DISTFILES): Add move-if-change to the list. |
|
2469 |
6284
|
2470 * audio/Makefile.in, control/base/Makefile.in, |
|
2471 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
2472 control/system/Makefile.in, control/util/Makefile.in, |
|
2473 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, |
|
2474 general/Makefile.in, image/Makefile.in, io/Makefile.in, |
|
2475 linear-algebra/Makefile.in, miscellaneous/Makefile.in, |
|
2476 optimization/Makefile.in, plot/Makefile.in, |
|
2477 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
2478 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
2479 special-matrix/Makefile.in, startup/Makefile.in, |
|
2480 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
2481 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
2482 strings/Makefile.in, testfun/Makefile.in, time/Makefile.in, |
|
2483 path/Makefile.in, pkg/Makefile.in: Explicitly list source files. |
|
2484 |
6283
|
2485 * plot/figure.m: Don't call drawnow. Correctly init figure when |
|
2486 only given property list. |
|
2487 |
6278
|
2488 2007-02-07 John W. Eaton <jwe@octave.org> |
|
2489 |
6280
|
2490 * plot/__uiobject_draw_axes__.m: Handle xdir, ydir, and zdir axis |
|
2491 properties. |
|
2492 |
6278
|
2493 * plot/sombrero.m: Call box ("off") after mesh. |
|
2494 |
|
2495 * plot/__uiobject_draw_axes__.m: Avoid rgb colors and "set style |
|
2496 line default" commands with older versions of gnuplot. |
|
2497 |
|
2498 * plot/close.m: Use get (0, "currentifgure") instead of gcf. |
|
2499 |
6273
|
2500 2007-02-06 John W. Eaton <jwe@octave.org> |
|
2501 |
|
2502 * plot/__uiobject_draw_axes__.m: Set pt to 0 if marker is ".". |
|
2503 * sparse/gplot.m: Use line style - instead of 1. |
|
2504 |
6272
|
2505 2007-02-05 Rafael Laboissiere <rafael@debian.org> |
|
2506 |
|
2507 * plot/print.m: Avoid error message from cellidx. |
|
2508 |
|
2509 2007-02-05 John W. Eaton <jwe@octave.org> |
|
2510 |
|
2511 * plot/legend.m: Fix check for data. |
|
2512 |
6270
|
2513 2007-02-05 Thomas Treichl <Thomas.Treichl@gmx.net> |
|
2514 |
|
2515 * plot/__uiobject_draw_axes__.m (do_linestyle_command): |
|
2516 Always set lt and pt. |
|
2517 |
6269
|
2518 2007-02-05 Shai Ayal <shaiay@users.sourceforge.net> |
|
2519 |
|
2520 * plot/contourc.m: Correctly compute X and Y. |
|
2521 |
6268
|
2522 2007-02-05 John W. Eaton <jwe@octave.org> |
|
2523 |
|
2524 * plot/__uiobject_draw_axes__.m: Use title "" if no explicit title. |
|
2525 When setting {x,y,z}lim, also set {x,y,z}limmode to "auto. |
|
2526 |
6264
|
2527 2007-02-01 John W. Eaton <jwe@octave.org> |
|
2528 |
6266
|
2529 * plot/__uiobject_draw_axes__.m: |
|
2530 Don't try to set axis limits unless we have data. |
|
2531 |
6264
|
2532 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
2533 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
2534 plot/__plt2vv__.m, plot/__plt__.m, plot/__pltopt1__.m, |
|
2535 plot/__pltopt__.m, plot/plot3.m: Set and use options struct |
|
2536 instead of of key and fmt strings. |
|
2537 |
|
2538 * plot/__pltopt1__.m: Greatly simplify. |
|
2539 |
|
2540 * plot/__next_line_color__.m: New file. |
|
2541 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2542 * plot/newplot.m: Call __next_line_color__ here to reset rotation. |
|
2543 |
|
2544 * plot/__default_plot_options__.m: New file. |
|
2545 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2546 |
|
2547 * plot/__plt3__.m: Delete. |
|
2548 * plot/Makefile.in (SOURCES_M): Remove it from the list. |
|
2549 |
6259
|
2550 2007-01-31 John W. Eaton <jwe@octave.org> |
|
2551 |
6263
|
2552 * plot/__uiobject_draw_axes__.m: Set defaults for color, |
|
2553 linestyle, linewidth, marker, and markersize properties. |
|
2554 * plot/__uiobject_draw_axes__.m: Attempt to handle line and marker |
|
2555 colors and widths, and line styles. |
|
2556 |
|
2557 * plot/__plt__.m, image/image.m: Don't call drawnow. |
6262
|
2558 |
6261
|
2559 * plot/__gnuplot_version__.m: Restore from CVS Attic. |
|
2560 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2561 |
|
2562 * plot/__uiobject_draw_axes__.m: Delete useless call to |
|
2563 __gnuplot_save_data__. |
|
2564 |
6259
|
2565 * image/image.m: Accept 2 args, but ignore the second for now. |
|
2566 |
6258
|
2567 2007-01-30 David Bateman <dbateman@free.fr> |
|
2568 |
|
2569 * pkg/pkg.m (pkg, isautoload, install, load_packages): Add ability |
|
2570 to flag a package as to be autoloaded. Add install flags -noauto, |
|
2571 -auto to force autoload behavior. |
|
2572 (installed_packages): Make list of installed packages unique. |
|
2573 |
6259
|
2574 2007-01-30 John W. Eaton <jwe@octave.org> |
|
2575 |
|
2576 * Merge of changes from graphics-branch: |
|
2577 |
|
2578 2007-01-29 John W. Eaton <jwe@octave.org> |
6257
|
2579 |
|
2580 * plot/subplot.m: Set nextplot property of current figure to "add". |
|
2581 |
|
2582 * plot/__uiobject_draw_axes__.m: Only handle outerposition |
|
2583 property if it exists. |
|
2584 |
6259
|
2585 2007-01-26 John W. Eaton <jwe@octave.org> |
6257
|
2586 |
|
2587 * plot/__uiobject_draw_axes__.m: Move initialization of max and |
|
2588 min values outside of loop over child objects. |
|
2589 |
|
2590 * plot/contour.m, plot/contourc.m: New files. |
|
2591 * plot/Makefile.in (SOURCES_M): Add them to the list. |
|
2592 |
|
2593 * image/image_viewer.m: Set view_fcn to "gnuplot_internal" if we |
|
2594 find a gnuplot version newer than 4.0. |
|
2595 * image/__img_gnuplot__.m: Delete. |
|
2596 * image/image.m: Create image graphics object. |
|
2597 Call newplot to setup and drawnow to finish. |
|
2598 Eliminate ZOOM arg. |
|
2599 |
|
2600 * plot/__uiobject_draw_axes__.m: Handle image data. |
|
2601 |
|
2602 * plot/legend.m: Eliminate useless variable "warned". |
|
2603 |
|
2604 * plot/__uiobject_image_ctor__.m: New file. |
|
2605 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2606 |
|
2607 * plot/gcf.m: Also create new figure if currentfigure is 0. |
|
2608 * plot/drawnow.m: Use get (0, "currentfigure") instead of gcf. |
|
2609 |
|
2610 * plot/__uiobject_root_figure_ctor__.m: Set visible property. |
|
2611 |
|
2612 * plot/__default_colormap__.m: New file. |
|
2613 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2614 * plot/__uiobject_figure_ctor__.m: Use it to set default colormap |
|
2615 property. |
|
2616 * image/colormap.m: Use colormap property of current figure |
|
2617 to store colormap instead of using persistent variable. |
|
2618 Call __default_colormap__ to get default map value. |
|
2619 * image/ocean.m, image/gray.m: Set colormap for current figure. |
|
2620 |
|
2621 * plot/__uiobject_draw_axes__.m: Handle aspect ratio property. |
|
2622 Handle some tick mark options. |
|
2623 |
|
2624 * plot/__uiobject_axes_setr__.m: If we see xtick, ytick, or ztick, |
|
2625 set corresponding *mode to "manual". If we set dataaspectratio, |
|
2626 set dataaspectratiomode to "manual". |
|
2627 |
|
2628 * plot/__uiobject_axes_init__.m: Include *tick, *tickmode, |
|
2629 *ticklabelmode, dataaspectratio, dataaspectratiomode properties. |
|
2630 |
|
2631 * plot/axis.m: New file. |
|
2632 * plot/Makefile.in (SOURCES_M): Include it in the list. |
|
2633 |
|
2634 * plot/__uiobject_axes_setr__.m: If we see xlim, ylim, or zlim, |
|
2635 set corresponding *limmode to "manual". |
|
2636 * plot/__uiobject_draw_axes__.m (get_axis_limits): New subfunction. |
|
2637 Use it to compute autosclaled limits. |
|
2638 Arg is now handle, not object. Change all callers. |
|
2639 Compute data limits. |
|
2640 |
6259
|
2641 2007-01-25 John W. Eaton <jwe@octave.org> |
6257
|
2642 |
|
2643 * plot/drawnow: Fix visibility check for zero args. |
|
2644 |
|
2645 * plot/text.m: New file. |
|
2646 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2647 * plot/__uiobject_draw_axes__.m: Handle text objects. |
|
2648 * plot/__uiobject_text_ctor__.m: Include units, position, and |
|
2649 horizontalalignment properties. |
|
2650 |
|
2651 * plot/figure.m: Set options for f we just constructed or were |
|
2652 given as an argument, not gcf. Only return handle if nargout > 0. |
|
2653 |
|
2654 * plot/drawnow.m: Handle visible field for figure here. |
|
2655 * plot/__uiobject_figure_ctor__.m: Set default visible field. |
|
2656 |
|
2657 * plot/__uiobject_draw_axes__.m: Call undo_string_escapes on |
|
2658 title and axis labels. |
|
2659 |
|
2660 * plot/plot3.m, plot/mesh.m: Set default 3-d view here. |
|
2661 * plot/__uiobject_draw_axes__.m: Handle view for 3-d plots. |
|
2662 * plot/__uiobject_axes_init__.in: Set default view field for object. |
|
2663 * plot/view.m: New file. |
|
2664 * plot/Makefile.in (SOURCES_M): Add it to the list. |
|
2665 |
|
2666 * plot/__uiobject_make_handle__.in, plot/set.m, plot/drawnow.m: |
|
2667 Call __request_drawnow__. |
|
2668 |
|
2669 * plot/newplot.m: For "replace" action, call __uiobject_axes_init__. |
|
2670 |
|
2671 * plot/__uiobject_axes_ctor__.m, plot/__uiobject_text_ctor__.m: |
|
2672 Call set to set properties. Return handle instead of structure. |
|
2673 Change all callers. |
|
2674 |
|
2675 * plot/__uiobject_axes_setr__.m: New file. |
|
2676 * plot/set.in: Check for __setter__ field. |
|
2677 |
|
2678 * plot/__uiobject_axes_init__.in: |
|
2679 Rename from plot/__uiobject_axes_init__.m. |
|
2680 Include __uiobject_globals__. |
|
2681 Accept handle as arg instead of structure |
|
2682 * plot/Makefile.in (SOURCES_M): Remove __uiobject_axes_init__.m |
|
2683 from the list. |
|
2684 (SOURCES_IN): Add __uiobject_axes_init__.in to the list. |
|
2685 |
6259
|
2686 2007-01-24 John W. Eaton <jwe@octave.org> |
6257
|
2687 |
|
2688 * plot/Makefile.in ($(GEN_M)): Depend on __uiobject_globals__.m. |
|
2689 |
|
2690 * plot/__uiobject_globals__.m: Call __lock_global__ when |
|
2691 initializing each global variable. |
|
2692 |
6259
|
2693 2007-01-18 John W. Eaton <jwe@octave.org> |
6257
|
2694 |
|
2695 * plot/__uiobject_globals__.m (__uiobject_handles_free_list__, |
|
2696 __uiobject_figure_handles_free_list__): New global variables. |
|
2697 * plot/__uiobject_get_handle__.m, plot/__uiobject_free__.m: |
|
2698 Place unused handles on the free list. |
|
2699 |
|
2700 * plot/__uiobject_get_figure_handle__.in: Delete. |
|
2701 * plot/Makefile.in: Delete it from the SOURCES_IN list. |
|
2702 |
|
2703 * plot/__uiobject_init_figure__.in: Perform allocation of figure |
|
2704 handles here. Return figure handle. |
|
2705 * plot/figure.m: Call __uiobject_init_figure__ to allocate handle. |
|
2706 |
6259
|
2707 2007-01-11 John W. Eaton <jwe@octave.org> |
6257
|
2708 |
|
2709 * plot/__uiobject_draw_axes__.m: Use "%g", not "%.4g" when writing |
|
2710 data for gnuplot. |
|
2711 |
|
2712 * plot/Makefile.in (SOURCES_M, SOURCES_IN, GEN_M): New lists of |
|
2713 files. |
|
2714 (SOURCES): Include $(SOURCES_M) and $(SOURCES_M) in the list. |
|
2715 (DISTFILES): Include include-globals.awk in the list. |
|
2716 (FCN_FILES): Define using $(SOURCES_M) and $(GEN_M). |
|
2717 ($(GEN_M) : %.m : %.in): New rule. |
|
2718 |
|
2719 * include-globals.awk: New file. |
|
2720 |
|
2721 * plot/__uiobject_alloc__.in, plot/__uiobject_figures__.in, |
|
2722 plot/__uiobject_free__.in, plot/__uiobject_get_figure_handle__.in, |
|
2723 plot/__uiobject_get_handle__.in, plot/__uiobject_grow_list__.in, |
|
2724 plot/__uiobject_handle2idx__.in, plot/__uiobject_init_figure__.in, |
|
2725 plot/__uiobject_init_root_figure__.in, |
|
2726 plot/__uiobject_make_handle__.in, plot/get.in, plot/set.in: |
|
2727 Rename from corresponding .m files. |
|
2728 |
|
2729 * move-if-change: New file. |
|
2730 |
|
2731 * plot/__uiobject_delete__.m: New file. |
|
2732 * plot/delete.m, plot/__uiobject_delete_children__.m, |
|
2733 plot/__uiobject_delete_child__.m: Delete. |
|
2734 * miscellaneous/delete.m: Forward to __uiobject_delete__ if arg is |
|
2735 not a character string. |
|
2736 * plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2vm__.m: |
|
2737 Fix assignment to tmp key value in loop. |
|
2738 * plot/__uiobject_axes_dtor__.m: No need to Call __uiobject_free__ |
|
2739 for obj.title, obj.xlabel, obj.ylabel, obj.zlabel. |
|
2740 * plot/__uiobject_axes_dtor__.m, plot/__uiobject_axis_init__.m: |
|
2741 Inline code to delete children. |
|
2742 * plot/__uiobject_free__.m: Arg is now handle, not index into |
|
2743 __uiobject_list__. |
|
2744 * plot/clf.m, plot/closereq.m, plot/newplot.m: No need to remove |
|
2745 and free child. |
|
2746 |
6259
|
2747 2006-12-08 John W. Eaton <jwe@octave.org> |
|
2748 |
|
2749 * plot/gcf.m: Check if the root figure object's currentfigure |
|
2750 handle is empty, not 0. |
|
2751 * plot/__uiobject_root_figure_ctor__.m: |
|
2752 Set currentfigure to [], not 0. |
|
2753 |
|
2754 * plot/stairs.m: Handle matrix arguments. Improve compatibility. |
|
2755 |
|
2756 2006-12-07 John W. Eaton <jwe@octave.org> |
|
2757 |
|
2758 * plot/__plt_get_axis_arg__.m, plot/__uiobject_adopt__.m, |
|
2759 plot/__uiobject_alloc__.m, plot/__uiobject_axes_ctor__.m, |
|
2760 plot/__uiobject_axes_dtor__.m, plot/__uiobject_axes_init__.m, |
|
2761 plot/__uiobject_delete_children__.m, |
|
2762 plot/__uiobject_draw_axes__.m, plot/__uiobject_draw_figure__.m, |
|
2763 plot/__uiobject_figure_ctor__.m, plot/__uiobject_figures__.m, |
|
2764 plot/__uiobject_free__.m, plot/__uiobject_get_figure_handle__.m, |
|
2765 plot/__uiobject_get_handle__.m, plot/__uiobject_globals__.m, |
|
2766 plot/__uiobject_grow_list__.m, plot/__uiobject_handle2idx__.m, |
|
2767 plot/__uiobject_init_figure__.m, |
|
2768 plot/__uiobject_init_root_figure__.m, |
|
2769 plot/__uiobject_line_ctor__.m, plot/__uiobject_make_handle__.m, |
|
2770 plot/__uiobject_remove_child__.m, |
|
2771 plot/__uiobject_root_figure_ctor__.m, |
|
2772 plot/__uiobject_surface_ctor__.m, plot/__uiobject_text_ctor__.m, |
|
2773 plot/axes.m, plot/box.m, plot/closereq.m, plot/delete.m, |
|
2774 plot/drawnow.m, plot/gca.m, plot/gcf.m, plot/get.m, |
|
2775 plot/isfigure.m, plot/ishandle.m, plot/line.m, plot/newplot.m, |
|
2776 plot/set.m: New files. |
|
2777 |
|
2778 * plot/__plt3__.m, plot/errorbar.m, plot/__axis_label__.m, |
|
2779 plot/__plr1__.m, plot/__errcomm__.m, plot/print.m, plot/zlabel.m, |
|
2780 plot/__plt1__.m, plot/__plt2__.m, plot/sombrero.m, plot/shg.m, |
|
2781 plot/fplot.m, plot/ndgrid.m, plot/clf.m, plot/hold.m, |
|
2782 plot/ishold.m, plot/meshdom.m, plot/ylabel.m, plot/__plt2ss__.m, |
|
2783 plot/__plt2vv__.m, plot/__plr2__.m, plot/__plt2mm__.m, |
|
2784 plot/__pltopt1__.m, plot/meshgrid.m, plot/__plt2mv__.m, |
|
2785 plot/figure.m, plot/xlabel.m, plot/stairs.m, plot/__plt2vm__.m, |
|
2786 plot/bar.m, plot/__errplot__.m, plot/semilogx.m, plot/semilogy.m, |
|
2787 plot/loglog.m, plot/polar.m, plot/legend.m, plot/orient.m, |
|
2788 plot/title.m, plot/__pltopt__.m, plot/grid.m, plot/hist.m, |
|
2789 plot/subplot.m, plot/plot.m, plot/mesh.m, plot/__plt__.m, |
|
2790 plot/close.m, plot/loglogerr.m, plot/plot3.m, plot/semilogxerr.m, |
|
2791 plot/semilogyerr.m, plot/replot.m: |
|
2792 Adapt to new graphics data structure. |
|
2793 |
|
2794 * plot/__do_legend__.m, plot/__gnuplot_version__.m, |
|
2795 plot/__init_plot_vars__.m, plot/__make_using_clause__.m, |
|
2796 plot/__plot_globals__.m, plot/__plr__.m, plot/__render_plot1__.m, |
|
2797 plot/__render_plot__.m, plot/__setup_plot__.m, plot/axis.m, |
|
2798 plot/contour.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, |
|
2799 plot/plot_border.m, plot/subwindow.m: Delete. |
|
2800 |
|
2801 2007-01-24 David Bateman <dbateman@free.fr> |
|
2802 |
|
2803 * pkg/pkg.m: Install ChangeLog file if it exists. |
|
2804 Delete bare newline in string passed to write_INDEX. |
|
2805 |
|
2806 * sparse/sprandsym.m: Make work for even values of N. |
|
2807 |
|
2808 2007-01-24 John W. Eaton <jwe@octave.org> |
|
2809 |
|
2810 * miscellaneous/news.m: New file. |
|
2811 |
|
2812 2007-01-23 Luis F. Ortiz <lortiz@interactivesupercomputing.com> |
|
2813 |
|
2814 * strings/strncmpi.m: Use strncmp instead of calling strtrunc on args. |
|
2815 |
|
2816 * strings/strncmp.m: Delete (we now have a built-in version). |
|
2817 |
|
2818 2007-01-22 Bob Weigel <rweigel@gmu.edu> |
|
2819 |
|
2820 * testfun/test.m: Check for all files in path, use first found. |
|
2821 |
|
2822 2007-01-22 David Bateman <dbateman@free.fr> |
|
2823 |
|
2824 * polynomial/spline.m: Make DG a column instead of a row vector. |
|
2825 |
|
2826 2007-01-18 S�ren Hauberg <hauberg@gmail.com> |
|
2827 |
|
2828 * pkg/pkg.m (copy_files): Call write_INDEX with correct target |
|
2829 file name. |
|
2830 |
|
2831 * image/ind2rgb.m: Better input checking. Return 3-d array if |
|
2832 nargout is 1. Handle colormaps that have too few colors. |
|
2833 |
|
2834 * pkg/pkg.m (create_pkgadddel): Call fullfile with nm, not "nm". |
|
2835 (configure_make): Use fullfile instead of concatenating with "/". |
|
2836 |
6258
|
2837 2007-01-10 Baylis Shanks <bshanks3@hotmail.com> |
|
2838 |
|
2839 * set/ismember.m: Handle N-d arrays. |
|
2840 |
|
2841 2007-01-10 David Bateman <dbateman@free.fr> |
|
2842 |
|
2843 * elfun/acosd.m, elfun/acotd.m, elfun/acscd.m, elfun/asecd.m, |
|
2844 elfun/asind.m, elfun/atand.m, elfun/cosd.m, elfun/cotd.m, |
|
2845 elfun/cscd.m, elfun/secd.m, elfun/sind.m, elfun/tand.m: |
|
2846 New files. |
|
2847 |
|
2848 2007-01-09 S�ren Hauberg <hauberg@gmail.com> |
|
2849 |
6778
|
2850 * pkg/pkg.m: Allow filenames to contain glob patterns. |
6258
|
2851 |
|
2852 2007-01-08 S�ren Hauberg <hauberg@gmail.com> |
|
2853 |
|
2854 * pkg/pkg.m: Use copyfile instead of calling system. Use fullfile |
|
2855 instead of concatenating with "/". Use mlock to ensure that |
|
2856 persistent variables are not clobbered if user types clear all. |
|
2857 |
|
2858 2007-01-08 John W. Eaton <jwe@octave.org> |
|
2859 |
|
2860 * miscellaneous/copyfile.m, miscellaneous/movefile.m: |
|
2861 Improve handling of file names containing globbing characters. |
|
2862 From S�ren Hauberg <hauberg@gmail.com>. |
|
2863 |
|
2864 2007-01-05 John W. Eaton <jwe@octave.org> |
|
2865 |
|
2866 * optimization/optimset.m, optimization/__fsolve_defopts__.m: |
|
2867 New files. |
|
2868 |
|
2869 2006-12-30 John W. Eaton <jwe@octave.org> |
|
2870 |
|
2871 * sparse/spfun.m: Check for "function_handle" not "function handle". |
|
2872 * plot/fplot.m: Likewise. Use isa instead of strcmp + class. |
|
2873 |
|
2874 2006-12-27 S�ren Hauberg <hauberg@gmail.com> |
|
2875 |
|
2876 * image/imshow.m: Strip NaNs from image. |
|
2877 |
|
2878 2006-12-08 David Bateman <dbateman@free.fr> |
|
2879 |
|
2880 * sparse/normest.m: New file. |
|
2881 |
6286
|
2882 2006-12-06 Michael Goffioul <michael.goffioul@swing.be> |
6209
|
2883 |
6210
|
2884 * miscellaneous/copyfile.m, miscellaneous/movefile.m: |
|
2885 Work on Windows systems without cp or mv. |
|
2886 |
6209
|
2887 * startup/inputrc: Include sequences for Windows. |
|
2888 |
6203
|
2889 2006-12-06 S�ren Hauberg <hauberg@gmail.com> |
|
2890 |
|
2891 * pkg/pkg.m (unload_packages): New function. |
|
2892 (pkg): Handle unload action. |
|
2893 |
|
2894 * __errplot__.m: Add missing semicolon. |
|
2895 |
6193
|
2896 2006-11-30 John W. Eaton <jwe@octave.org> |
|
2897 |
|
2898 * miscellaneous/mexext.m: New file. |
|
2899 |
6189
|
2900 2006-11-29 David Bateman <dbateman@free.fr> |
|
2901 |
|
2902 * pkg/pkg.m: Add local_list and global_list options that allow the |
|
2903 location of package lists to be probed and set. |
|
2904 |
6179
|
2905 2006-11-17 John W. Eaton <jwe@octave.org> |
|
2906 |
6181
|
2907 * plot/__render_plot1__.m: Reverse y axis for images. |
|
2908 |
6179
|
2909 * plot/__render_plot__.m: New args, terminal and output. |
|
2910 * plot/print.m: Don't set output and term here. Instead, call |
|
2911 __render_plot__ with terminal and output. |
|
2912 |
6178
|
2913 2006-11-16 John W. Eaton <jwe@octave.org> |
|
2914 |
|
2915 * plot/__render_plot1__.m: New file. |
|
2916 * plot/__render_plot__.m: Use it. Loop over multiplots. |
|
2917 * plot/print.m, plot/subplot.m: Don't send "set multiplot" to |
|
2918 gnuplot. Let __render_plot__ do that. |
|
2919 |
6177
|
2920 2006-11-16 Francesco Potorti` <Potorti@isti.cnr.it> |
|
2921 |
|
2922 * plot/plot.m: Fix doc string. |
|
2923 |
6173
|
2924 2006-11-16 John W. Eaton <jwe@octave.org> |
|
2925 |
|
2926 * plot/__render_plot__.m: Check for mix of 2-d and 3-d plots |
|
2927 before sending anything to the plotter. |
|
2928 |
6172
|
2929 2006-11-15 John W. Eaton <jwe@octave.org> |
|
2930 |
|
2931 * image/__img_gnuplot__.m: Store more info in global plot |
|
2932 structures and use __render_plot__ to build plot command to |
|
2933 display image. |
|
2934 |
|
2935 * plot/__plt3__.m: New arg, parametric. Change all callers. |
|
2936 |
|
2937 * plot/__plot_globals__.m (__plot_line_offset__, __plot_command__, |
|
2938 __plot_command_sep__): Delete. |
|
2939 (__plot_data_type__, __plot_data_parametric__, |
|
2940 __plot_image_colormap__, __plot_image_dims__, __plot_fmtstr__, |
|
2941 __plot_usingstr__, __plot_withstr__): New variables. |
|
2942 * plot/__init_plot_vars__.m: Initialize them. |
|
2943 |
|
2944 * plot/__init_plot_vars__.m, plot/__setup_plot__.m: |
|
2945 Don't handle sep or cmd. |
|
2946 |
|
2947 * plot/__render_plot__.m: New function. |
|
2948 * plot/__plt__.m, plot/__plt3__.m, plot/__errplot__.m: |
|
2949 Store more info in global plot structures and use __render_plot__ |
|
2950 to build plot command. |
|
2951 * plot/replot.m: Simply call __render_plot__. |
|
2952 |
|
2953 * plot/contour.m, plot/mesh.m, plot/plot3.m: |
|
2954 Set __plot_data_parametric__ here. |
|
2955 |
6164
|
2956 2006-11-14 John W. Eaton <jwe@octave.org> |
|
2957 |
6166
|
2958 * plot/bottom_title.m, plot/top_title.m: Delete. |
|
2959 |
6164
|
2960 * image/image_viewer.m: Set default values here. |
|
2961 * image/image.m: Not here. |
|
2962 |
|
2963 * image/image_viewer.m: Always return old values. Check arguments. |
|
2964 * image/__img_gnuplot__.m: Rename from __img__m. |
|
2965 |
|
2966 2006-11-14 S�ren Hauberg <soren@hauberg.org> |
|
2967 |
|
2968 * image/image_viewer.m: New function. |
|
2969 * image/__img_via_file__.m: New function. |
|
2970 * image/image.m: Use image_viewer to determine which program to |
|
2971 use for image viewing. |
6754
|
2972 * image/__img__.m: Silently accept more than 3 args. |
6164
|
2973 |
6163
|
2974 2006-11-14 John W. Eaton <jwe@octave.org> |
|
2975 |
|
2976 * plot/__do_legend__.m, plot/__errplot__.m, |
|
2977 plot/__init_plot_vars__.m, plot/__plot_globals__.m, |
|
2978 plot/__plt3__.m, plot/__plt__.m, plot/__setup_plot__.m, |
|
2979 plot/legend.m, plot/mplot.m, plot/multiplot.m, plot/oneplot.m, |
|
2980 plot/replot.m, plot/subplot.m, plot/subwindow.m: |
|
2981 Use __plot_globals__ for multiplot variables. Keep track of |
|
2982 multiplot info for each figure. Eliminate __multiplot_xscale__. |
|
2983 |
6157
|
2984 2006-11-13 John W. Eaton <jwe@octave.org> |
|
2985 |
6158
|
2986 * plot/mesh.m: Use proper dimensions for y in call to repmat. |
|
2987 |
6157
|
2988 * miscellaneous/substruct.m: New function. |
|
2989 |
|
2990 * testfun/assert.m: Force orientation to match when comparing |
|
2991 struct elements. |
|
2992 |
|
2993 * general/__isequal__.m: Avoid assignment of comma-separated lists |
|
2994 when comparing structs. |
|
2995 |
|
2996 2006-11-13 S�ren Hauberg <hauberg@gmail.com> |
|
2997 |
6754
|
2998 * general/bicubic.m, general/cart2pol.m, general/cart2sph.m, |
|
2999 plot/contour.m, linear-algebra/cross.m, general/cumtrapz.m, |
|
3000 linear-algebra/dot.m, image/imshow.m, general/interp2.m, |
|
3001 general/mod.m, plot/plot3.m, plot/__plr2__.m, plot/__plr__.m, |
|
3002 general/pol2cart.m, general/polyarea.m, polynomial/polyfit.m, |
|
3003 general/rem.m, image/rgb2ind.m, general/sph2cart.m, |
|
3004 general/trapz.m, miscellaneous/xor.m: Use size_equal. |
6157
|
3005 |
6156
|
3006 2006-11-13 John W. Eaton <jwe@octave.org> |
|
3007 |
|
3008 * plot/mesh.m: Use size_equal to compare dimensions. |
|
3009 |
6154
|
3010 2006-11-13 S�ren Hauberg <soren@hauberg.org> |
|
3011 |
|
3012 * plot/mesh.m: Simplify. Set hidden3d for the plot. |
|
3013 |
6152
|
3014 2006-11-11 S�ren Hauberg <soren@hauberg.org> |
|
3015 |
|
3016 * miscellaneous/copyfile.m: Fix docs to match function. |
|
3017 |
6145
|
3018 2006-11-08 John W. Eaton <jwe@octave.org> |
|
3019 |
6146
|
3020 * plot/legend.m: New function, adapted from Octave Forge. |
|
3021 |
|
3022 * plot/__do_legend__.m: New function. |
|
3023 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m, |
|
3024 plot/replot.m: Call it before plotting. |
|
3025 |
|
3026 * plot/plot3.m, plot/mesh.m, plot/contour.m: Don't send "set |
|
3027 noparametric" to gnuplot.. |
|
3028 |
|
3029 * plot/__plotopt__.m, plot/__pltopt1__.m, plot/__plt1__.m, |
|
3030 plot/__plt2__.m, plot/__plt2mm__.m, plot/__plt2mv__.m, |
|
3031 plot/__plt2ss__.m, plot/__plt2vm__.m, plot/__plt2vv__.m: Accept |
|
3032 and return key title separate from line format. Accept format and |
|
3033 key as cellstr. Always return data as cell array. Return format |
|
3034 and key title as cellstr. |
|
3035 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m: |
|
3036 Handle line format and key titles separately. |
|
3037 * plot/__plt3__.m, plot/__plt__.m: Handle data as cell array only. |
|
3038 |
|
3039 * plot/__plot_globals__.m (__plot_line_offset__, |
|
3040 __plot_key_labels__, __plot_key_properties__): New global |
|
3041 variables. Initialize them. |
|
3042 * plot/__init_plot_vars__.m (__plot_line_offset__, |
|
3043 __plot_key_labels__, __plot_key_properties__): Initialize. |
|
3044 * plot/__errplot__.m, plot/__plt3__.m, plot/__plt__.m |
|
3045 (__plot_line_offset__, __plot_key_labels__, |
|
3046 __plot_key_properties__): Store information about plot key titles. |
|
3047 |
|
3048 * plot/__errplot__.m, plot/__init_plot_vars__.m, plot/__plt3__.m, |
|
3049 plot/__plt__.m: Use cf, mxi, and myi as shorthand for |
|
3050 __current_figure__, __multiplot_xi__, and __multiplot_yi__, |
|
3051 respectively. |
|
3052 |
|
3053 * plot/__errcomm__.m: Allow fmt to be cellstr. |
|
3054 |
6145
|
3055 * strings/strcat.m: Disable Octave:empty-list-elements warning |
|
3056 whle concatenating args. |
|
3057 |
6144
|
3058 2006-11-07 John W. Eaton <jwe@octave.org> |
|
3059 |
|
3060 * startup/main-rcfile: Conditionally set PAGER_FLAGS. |
|
3061 |
6142
|
3062 2006-11-06 S�ren Hauberg <soren@hauberg.org> |
|
3063 |
6143
|
3064 * pkg/pkg.m (extract_pkg): No need to pass "dotexceptnewline" |
|
3065 option to regexp. |
|
3066 |
6142
|
3067 * image/__img__.m: Send "set size ratio -1" before plotting. |
|
3068 |
6138
|
3069 2006-11-03 Bill Denney <denney@seas.upenn.edu> |
|
3070 |
6139
|
3071 * strings/index.m: New arg, direction. Simplify and speed up. |
|
3072 * strings/rindex.m: Implement using index (..., "last"); |
|
3073 |
6754
|
3074 * blanks.m, strcat.m: Simplify. Add tests. |
6138
|
3075 |
6130
|
3076 2006-11-01 Bill Denney <denney@seas.upenn.edu> |
|
3077 |
|
3078 * general/__isequal__.m: Test size and class more consistently. |
|
3079 |
6116
|
3080 2006-10-27 John W. Eaton <jwe@octave.org> |
|
3081 |
6117
|
3082 * miscellaneous/ls_command.m: Use /D instead of /w. |
|
3083 From Michael Goffioul <michael.goffioul@swing.be>. |
|
3084 |
6116
|
3085 * miscellaneous/ls.m, miscellaneous/ls_command.m: New files. |
|
3086 * miscellaneous/dir.m: Mark as a command. |
|
3087 |
6112
|
3088 2006-10-27 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
3089 |
|
3090 * miscellaneous/unpack.m: Fix missing comma in strcat call. |
|
3091 |
6088
|
3092 2006-10-25 John W. Eaton <jwe@octave.org> |
|
3093 |
|
3094 * image/image.m: Set x = y = [] when nargin == 0; |
|
3095 |
|
3096 2006-10-25 Quentin Spencer <qspencer@ieee.org> |
|
3097 |
|
3098 * image/image.m: Call __img__ if gnuplot version is > 4.0. |
|
3099 * image/__img__.m: New file, originally from |
|
3100 Daniel J Sebald <daniel.sebald@ieee.org>. |
|
3101 |
6087
|
3102 2006-10-25 John W. Eaton <jwe@octave.org> |
|
3103 |
|
3104 * plot/__gnuplot_version__.m: New function, originally from |
|
3105 Daniel J Sebald <daniel.sebald@ieee.org> by way of |
|
3106 Quentin Spencer <qspencer@ieee.org>. |
|
3107 |
6085
|
3108 2006-10-25 S�ren Hauberg <soren@hauberg.org> |
|
3109 |
|
3110 * plot/__pltopt__.m: Update symbol marker id numbers for gnuplot 4. |
|
3111 |
6081
|
3112 2006-10-24 Bill Denney <denney@seas.upenn.edu> |
|
3113 |
|
3114 * miscellaneous/unpack.m, miscellaneous/bunzip2.m, |
|
3115 miscellaneous/gunzip.m: New files. |
|
3116 * miscellaneous/untar.m, miscellaneous/unzip.m: |
|
3117 Call unpack to do the real work. |
|
3118 |
6075
|
3119 2006-10-24 John W. Eaton <jwe@octave.org> |
|
3120 |
6078
|
3121 * plot/plot3.m: If we have a format string, then also pass using |
|
3122 string to __plt3__. |
|
3123 |
6077
|
3124 * plot/sombrero.m: Don't return anything if nargout == 0. |
|
3125 |
6075
|
3126 * plot/__plt3__.m: Create using clause if none is supplied. |
6077
|
3127 * plot/mesh.m: Always pass empty using string to __plt3__. |
6075
|
3128 |
6069
|
3129 2006-10-20 Bill Denney <denney@seas.upenn.edu> |
|
3130 |
|
3131 * movefile.m, copyfile.m: Handle cellstr lists of files. |
|
3132 Quote filenames in shell commands. |
|
3133 |
6055
|
3134 2006-10-17 David Bateman <dbateman@free.fr> |
|
3135 |
|
3136 * pkg/pkg.m (uninstall): Allow the uninstall to proceed even if |
|
3137 the package directory is missing. |
|
3138 |
6052
|
3139 2006-10-13 John W. Eaton <jwe@octave.org> |
|
3140 |
|
3141 * plot/box.m: New function. |
|
3142 |
6050
|
3143 2006-10-13 Etienne Grossmann <etienne@tyzx.com> |
|
3144 |
|
3145 * general/ind2sub.m, general/sub2ind.m: Handle empty indices. |
|
3146 |
6049
|
3147 2006-10-12 Quentin Spencer <qspencer@ieee.org> |
|
3148 |
|
3149 * plot/sombrero.m: Only plot if nargout == 0. Otherwise, return data. |
|
3150 |
6047
|
3151 2006-10-10 John W. Eaton <jwe@octave.org> |
|
3152 |
|
3153 * miscellaneous/copyfile.m, miscellaneous/movefile.m: New functions. |
|
3154 |
6046
|
3155 2006-10-10 Bill Denney <denney@seas.upenn.edu> |
|
3156 |
|
3157 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, |
|
3158 audio/playaudio.m, audio/record.m, audio/saveaudio.m, |
|
3159 audio/setaudio.m, audio/wavread.m, audio/wavwrite.m, |
|
3160 control/base/__bodquist__.m, control/base/__freqresp__.m, |
|
3161 control/base/are.m, control/base/bode.m, control/base/ctrb.m, |
|
3162 control/base/damp.m, control/base/dare.m, control/base/dcgain.m, |
|
3163 control/base/dre.m, control/base/impulse.m, control/base/lqg.m, |
|
3164 control/base/lsim.m, control/base/lyap.m, control/base/nichols.m, |
|
3165 control/base/nyquist.m, control/base/obsv.m, control/base/pzmap.m, |
|
3166 control/base/rlocus.m, control/base/step.m, control/base/tzero.m, |
|
3167 control/hinf/h2norm.m, control/hinf/h2syn.m, |
|
3168 control/hinf/hinfnorm.m, control/hinf/hinfsyn.m, |
|
3169 control/hinf/is_dgkf.m, control/hinf/wgt1o.m, |
|
3170 control/obsolete/dezero.m, control/system/__sysdefioname__.m, |
|
3171 control/system/buildssic.m, control/system/c2d.m, |
|
3172 control/system/cellidx.m, control/system/d2c.m, |
|
3173 control/system/dmr2d.m, control/system/fir2sys.m, |
|
3174 control/system/is_abcd.m, control/system/is_controllable.m, |
|
3175 control/system/is_detectable.m, control/system/is_digital.m, |
|
3176 control/system/is_observable.m, control/system/is_siso.m, |
|
3177 control/system/is_stabilizable.m, control/system/is_stable.m, |
|
3178 control/system/jet707.m, control/system/listidx.m, |
|
3179 control/system/ord2.m, control/system/parallel.m, |
|
3180 control/system/ss.m, control/system/ss2zp.m, |
|
3181 control/system/starp.m, control/system/sys2ss.m, |
|
3182 control/system/sys2tf.m, control/system/sys2zp.m, |
|
3183 control/system/sysadd.m, control/system/sysappend.m, |
|
3184 control/system/syschtsam.m, control/system/sysconnect.m, |
|
3185 control/system/syscont.m, control/system/sysdimensions.m, |
|
3186 control/system/sysdisc.m, control/system/sysdup.m, |
|
3187 control/system/sysgetsignals.m, control/system/sysgettsam.m, |
|
3188 control/system/sysgroup.m, control/system/sysidx.m, |
|
3189 control/system/sysmin.m, control/system/sysmult.m, |
|
3190 control/system/sysout.m, control/system/sysprune.m, |
|
3191 control/system/sysscale.m, control/system/syssetsignals.m, |
|
3192 control/system/syssub.m, control/system/sysupdate.m, |
|
3193 control/system/tf.m, control/system/tfout.m, |
|
3194 control/system/ugain.m, control/system/zp.m, |
|
3195 control/system/zpout.m, control/util/__outlist__.m, |
|
3196 control/util/__zgpbal__.m, control/util/prompt.m, |
|
3197 control/util/sortcom.m, control/util/strappend.m, |
|
3198 deprecated/com2str.m, elfun/acot.m, elfun/acoth.m, elfun/acsc.m, |
|
3199 elfun/acsch.m, elfun/asec.m, elfun/asech.m, elfun/cot.m, |
|
3200 elfun/coth.m, elfun/csc.m, elfun/csch.m, elfun/lcm.m, elfun/sec.m, |
|
3201 elfun/sech.m, finance/fv.m, finance/fvl.m, finance/irr.m, |
|
3202 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, |
|
3203 finance/pvl.m, finance/rate.m, finance/vol.m, |
|
3204 general/__isequal__.m, general/bitcmp.m, general/bitget.m, |
|
3205 general/bitset.m, general/blkdiag.m, general/cart2sph.m, |
|
3206 general/cell2mat.m, general/circshift.m, general/cplxpair.m, |
|
3207 general/cumtrapz.m, general/deal.m, general/diff.m, |
|
3208 general/flipdim.m, general/fliplr.m, general/flipud.m, |
|
3209 general/ind2sub.m, general/int2str.m, |
|
3210 general/is_duplicate_entry.m, general/isdefinite.m, |
|
3211 general/isequal.m, general/isequalwithequalnans.m, |
|
3212 general/isscalar.m, general/issquare.m, general/issymmetric.m, |
|
3213 general/isvector.m, general/logical.m, general/logspace.m, |
|
3214 general/mod.m, general/nargchk.m, general/nextpow2.m, |
|
3215 general/perror.m, general/postpad.m, general/prepad.m, |
|
3216 general/randperm.m, general/rem.m, general/repmat.m, |
|
3217 general/rot90.m, general/rotdim.m, general/shift.m, |
|
3218 general/shiftdim.m, general/sph2cart.m, general/strerror.m, |
|
3219 general/sub2ind.m, general/trapz.m, general/tril.m, |
|
3220 general/triu.m, image/gray.m, image/gray2ind.m, image/hsv2rgb.m, |
|
3221 image/image.m, image/imagesc.m, image/ind2gray.m, image/ind2rgb.m, |
|
3222 image/loadimage.m, image/ntsc2rgb.m, image/ocean.m, |
|
3223 image/rgb2hsv.m, image/rgb2ntsc.m, image/saveimage.m, io/beep.m, |
|
3224 linear-algebra/commutation_matrix.m, linear-algebra/cond.m, |
|
3225 linear-algebra/cross.m, linear-algebra/dmult.m, |
|
3226 linear-algebra/dot.m, linear-algebra/duplication_matrix.m, |
|
3227 linear-algebra/krylov.m, linear-algebra/krylovb.m, |
|
3228 linear-algebra/logm.m, linear-algebra/norm.m, |
|
3229 linear-algebra/null.m, linear-algebra/orth.m, |
|
3230 linear-algebra/qzhess.m, linear-algebra/rank.m, |
|
3231 linear-algebra/trace.m, linear-algebra/vec.m, |
|
3232 linear-algebra/vech.m, miscellaneous/bincoeff.m, |
|
3233 miscellaneous/delete.m, miscellaneous/dir.m, miscellaneous/dos.m, |
|
3234 miscellaneous/fileattrib.m, miscellaneous/fileparts.m, |
|
3235 miscellaneous/flops.m, miscellaneous/fullfile.m, |
|
3236 miscellaneous/ispc.m, miscellaneous/isunix.m, |
|
3237 miscellaneous/menu.m, miscellaneous/not.m, miscellaneous/popen2.m, |
|
3238 miscellaneous/single.m, miscellaneous/unix.m, miscellaneous/ver.m, |
|
3239 miscellaneous/xor.m, optimization/glpk.m, optimization/glpkmex.m, |
|
3240 optimization/qp.m, optimization/sqp.m, plot/__axis_label__.m, |
|
3241 plot/__errplot__.m, plot/__plr1__.m, plot/__plr2__.m, |
|
3242 plot/__plr__.m, plot/__plt1__.m, plot/__plt2__.m, |
|
3243 plot/__plt2mm__.m, plot/__plt2mv__.m, plot/__plt2ss__.m, |
|
3244 plot/__plt2vm__.m, plot/__plt2vv__.m, plot/__pltopt1__.m, |
|
3245 plot/__pltopt__.m, plot/bar.m, plot/bottom_title.m, plot/close.m, |
|
3246 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/fplot.m, |
|
3247 plot/grid.m, plot/hist.m, plot/hold.m, plot/ishold.m, |
|
3248 plot/loglogerr.m, plot/mesh.m, plot/meshdom.m, plot/meshgrid.m, |
|
3249 plot/multiplot.m, plot/orient.m, plot/polar.m, plot/replot.m, |
|
3250 plot/semilogxerr.m, plot/semilogyerr.m, plot/sombrero.m, |
|
3251 plot/stairs.m, plot/subplot.m, plot/subwindow.m, plot/title.m, |
|
3252 plot/top_title.m, polynomial/compan.m, polynomial/conv.m, |
|
3253 polynomial/deconv.m, polynomial/mkpp.m, polynomial/poly.m, |
|
3254 polynomial/polyder.m, polynomial/polyderiv.m, |
|
3255 polynomial/polyfit.m, polynomial/polygcd.m, |
|
3256 polynomial/polyinteg.m, polynomial/polyout.m, |
|
3257 polynomial/polyreduce.m, polynomial/polyval.m, |
|
3258 polynomial/polyvalm.m, polynomial/ppval.m, polynomial/residue.m, |
|
3259 polynomial/roots.m, polynomial/unmkpp.m, quaternion/quaternion.m, |
|
3260 set/complement.m, set/create_set.m, set/intersect.m, |
|
3261 set/ismember.m, set/setdiff.m, set/setxor.m, set/union.m, |
|
3262 set/unique.m, signal/arch_fit.m, signal/arch_rnd.m, |
|
3263 signal/arma_rnd.m, signal/autocor.m, signal/autoreg_matrix.m, |
|
3264 signal/bartlett.m, signal/blackman.m, signal/detrend.m, |
|
3265 signal/diffpara.m, signal/durbinlevinson.m, signal/fftconv.m, |
|
3266 signal/fftfilt.m, signal/fftshift.m, signal/filter2.m, |
|
3267 signal/freqz.m, signal/hamming.m, signal/hanning.m, |
|
3268 signal/hurst.m, signal/ifftshift.m, signal/sinetone.m, |
|
3269 signal/sinewave.m, signal/spencer.m, signal/stft.m, |
|
3270 signal/synthesis.m, signal/unwrap.m, sparse/gplot.m, |
|
3271 sparse/spfun.m, sparse/sprand.m, sparse/sprandn.m, |
|
3272 sparse/sprandsym.m, sparse/spstats.m, specfun/beta.m, |
|
3273 specfun/betai.m, specfun/betaln.m, specfun/erfinv.m, |
|
3274 specfun/gammai.m, specfun/log2.m, specfun/pow2.m, |
|
3275 special-matrix/hankel.m, special-matrix/hilb.m, |
|
3276 special-matrix/invhilb.m, special-matrix/sylvester_matrix.m, |
|
3277 special-matrix/toeplitz.m, special-matrix/vander.m, |
|
3278 statistics/base/center.m, statistics/base/cloglog.m, |
|
3279 statistics/base/cor.m, statistics/base/corrcoef.m, |
|
3280 statistics/base/cov.m, statistics/base/cut.m, |
|
3281 statistics/base/gls.m, statistics/base/iqr.m, |
|
3282 statistics/base/kendall.m, statistics/base/kurtosis.m, |
|
3283 statistics/base/logit.m, statistics/base/mahalanobis.m, |
|
3284 statistics/base/mean.m, statistics/base/meansq.m, |
|
3285 statistics/base/median.m, statistics/base/moment.m, |
|
3286 statistics/base/ols.m, statistics/base/ppplot.m, |
|
3287 statistics/base/probit.m, statistics/base/qqplot.m, |
|
3288 statistics/base/range.m, statistics/base/ranks.m, |
|
3289 statistics/base/run_count.m, statistics/base/skewness.m, |
|
3290 statistics/base/spearman.m, statistics/base/statistics.m, |
|
3291 statistics/base/std.m, statistics/base/studentize.m, |
|
3292 statistics/base/table.m, statistics/base/values.m, |
|
3293 statistics/base/var.m, statistics/distributions/betacdf.m, |
|
3294 statistics/distributions/betainv.m, |
|
3295 statistics/distributions/betapdf.m, |
|
3296 statistics/distributions/betarnd.m, |
|
3297 statistics/distributions/binocdf.m, |
|
3298 statistics/distributions/binoinv.m, |
|
3299 statistics/distributions/binopdf.m, |
|
3300 statistics/distributions/binornd.m, |
|
3301 statistics/distributions/cauchy_cdf.m, |
|
3302 statistics/distributions/cauchy_inv.m, |
|
3303 statistics/distributions/cauchy_pdf.m, |
|
3304 statistics/distributions/cauchy_rnd.m, |
|
3305 statistics/distributions/chi2cdf.m, |
|
3306 statistics/distributions/chi2inv.m, |
|
3307 statistics/distributions/chi2pdf.m, |
|
3308 statistics/distributions/chi2rnd.m, |
|
3309 statistics/distributions/discrete_cdf.m, |
|
3310 statistics/distributions/discrete_inv.m, |
|
3311 statistics/distributions/discrete_pdf.m, |
|
3312 statistics/distributions/discrete_rnd.m, |
|
3313 statistics/distributions/empirical_rnd.m, |
|
3314 statistics/distributions/expcdf.m, |
|
3315 statistics/distributions/expinv.m, |
|
3316 statistics/distributions/exppdf.m, |
|
3317 statistics/distributions/exprnd.m, |
|
3318 statistics/distributions/fcdf.m, statistics/distributions/finv.m, |
|
3319 statistics/distributions/fpdf.m, statistics/distributions/frnd.m, |
|
3320 statistics/distributions/gamcdf.m, |
|
3321 statistics/distributions/gaminv.m, |
|
3322 statistics/distributions/gampdf.m, |
|
3323 statistics/distributions/gamrnd.m, |
|
3324 statistics/distributions/geocdf.m, |
|
3325 statistics/distributions/geoinv.m, |
|
3326 statistics/distributions/geopdf.m, |
|
3327 statistics/distributions/geornd.m, |
|
3328 statistics/distributions/hygecdf.m, |
|
3329 statistics/distributions/hygeinv.m, |
|
3330 statistics/distributions/hygepdf.m, |
|
3331 statistics/distributions/hygernd.m, |
|
3332 statistics/distributions/kolmogorov_smirnov_cdf.m, |
|
3333 statistics/distributions/laplace_cdf.m, |
|
3334 statistics/distributions/laplace_inv.m, |
|
3335 statistics/distributions/laplace_pdf.m, |
|
3336 statistics/distributions/laplace_rnd.m, |
|
3337 statistics/distributions/logistic_cdf.m, |
|
3338 statistics/distributions/logistic_inv.m, |
|
3339 statistics/distributions/logistic_pdf.m, |
|
3340 statistics/distributions/logistic_rnd.m, |
|
3341 statistics/distributions/logncdf.m, |
|
3342 statistics/distributions/logninv.m, |
|
3343 statistics/distributions/lognpdf.m, |
|
3344 statistics/distributions/lognrnd.m, |
|
3345 statistics/distributions/normcdf.m, |
|
3346 statistics/distributions/norminv.m, |
|
3347 statistics/distributions/normpdf.m, |
|
3348 statistics/distributions/normrnd.m, |
|
3349 statistics/distributions/pascal_cdf.m, |
|
3350 statistics/distributions/pascal_inv.m, |
|
3351 statistics/distributions/pascal_pdf.m, |
|
3352 statistics/distributions/pascal_rnd.m, |
|
3353 statistics/distributions/poisscdf.m, |
|
3354 statistics/distributions/poissinv.m, |
|
3355 statistics/distributions/poisspdf.m, |
|
3356 statistics/distributions/poissrnd.m, |
|
3357 statistics/distributions/stdnormal_cdf.m, |
|
3358 statistics/distributions/stdnormal_inv.m, |
|
3359 statistics/distributions/stdnormal_pdf.m, |
|
3360 statistics/distributions/stdnormal_rnd.m, |
|
3361 statistics/distributions/tcdf.m, statistics/distributions/tinv.m, |
|
3362 statistics/distributions/tpdf.m, statistics/distributions/trnd.m, |
|
3363 statistics/distributions/unifcdf.m, |
|
3364 statistics/distributions/unifinv.m, |
|
3365 statistics/distributions/unifpdf.m, |
|
3366 statistics/distributions/unifrnd.m, |
|
3367 statistics/distributions/wblcdf.m, |
|
3368 statistics/distributions/wblinv.m, |
|
3369 statistics/distributions/wblpdf.m, |
|
3370 statistics/distributions/wblrnd.m, |
|
3371 statistics/distributions/wienrnd.m, statistics/tests/anova.m, |
|
3372 statistics/tests/bartlett_test.m, |
|
3373 statistics/tests/chisquare_test_homogeneity.m, |
|
3374 statistics/tests/chisquare_test_independence.m, |
|
3375 statistics/tests/cor_test.m, statistics/tests/f_test_regression.m, |
|
3376 statistics/tests/hotelling_test.m, |
|
3377 statistics/tests/hotelling_test_2.m, |
|
3378 statistics/tests/kolmogorov_smirnov_test.m, |
|
3379 statistics/tests/kolmogorov_smirnov_test_2.m, |
|
3380 statistics/tests/kruskal_wallis_test.m, statistics/tests/manova.m, |
|
3381 statistics/tests/mcnemar_test.m, statistics/tests/prop_test_2.m, |
|
3382 statistics/tests/run_test.m, statistics/tests/sign_test.m, |
|
3383 statistics/tests/t_test.m, statistics/tests/t_test_2.m, |
|
3384 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, |
|
3385 statistics/tests/var_test.m, statistics/tests/welch_test.m, |
|
3386 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, |
|
3387 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, |
|
3388 strings/deblank.m, strings/dec2base.m, strings/dec2bin.m, |
|
3389 strings/dec2hex.m, strings/findstr.m, strings/hex2dec.m, |
|
3390 strings/index.m, strings/isletter.m, strings/lower.m, |
|
3391 strings/rindex.m, strings/split.m, strings/str2mat.m, |
|
3392 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, |
|
3393 strings/strfind.m, strings/strjust.m, strings/strmatch.m, |
|
3394 strings/strncmp.m, strings/strncmpi.m, strings/strrep.m, |
|
3395 strings/strtrunc.m, strings/strvcat.m, strings/substr.m, |
|
3396 strings/upper.m, testfun/assert.m, testfun/demo.m, |
|
3397 testfun/example.m, testfun/fail.m, testfun/speed.m, |
|
3398 testfun/test.m, time/asctime.m, time/calendar.m, time/ctime.m, |
|
3399 time/datenum.m, time/datestr.m, time/datevec.m, time/eomday.m, |
|
3400 time/etime.m, time/is_leap_year.m: |
|
3401 Use print_usage instead of usage. |
|
3402 |
6044
|
3403 2006-10-09 David Bateman <dbateman@free.fr> |
|
3404 |
|
3405 * time/datevec.m: Add additional compatible default parsing strings. |
|
3406 |
6395
|
3407 2006-10-09 Bill Denney <denney@seas.upenn.edu> |
6041
|
3408 |
6042
|
3409 * pkg/pkg.m: Remove trailing "\n" from error messages. |
|
3410 Remove compare_versions subfunction. |
|
3411 |
|
3412 * miscellaneous/compare_versions.m: New function to compare |
|
3413 version numbers as strings with any boolean operators. |
|
3414 |
6041
|
3415 * miscellaneous/untar.m: Check more rigorously to see if the tar |
|
3416 file exists. |
|
3417 |
6036
|
3418 2006-10-04 John W. Eaton <jwe@octave.org> |
|
3419 |
|
3420 * pkg/pkg.m: Use fullfile to concatenate directory and file names. |
|
3421 |
6032
|
3422 2006-10-04 S�ren Hauberg <soren@hauberg.org> |
|
3423 |
6037
|
3424 * pkg/pkg.m: Update docs. Handle prefix option. |
|
3425 Handle dependencies for load option. |
6032
|
3426 |
6029
|
3427 2006-10-04 John W. Eaton <jwe@octave.org> |
|
3428 |
6030
|
3429 * deprecated/clearplot.m, deprecated/clg.m: New functions. |
|
3430 |
|
3431 * plot/clg.m: Delete. |
|
3432 * plot/__init_plot_vars__.m: New function. |
|
3433 * plot/__setup_plot__.m: Use __init_plot_vars__. |
6029
|
3434 |
6025
|
3435 2006-10-03 S�ren Hauberg <soren@hauberg.org> |
|
3436 |
|
3437 * pkg/pkg.m: Avoid calling addpath with no args. |
|
3438 |
6024
|
3439 2006-10-03 Bill Denney <denney@seas.upenn.edu> |
|
3440 |
|
3441 * audio/loadaudio.m, control/base/nyquist.m, |
|
3442 control/system/__zp2ssg2__.m, linear-algebra/cross.m, |
|
3443 linear-algebra/krylov.m, statistics/base/center.m, |
|
3444 statistics/base/median.m, statistics/base/std.m, |
|
3445 statistics/base/var.m, testfun/test.m: Use the new find syntax to |
|
3446 find first or last element matching a condition. |
|
3447 |
6023
|
3448 2006-10-02 Bill Denney <denney@seas.upenn.edu> |
|
3449 |
|
3450 * strings/deblank.m, strings/upper.m, strings/lower.m, |
|
3451 general/__isequal__.m: Minimize looping using cellfun. |
|
3452 |
6020
|
3453 2006-10-02 David Bateman <dbateman@free.fr> |
|
3454 |
|
3455 * pkg/pkg.m (copy_files): always create installation directory. |
|
3456 |
6016
|
3457 2006-10-02 Thomas Weber <thomas.weber.mail@gmail.com> |
|
3458 |
|
3459 * miscellaneous/doc.m: Swap file and directory args to info. |
|
3460 |
|
3461 2006-10-01 Arno Onken <whyly@gmx.net> |
|
3462 |
|
3463 * statistics/distributions/exprnd.m: Fix typo. |
|
3464 |
6014
|
3465 2006-09-30 Benjamin Lindner <lindnerben@gmx.net> |
|
3466 |
|
3467 * polynomial/ppval.m: Use .' instead of '. |
|
3468 * polynomial/spline.m: Likewise. New tests. |
|
3469 |
6004
|
3470 2006-09-26 David Bateman <dbateman@free.fr> |
|
3471 |
|
3472 * __plt3__.m: Using global variables __plot_data__, |
|
3473 __plot_data_offset__ and __plot_command__ to store plots and |
|
3474 correctly handle multiplots, and hold state. Only accept a single |
|
3475 data parameter plus, using, format and with strings. Remove |
|
3476 setting of gnuplot parameters. |
|
3477 * __make_using_clause__.m: New function extracted from __plt__.m. |
|
3478 * __setup_plot__.m: Convert to a function and pass the plotting |
|
3479 command to use. |
|
3480 * __plt__.m: Change call to __setup_plot__ and __make_using_clause__. |
|
3481 * contour.m: Use unwind protect on the parametric state of plot |
|
3482 and __plt3__ instead of calling __gnuplot_splot__ directly. |
|
3483 * mesh.m: ditto. |
|
3484 * plot3.m: Error checking, setting of parametric state and |
|
3485 formation of matrix to plot moved from old __plt3__. |
|
3486 |
5996
|
3487 2006-09-22 Michael Creel <michael.creel@uab.es> |
|
3488 |
5997
|
3489 * deprecated/chisquare_pdf.m: Typo in documentation. |
5996
|
3490 |
|
3491 2006-09-22 S�ren Hauberg <soren@hauberg.org> |
|
3492 |
|
3493 * signal/filter2.m: Correct texinfo doc. |
|
3494 |
|
3495 2006-09-22 David Bateman <dbateman@free.fr> |
|
3496 |
|
3497 * miscellaneous/parseparams.m: Correct texinfo doc. |
|
3498 |
5993
|
3499 2006-09-15 David Bateman <dbateman@free.fr> |
|
3500 |
|
3501 * pkg/pkg.m (prepare_installation): Don't create package |
|
3502 installation directory here. |
|
3503 (copy_files): Create it here instead, to avoid issues with |
|
3504 upgrades. Also install the COPYING file in packinfo. |
|
3505 |
5989
|
3506 2006-09-13 John W. Eaton <jwe@octave.org> |
|
3507 |
|
3508 * general/blkdiag.m: Adjust to new cellfun rules. |
|
3509 |
5987
|
3510 2006-08-30 David Bateman <dbateman@free.fr> |
|
3511 |
|
3512 * pkg/pkg.m (install): Disallow bundles of packages. More verbose |
|
3513 error message for archive name not matching package name. |
|
3514 (installed_packages): Size header of printed results to |
|
3515 arguments. Sort the list of installed packages before printing |
|
3516 them. |
|
3517 |
5986
|
3518 2006-09-11 Paul Kienzle <pkienzle@users.sf.net> |
|
3519 |
|
3520 * signal/freqz.m: Update tests. |
|
3521 |
|
3522 2006-09-11 Ken Kouno <kouno@mk.ecei.tohoku.ac.jp> |
|
3523 |
|
3524 * signal/freqz.m: Corretly postpad arrays. |
|
3525 Don't call fliplr on a column vector. |
|
3526 |
5984
|
3527 2006-09-11 Luis F. Ortiz <lortiz@interactivesupercomputing.com> |
|
3528 |
|
3529 * general/shiftdim.m: Use permute instead of reshape. |
|
3530 |
5981
|
3531 2006-09-05 Alexander Barth <abarth93@users.sourceforge.net> |
|
3532 |
|
3533 * miscellaneous/parseparams.m: New function. |
|
3534 |
5980
|
3535 2006-09-05 Rafael Laboissiere <rafael@debian.org> |
|
3536 |
|
3537 * miscellaneous/doc.m: Swap order of --file and --directory |
|
3538 options for info program invocation. |
|
3539 |
5976
|
3540 2006-08-30 David Bateman <dbateman@free.fr> |
|
3541 |
5987
|
3542 * pkg/pkg.m (create_pkgadddel): Resolve variable name-clash from |
5976
|
3543 previous change. |
|
3544 |
5974
|
3545 2006-08-26 David Bateman <dbateman@free.fr> |
|
3546 |
|
3547 * pkg/pkg.m (install, uninstall, installed_packages): Allow for |
|
3548 absence of trailing "/" in OCTAVE_HOME. |
|
3549 |
5973
|
3550 2006-08-25 Alexander Barth <abarth@marine.usf.edu> |
|
3551 |
|
3552 * time/datenum.m: Allow arg to be character string. |
|
3553 |
5971
|
3554 2006-08-25 David Bateman <dbateman@free.fr> |
|
3555 |
|
3556 * pkg/pkg.m (install): Verify that package name correponds to the |
|
3557 archive name. Treat both PKG_ADD and PKG_DEL and remove them if |
|
3558 they are empty. If package directory is empty, remove it to fail |
|
3559 gracefully for system specific packages. |
|
3560 (extract_pkgadd, create_pkgadd): delete. |
|
3561 (extract_pkg, create_pkg): Generalized versions of deleted functions |
|
3562 (copy_files): Install both bin/ and doc/ directories, adding the |
|
3563 bin/ to the EXEC_PATH when the package is loaded. |
|
3564 |
5962
|
3565 2006-08-24 John W. Eaton <jwe@octave.org> |
|
3566 |
|
3567 * image/saveimage.m: Use logical indexing instead of |
|
3568 indices computed by calling find on the logical index. |
|
3569 |
5961
|
3570 2006-08-24 S�ren Hauberg <soren@hauberg.org> |
|
3571 |
5967
|
3572 * miscellaneous/bincoeff.m, specfun/factorial.m: |
5963
|
3573 Use logical indexing instead of indices computed by calling find |
|
3574 on the logical index. |
|
3575 |
|
3576 * linear-algebra/krylov.m: Delete unused local var nzidx. |
5961
|
3577 |
5959
|
3578 2006-08-23 Quentin Spencer <qspencer@ieee.org> |
|
3579 |
|
3580 * control/system/tf2zp.m: Simplify gain calculation. |
|
3581 |
5958
|
3582 2006-08-23 John W. Eaton <jwe@octave.org> |
|
3583 |
|
3584 * plot/__plt__.m: Insert using clauses for all plots. |
|
3585 |
5957
|
3586 2006-08-23 A S Hodel <hodelas@auburn.edu> |
|
3587 |
|
3588 * control/system/sysscale.m: Call tf and zp with correct number of |
|
3589 args. |
|
3590 |
5955
|
3591 2006-08-22 David Bateman <dbateman@free.fr> |
|
3592 |
|
3593 * pkg/pkg.m (extract_pkgadd, create_pkgadd): New functions to |
|
3594 Search inst/*.m and src/*.m files in the package for |
|
3595 PKG_ADD directives and append user supplied PKG_ADD. |
|
3596 (pkg): Call create_pkgadd after copying files. |
|
3597 |
5947
|
3598 2006-08-21 S�ren Hauberg <soren@hauberg.org> |
|
3599 |
|
3600 * pkg/pkg.m: Handle multiple packages in a single file. |
|
3601 Insert directory separator between OCTAVE_HOME and rest of package |
|
3602 installation directory. |
|
3603 |
|
3604 2006-08-21 John W. Eaton <jwe@octave.org> |
|
3605 |
|
3606 * general/num2str.m: Early return if arg is empty. |
|
3607 From Thomas Treichl <Thomas.Treichl@gmx.net>. |
|
3608 |
5946
|
3609 2006-08-21 David Bateman <dbateman@free.fr> |
|
3610 |
|
3611 * strings/mat2str.m: Compute NC before using. |
|
3612 |
5937
|
3613 2006-08-17 John W. Eaton <jwe@octave.org> |
|
3614 |
|
3615 * audio/wavread.m: Fix calculation of sample count. |
|
3616 |
5934
|
3617 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
|
3618 |
|
3619 * image/imshow.m: New Matlab-compatible version. |
|
3620 |
5930
|
3621 2006-08-15 John W. Eaton <jwe@octave.org> |
|
3622 |
|
3623 * deprecated/is_global.m: Delete. |
|
3624 |
5928
|
3625 2006-08-14 John W. Eaton <jwe@octave.org> |
|
3626 |
|
3627 * pkg/Makefile.in (script_sub_dir): Change from plot to pkg. |
|
3628 |
5926
|
3629 2006-08-14 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
3630 |
|
3631 * sparse/spy.m, control/base/bode.m, control/base/__stepimp__.m, |
|
3632 signal/freqz_plot.m: Adapt to new automatic_replot definition. |
|
3633 |
5928
|
3634 2006-08-14 S�ren Hauberg <soren@hauberg.org> |
|
3635 |
6778
|
3636 * pkg/pkg.m: Don't pass function name to print_usage. |
5928
|
3637 Use addpath and rmpath instead of manipulating LOADPATH. |
|
3638 Handle changes to system function. |
|
3639 (rm_rf): New subfunction. Use it to avoid confirmation dialog for |
|
3640 recursive directory removal. |
5922
|
3641 |
5924
|
3642 * strings/bin2dec.m: Ignore spaces in input for compatibility. |
|
3643 |
6778
|
3644 * colormap.m: Change global variable to persistent. |
5923
|
3645 |
5922
|
3646 * rgb2ind.m: Handle single 3-d array as rgb image. |
|
3647 |
5920
|
3648 2006-08-14 John W. Eaton <jwe@octave.org> |
|
3649 |
|
3650 * strings/str2double.m: Fix missing semicolon. |
|
3651 |
5910
|
3652 2006-07-27 Jim Peterson <jpeterson@annapmicro.com> |
|
3653 |
|
3654 * plot/plot3.m: Accept one complex or one real and one complex |
|
3655 argument and plot real and imaginary components for y and z. |
|
3656 |
5908
|
3657 2006-07-27 John W. Eaton <jwe@octave.org> |
|
3658 |
|
3659 * testfun/test.m: Call fflush after each block of calls to |
|
3660 fprintf, fputs, or fdisp. |
|
3661 |
5904
|
3662 2006-07-26 John W. Eaton <jwe@octave.org> |
|
3663 |
|
3664 * miscellaneous/mex.m: New function. |
|
3665 |
5901
|
3666 2006-07-22 John W. Eaton <jwe@octave.org> |
|
3667 |
|
3668 * special-matrix/hadamard.m: Coerce bool matrix to double. |
|
3669 |
5881
|
3670 2006-07-07 John W. Eaton <jwe@octave.org> |
|
3671 |
|
3672 * miscellaneous/orderfields.m: New file. |
|
3673 |
5873
|
3674 2006-06-30 John W. Eaton <jwe@octave.org> |
|
3675 |
|
3676 * time/datevec.m: Make another attempt to account for precision of |
|
3677 datenum format. |
|
3678 |
5868
|
3679 2006-06-29 John W. Eaton <jwe@octave.org> |
|
3680 |
|
3681 * miscellaneous/dump_prefs.m: Remove obsolete symbols from the list. |
|
3682 Use feval instead of "type -q" to get values now that all the |
|
3683 symbols are functions. |
|
3684 |
5860
|
3685 2006-06-16 John W. Eaton <jwe@octave.org> |
|
3686 |
|
3687 * time/datevec.m: Avoid computing log of non-positive values. |
|
3688 |
5859
|
3689 2006-06-14 John W. Eaton <jwe@octave.org> |
|
3690 |
|
3691 * time/datevec.m: Attempt to account for precision of datenum format. |
|
3692 |
5839
|
3693 2006-06-01 Quentin H. Spencer <qspencer@ieee.org> |
|
3694 |
|
3695 * audio/wavread.m: Fix file range error and add read support for |
|
3696 24-bit WAV files. |
|
3697 |
5837
|
3698 2006-06-01 David Bateman <dbateman@free.fr> |
|
3699 |
|
3700 * general/interpft.m, general/quadl.m, general/polyarea.m, |
|
3701 general/interp1.m, general/gradient.m, general/interp2.m, |
|
3702 general/bicubic.m, miscellaneous/inputname.m, plot/__plt3__.m, |
|
3703 plot/ndgrid.m, plot/plot3.m, polynomial/pchip.m, sparse/pcg.m, |
|
3704 sparse/pcr.m, strings/mat2str.m: New files from Octave Forge. |
|
3705 |
5835
|
3706 2006-05-31 Bill Denney <bill@givebillmoney.com> |
|
3707 |
|
3708 * miscellaneous/fileparts.m, miscellaneous/fullfile.m: Add seealso. |
|
3709 * miscellaneous/texas_lotto.m: Fix warning message. |
|
3710 |
5830
|
3711 2006-05-26 John W. Eaton <jwe@octave.org> |
|
3712 |
|
3713 * miscellaneous/doc.m: Also handle nargin == 0. |
|
3714 |
5829
|
3715 2006-05-23 John W. Eaton <jwe@octave.org> |
|
3716 |
|
3717 * plot/mesh.m: Use __gnupot_raw__ except where __gnuplot_set__ is |
|
3718 really needed. |
|
3719 |
5827
|
3720 2006-05-22 John W. Eaton <jwe@octave.org> |
|
3721 |
6754
|
3722 * general/lookup.m: New file from Octave Forge. |
5827
|
3723 |
|
3724 2006-05-22 David Bateman <dbateman@free.fr> |
|
3725 |
6754
|
3726 * general/nthroot.m, linear-algebra/rref.m, specfun/isprime.m, |
|
3727 specfun/primes.m, specfun/factor.m, specfun/nchoosek.m, |
|
3728 specfun/legendre.m, specfun/perms.m, special-matrix/rosser.m, |
|
3729 special-matrix/wilkinson.m, special-matrix/pascal.m, |
|
3730 special-matrix/magic.m, special-matrix/hadamard.m, |
|
3731 strings/strtok.m: New files from Octave Forge. |
5827
|
3732 |
5824
|
3733 2006-05-19 David Bateman <dbateman@free.fr> |
|
3734 |
|
3735 * polynomial/unmkpp.m, polynomial/mkpp.m, polynomial/spline.m, |
5825
|
3736 polynomial/ppval.m, set/setxor.m: New files from Octave Forge. |
5824
|
3737 |
5821
|
3738 2006-05-17 John W. Eaton <jwe@octave.org> |
|
3739 |
|
3740 * set/intersection.m: Delete |
|
3741 * deprecated/intersection.m: New file. |
|
3742 |
5820
|
3743 2006-05-17 David Bateman <dbateman@free.fr> |
|
3744 |
|
3745 * general/cplxpair.m, general/trapz.m, general/cumtrapz.m, |
|
3746 general/isdir.m, miscellaneous/dos.m, miscellaneous/getfield.m, |
|
3747 miscellaneous/setfield.m, plot/fplot.m, set/intersect.m, |
|
3748 signal/ifftshift.m, signal/filter2.m, specfun/betaln.m, |
|
3749 specfun/factorial.m, strings/strvcat.m: New files from Octave |
|
3750 Forge. |
|
3751 |
5809
|
3752 2006-05-11 John W. Eaton <jwe@octave.org> |
|
3753 |
5815
|
3754 * path/path.m: Delete (now a built-in function). |
|
3755 |
5811
|
3756 * pkg/Makefile.in: New file. |
|
3757 * configure.in (AC_CONFIG_FILES): Add pkg/Makefile to the list. |
5812
|
3758 * Makefile.in (SUBDIRS): Add pkg to the list. |
5809
|
3759 |
5808
|
3760 2006-05-10 John W. Eaton <jwe@octave.org> |
|
3761 |
|
3762 * tar.m, untar.m, unzip.m: Adapt to Octave coding style. |
|
3763 * tar.m, untar.m: Only tar; don't compress or uncompress. |
|
3764 |
5807
|
3765 2006-05-10 Soren Hauberg <hauberg@gmail.com> |
|
3766 |
|
3767 * tar.m, untar.m, unzip.m: New files. |
|
3768 |
5801
|
3769 2006-05-10 John W. Eaton <jwe@octave.org> |
|
3770 |
5804
|
3771 * path/addpath.m, path/rmpath.m: Improve compatibility. |
|
3772 * path/setpath.m: Delete. |
|
3773 |
5801
|
3774 * pkg/pkg.m: New file. |
|
3775 |
5798
|
3776 2006-05-09 Keith Goodman <kwgoodman@gmail.com> |
|
3777 |
|
3778 * plot/plot.m: Doc string fix. |
|
3779 |
|
3780 2006-05-09 Paul Kienzle <pkienzle@users.sf.net> |
|
3781 |
|
3782 * testfun/speeed.m: Use new interface to unique and assert. |
|
3783 Improve documentation. Approximate time complexity from log-log |
|
3784 plot. Return time complexity and raw times if requested. The |
|
3785 mean ratio is no longer returned. Provide complete control over |
|
3786 which n are computed. |
|
3787 |
|
3788 2006-05-09 John W. Eaton <jwe@octave.org> |
|
3789 |
|
3790 * path/path.m: Move here from miscellaneous. |
|
3791 Adapt to new LOADPATH definition. |
|
3792 |
5789
|
3793 2006-05-03 David Bateman <dbateman@free.fr> |
|
3794 |
|
3795 * path/rmpath.m, path/addpath.m, miscellaneous/path.m: Replace all |
|
3796 explicit uses of a path seperation character with pathsep(). |
|
3797 |
5786
|
3798 2006-05-03 Bob Weigel <rweigel@gmu.edu> |
|
3799 |
6778
|
3800 * set/setdiff.m: New arg, byrows. New tests. |
5786
|
3801 |
5781
|
3802 2006-04-29 John W. Eaton <jwe@octave.org> |
|
3803 |
|
3804 * startup/main-rcfile: Disable some warnings. |
|
3805 |
5762
|
3806 2006-04-14 Bill Denney <denney@seas.upenn.edu> |
|
3807 |
|
3808 * strings/strcmpi.m: Return false instead of error if args are not |
|
3809 char or cellstr. |
|
3810 |
5750
|
3811 2006-04-10 John W. Eaton <jwe@octave.org> |
|
3812 |
|
3813 * miscellaneous/dir.m: Ensure that returned structure array is |
|
3814 Nx1, not 1xN. |
|
3815 |
5746
|
3816 2006-04-06 Olli Saarela <olli.saarela@kcl.fi> |
|
3817 |
|
3818 * plot/hist.m: Ignore NaN in inputs. |
|
3819 |
5745
|
3820 2006-04-06 Keith Goodman <kwgoodman@gmail.com> |
|
3821 |
|
3822 * miscellaneous/mkoctfile.m: Doc string fix. |
|
3823 |
5741
|
3824 2006-04-05 John W. Eaton <jwe@octave.org> |
|
3825 |
|
3826 * plot/__plt2__.m: Return data = [] and fmtstr = "" if x1 and x2 |
|
3827 are both empty. |
|
3828 * plot/__plt__.m: Ignore empty data and format strings returned |
|
3829 from __plt1__ or __plt2__. |
|
3830 |
5737
|
3831 2006-04-04 Bob Weigel <rweigel@gmu.edu> |
|
3832 |
6778
|
3833 * set/unique.m: Properly handle single column input when |
5737
|
3834 "rows" is specified. |
|
3835 |
5732
|
3836 2006-04-04 John W. Eaton <jwe@octave.org> |
|
3837 |
5736
|
3838 * path/setpath.m: New file. |
|
3839 * path/savepath.m: Use setpath to set path instead of assigning |
|
3840 directly to LOADPATH. |
|
3841 |
5732
|
3842 * path/Makefile.in, path/addpath.m, path/rmpath.m, path/savepath.m: |
|
3843 New files, adapted from Octave Forge by Keith Goodman |
|
3844 <kwgoodman@gmail.com>. |
|
3845 * path: New directory. |
|
3846 * Makefile.in (SUBDIRS): Add it to the list. |
|
3847 * configure.in (AC_CONFIG_FILES): Include path/Makefile here. |
|
3848 |
5731
|
3849 2006-04-02 David Bateman <dbateman@free.fr> |
|
3850 |
|
3851 * general/tril.m, general.triu.m: |
|
3852 Use resize (resize (x, 0), nr, nc) rather than zeros (nr, nc) |
|
3853 to allow user types to work correctly. |
|
3854 * special-matrix/hankel.m, special-matrix/toeplitz.m: Ditto. |
|
3855 |
5727
|
3856 2006-04-03 David Bateman <dbateman@free.fr> |
|
3857 |
|
3858 * plot/grid.m: Cache the state of the grid to allow toggling. |
|
3859 Accept keyword "minor" for minor grid. |
|
3860 |
5721
|
3861 2006-03-28 John W. Eaton <jwe@octave.org> |
|
3862 |
|
3863 * general/isscalar.m: Only require that all dimensions are 1 for |
|
3864 compatiblity. |
|
3865 |
|
3866 2006-03-28 Bill Denney <bill@givebillmoney.com> |
|
3867 |
|
3868 * general/isvector.m: Allow non-numeric objects to be vectors for |
|
3869 compatibility. |
|
3870 |
5720
|
3871 2006-03-28 Keith Goodman <kwgoodman@gmail.com> |
|
3872 |
|
3873 * plot/__errplot__.m: Doc string fix. |
|
3874 |
|
3875 * miscellaneous/doc.m: Mark as command. |
|
3876 |
|
3877 * general/isequal.m, general/__isequal__.m, general/cell2mat.m, |
|
3878 general/isequalwithequalnans.m, general/blkdiag.m, |
|
3879 strings/strfind.m, miscellaneous/doc.m: Update FSF address. |
|
3880 |
5717
|
3881 2006-03-27 Don Bindner <dbindner@truman.edu> |
|
3882 |
|
3883 * plot/meshgrid.m: If nargout == 3 and vectors are supplied, |
|
3884 return 3d matrices. |
|
3885 |
|
3886 2006-03-27 Keith Goodman <kwgoodman@gmail.com> |
|
3887 |
|
3888 * time/toc.m: Don't print "Elapsed time..." if tic has not been set. |
|
3889 |
5708
|
3890 2006-03-22 John W. Eaton <jwe@octave.org> |
|
3891 |
|
3892 * plot/print.m: Don't replot after popping terminal setting. |
|
3893 |
5696
|
3894 2006-03-20 John W. Eaton <jwe@octave.org> |
|
3895 |
|
3896 * miscellaneous/mkoctfile.m: Use version-specific name of |
|
3897 mkoctfile. Use fullfile to construct file name. |
|
3898 |
5695
|
3899 2006-03-20 Keith Goodman <kwgoodman@gmail.com> |
|
3900 |
|
3901 * miscellaneous/mkoctfile.m: Make it possible to call mkoctfile |
|
3902 shell script from Octave prompt. |
|
3903 |
5690
|
3904 2006-03-17 John W. Eaton <jwe@octave.org> |
|
3905 |
5693
|
3906 * deprecated/weibcdf.m, deprecated/weibinv.m, |
|
3907 deprecated/weibpdf.m, deprecated/weibrnd.m: New functions. |
|
3908 |
|
3909 * deprecated/weibull_cdf.m, deprecated/weibull_inv.m, |
|
3910 deprecated/weibull_pdf.m, deprecated/weibull_rnd.m: |
|
3911 Call new wbl functions to do the real work. |
|
3912 Swap args and provide default values as necessary to preserve |
|
3913 compatibility with old version of Octave. |
|
3914 |
|
3915 * statistics/distributions/wblcdf.m: Rename from weibcdf.m. |
|
3916 statistics/distributions/wblinv.m: Rename from weibinv.m. |
|
3917 statistics/distributions/wblpdf.m: Rename from weibpdf.m. |
|
3918 statistics/distributions/wblrnd.m: Rename from weibrnd.m. |
|
3919 Swap scale and shape args for compatibility. |
|
3920 |
5692
|
3921 * deprecated/lognormal_cdf.m, deprecated/lognormal_inv.m, |
|
3922 deprecated/lognormal_pdf.m, deprecated/lognormal_rnd.m: |
|
3923 Preserve compatibility with old versions of Octave given new |
|
3924 definitions of logncdf, logninv, lognpdf, and lognrnd. |
5693
|
3925 |
5692
|
3926 * statistics/distributions/logncdf.m, |
|
3927 statistics/distributions/logninv.m, |
|
3928 statistics/distributions/lognpdf.m, |
|
3929 statistics/distributions/lognrnd.m: Compatibility fixes. |
|
3930 From Ben Barrowes <barrowes@alum.mit.edu> |
|
3931 |
5691
|
3932 * deprecated/hypergeometric_rnd.m: Update interface to match |
|
3933 current 2.1.x version. |
|
3934 |
|
3935 * deprecated/t_rnd.m: Call trnd, not t_rnd. |
|
3936 |
5690
|
3937 * miscellaneous/dir.m: Use readdir instead of glob. |
|
3938 Special case for "." to avoid globbing. Use list_in_columns. |
|
3939 Eliminate unused variables len and finfo. |
|
3940 |
5689
|
3941 2006-03-16 Bill Denney <bill@givebillmoney.com> |
|
3942 |
|
3943 * miscellaneous/dir.m: Improve compatibility. |
|
3944 |
5687
|
3945 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
3946 |
|
3947 * time/calendar.m, time/datestr.m, time/datevec.m, time/eomday.m, |
|
3948 time/now.m, time/weekday.m: New functions from Octave Forge. |
|
3949 |
5686
|
3950 2006-03-16 John W. Eaton <jwe@octave.org> |
|
3951 |
|
3952 * control/base/bode_bounds.m: Check for iip and iiz empty instead |
|
3953 of looking at sum of max dimensions. |
|
3954 |
5681
|
3955 2006-03-16 David Bateman <dbateman@free.fr> |
|
3956 |
|
3957 * testfun/test.m: Clear last warning before warning test to avoid |
|
3958 issues with previously set warnings. |
|
3959 * build_sparse_test.sh: Tests for multiple RHS for rectanguar |
|
3960 sparse matrices. Force matrix type from spqr solution to be |
|
3961 singular to force QR solvers to be used for assert. |
|
3962 |
5678
|
3963 2006-03-16 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
3964 |
|
3965 * strings/strfind.m: New file. |
|
3966 |
5677
|
3967 2006-03-16 John W. Eaton <jwe@octave.org> |
|
3968 |
|
3969 * general/rows.m, general/columns.m: Delete. |
|
3970 |
5674
|
3971 2006-03-15 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
3972 |
|
3973 * strings/strcmpi.m: Simplify. |
|
3974 * strings/strncmpi.m: Import from octave-forge, simplify. |
5678
|
3975 * strings/strtrunc.m: New file. |
5674
|
3976 |
5676
|
3977 * strings/lower.m, strings/upper.m: Handle cellstr arguments. |
|
3978 |
5672
|
3979 2006-03-15 John W. Eaton <jwe@octave.org> |
|
3980 |
|
3981 * miscellaneous/doc.m: New file. |
|
3982 From Soren Hauberg <soren@hauberg.org>. |
|
3983 |
5671
|
3984 2006-03-15 Keith Goodman <kwgoodman@gmail.com> |
|
3985 |
|
3986 * miscellaneous/mkoctfile.m: New file. |
|
3987 |
5670
|
3988 2006-03-15 John W. Eaton <jwe@octave.org> |
|
3989 |
|
3990 * polynomial/residue.m: Use & instead of && to generate arg for find. |
|
3991 |
5666
|
3992 2006-03-14 Keith Goodman <kwgoodman@gmail.com> |
|
3993 |
|
3994 * strings/bin2dec.m: Doc fix. |
|
3995 |
5661
|
3996 2006-03-10 Paul Kienzle <pkienzle@users.sf.net> |
|
3997 |
|
3998 * time/etime.m: Use datenum to support times spanning year boundaries. |
|
3999 * time/datenum.m: New function to compute day number from time. |
|
4000 |
5659
|
4001 2006-03-09 John W. Eaton <jwe@octave.org> |
|
4002 |
|
4003 * miscellaneous/unix.m, plot/print.m: |
|
4004 Swap order of outputs from system. |
|
4005 |
5642
|
4006 2006-03-06 Keith Goodman <kwgoodman@gmail.com> |
|
4007 |
|
4008 * audio/lin2mu.m, audio/loadaudio.m, audio/mu2lin.m, |
|
4009 audio/playaudio.m, audio/record.m, audio/saveaudio.m, |
|
4010 audio/wavread.m, audio/wavwrite.m, control/base/DEMOcontrol.m, |
|
4011 control/base/__stepimp__.m, control/base/are.m, |
|
4012 control/base/controldemo.m, control/base/damp.m, |
|
4013 control/base/dare.m, control/base/impulse.m, control/base/lqg.m, |
|
4014 control/base/step.m, control/system/abcddim.m, |
|
4015 control/system/is_abcd.m, control/system/is_controllable.m, |
|
4016 control/system/is_detectable.m, control/system/is_observable.m, |
|
4017 control/system/is_stabilizable.m, control/system/is_stable.m, |
|
4018 control/system/jet707.m, control/system/sys2fir.m, |
|
4019 control/system/sysdimensions.m, control/system/sysupdate.m, |
|
4020 control/system/tfout.m, control/system/ugain.m, |
|
4021 control/system/zpout.m, elfun/lcm.m, finance/irr.m, |
|
4022 finance/nper.m, finance/npv.m, finance/pmt.m, finance/pv.m, |
|
4023 finance/rate.m, general/__isequal__.m, general/bitcmp.m, |
|
4024 general/bitget.m, general/bitset.m, general/blkdiag.m, |
|
4025 general/cart2pol.m, general/cart2sph.m, general/cell2mat.m, |
|
4026 general/circshift.m, general/columns.m, general/flipdim.m, |
|
4027 general/fliplr.m, general/flipud.m, general/ind2sub.m, |
|
4028 general/int2str.m, general/isdefinite.m, general/isequal.m, |
|
4029 general/isequalwithequalnans.m, general/isscalar.m, |
|
4030 general/issquare.m, general/issymmetric.m, general/isvector.m, |
|
4031 general/logspace.m, general/mod.m, general/nextpow2.m, |
|
4032 general/num2str.m, general/perror.m, general/pol2cart.m, |
|
4033 general/rem.m, general/rot90.m, general/rotdim.m, general/rows.m, |
|
4034 general/shiftdim.m, general/sph2cart.m, general/sub2ind.m, |
|
4035 general/tril.m, image/hsv2rgb.m, image/image.m, image/imagesc.m, |
|
4036 image/imshow.m, image/ind2gray.m, image/ind2rgb.m, |
|
4037 image/loadimage.m, image/rgb2hsv.m, image/rgb2ind.m, |
|
4038 image/saveimage.m, io/beep.m, linear-algebra/cond.m, |
|
4039 linear-algebra/norm.m, miscellaneous/comma.m, miscellaneous/dir.m, |
|
4040 miscellaneous/license.m, miscellaneous/menu.m, |
|
4041 miscellaneous/semicolon.m, miscellaneous/texas_lotto.m, |
|
4042 miscellaneous/unix.m, miscellaneous/ver.m, optimization/sqp.m, |
|
4043 plot/__errcomm__.m, plot/__errplot__.m, plot/__pltopt1__.m, |
|
4044 plot/__pltopt__.m, plot/bar.m, plot/contour.m, plot/errorbar.m, |
|
4045 plot/grid.m, plot/hist.m, plot/loglog.m, plot/loglogerr.m, |
|
4046 plot/mesh.m, plot/meshgrid.m, plot/plot.m, plot/polar.m, |
|
4047 plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, |
|
4048 plot/semilogyerr.m, plot/shg.m, plot/stairs.m, plot/title.m, |
|
4049 plot/xlabel.m, polynomial/compan.m, polynomial/conv.m, |
|
4050 polynomial/deconv.m, polynomial/polyderiv.m, polynomial/polygcd.m, |
|
4051 polynomial/polyinteg.m, polynomial/polyout.m, |
|
4052 polynomial/polyreduce.m, polynomial/polyval.m, |
|
4053 polynomial/polyvalm.m, polynomial/residue.m, set/complement.m, |
|
4054 set/create_set.m, set/intersection.m, set/ismember.m, |
|
4055 set/setdiff.m, set/union.m, set/unique.m, sparse/etreeplot.m, |
|
4056 sparse/gplot.m, sparse/spalloc.m, sparse/sphcat.m, |
|
4057 sparse/sprand.m, sparse/sprandn.m, sparse/sprandsym.m, |
|
4058 sparse/spvcat.m, sparse/treeplot.m, specfun/erfinv.m, |
|
4059 specfun/log2.m, specfun/pow2.m, special-matrix/hankel.m, |
|
4060 special-matrix/hilb.m, special-matrix/invhilb.m, |
|
4061 special-matrix/sylvester_matrix.m, special-matrix/toeplitz.m, |
|
4062 special-matrix/vander.m, statistics/base/median.m, |
|
4063 statistics/base/std.m, statistics/distributions/gamcdf.m, |
|
4064 statistics/distributions/gaminv.m, |
|
4065 statistics/distributions/gampdf.m, |
|
4066 statistics/distributions/gamrnd.m, strings/base2dec.m, |
|
4067 strings/bin2dec.m, strings/dec2base.m, strings/dec2bin.m, |
|
4068 strings/dec2hex.m, strings/hex2dec.m, strings/isletter.m, |
|
4069 strings/lower.m, strings/upper.m, testfun/assert.m, |
|
4070 testfun/demo.m, testfun/example.m, testfun/test.m, time/etime.m: |
|
4071 Move @seealso inside @defXXX macro. Remove "and" from @seealso. |
|
4072 |
5633
|
4073 2006-02-27 John W. Eaton <jwe@octave.org> |
|
4074 |
|
4075 * time/tic.m: Move here from miscellaneous/tic.m. |
|
4076 * time/toc.m: Move here from miscellaneous/toc.m. |
|
4077 |
|
4078 2006-02-26 Keith Goodman <kwgoodman@gmail.com> |
|
4079 |
|
4080 * miscellaneous/toc.m: Display "Elapsed time is X seconds" if user |
|
4081 does not assign output of toc to a variable. |
|
4082 |
5627
|
4083 2006-02-16 Bill Denney <denney@seas.upenn.edu> |
|
4084 |
|
4085 * axis.m: Catch limits that are the same and return an error. |
|
4086 |
5625
|
4087 2006-02-15 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
4088 |
|
4089 * plot/print.m: Accept emf device option to support Enhanced |
|
4090 Metafile format. |
|
4091 |
|
4092 2006-02-15 A S Hodel <hodelas@auburn.edu> |
|
4093 |
|
4094 * control/base/lqe.m: Doc fix. |
|
4095 |
5623
|
4096 2006-02-15 Keith Goodman <kwgoodman@gmail.com> |
|
4097 |
|
4098 * statistics/distributions/gamcdf.m: Doc fix. |
|
4099 * statistics/distributions/gaminv.m: Doc fix. |
|
4100 * statistics/distributions/gampdf.m: Doc fix. |
|
4101 * statistics/distributions/gamrnd.m: Doc fix. |
|
4102 |
5610
|
4103 2006-02-09 David Bateman <dbateman@free.fr> |
|
4104 |
6778
|
4105 * general/triu.m: Minimum change to allow sparse matrix. More needed |
|
4106 for arbitrary user type. |
|
4107 * general/tril.m: ditto. |
|
4108 * sparse/sprand.m: Doc fix. |
|
4109 * sparse/sprandn.m: Ditto. |
|
4110 * sparse/sprandsym.m: New function. |
|
4111 * audio/setaudio.m, general/cart2pol.m, general/cart2sph.m, |
|
4112 general/pol2cart.m, general/sph2cart.m, signal/freqz_plot.m: |
|
4113 Update for syntax error for latest texinfo.tex file. |
5610
|
4114 |
5605
|
4115 2006-02-02 John W. Eaton <jwe@octave.org> |
|
4116 |
|
4117 * plot/grid.m: Append ";\n" to "set grid" command. |
|
4118 |
|
4119 2006-02-02 A S Hodel <hodelas@auburn.edu> |
|
4120 |
|
4121 * control/base/rlocus.m: Don't atttempt to plot rlzer if it is empty. |
|
4122 |
5597
|
4123 2006-01-13 John W. Eaton <jwe@octave.org> |
|
4124 |
|
4125 * audio/Makefile.in, control/base/Makefile.in, |
|
4126 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
4127 control/system/Makefile.in, control/util/Makefile.in, |
|
4128 deprecated/Makefile.in, elfun/Makefile.in, finance/Makefile.in, |
|
4129 general/Makefile.in, image/Makefile.in, io/Makefile.in, |
|
4130 linear-algebra/Makefile.in, miscellaneous/Makefile.in, |
|
4131 optimization/Makefile.in, plot/Makefile.in, |
|
4132 polynomial/Makefile.in, quaternion/Makefile.in, set/Makefile.in, |
|
4133 signal/Makefile.in, sparse/Makefile.in, specfun/Makefile.in, |
|
4134 special-matrix/Makefile.in, startup/Makefile.in, |
|
4135 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
4136 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
4137 strings/Makefile.in, time/Makefile.in, testfun/Makefile.in: |
|
4138 (all): Depend on PKG_ADD. |
|
4139 (PKG_ADD): New target. |
|
4140 |
|
4141 2006-01-13 Bill Denney <bill@givebillmoney.com> |
|
4142 |
|
4143 * miscellaneous/dir.m: Add @seealso{} to docstring. |
|
4144 |
5596
|
4145 2006-01-13 John W. Eaton <jwe@octave.org> |
|
4146 |
|
4147 * time/etime.m: Move here from miscellaneous/etime.m. |
|
4148 * time/is_leap_year.m: Move here from miscellaneous/is_leap_year.m. |
|
4149 |
5595
|
4150 2006-01-13 Bill Denney <bill@givebillmoney.com> |
|
4151 |
6778
|
4152 * miscellaneous/dir.m: Use filesep instead of "/" where needed. |
5595
|
4153 * miscellaneous/fullfile.m: Likewise. |
|
4154 |
5592
|
4155 2006-01-12 David Bateman <dbateman@free.fr> |
|
4156 |
|
4157 * general/blkdiag.m: Compatible behavior for empty matrices |
|
4158 * statistics/base/unidrnd.m: Documentation buglet. |
|
4159 |
5583
|
4160 2005-12-14 David Bateman <dbateman@free.fr> |
|
4161 |
5589
|
4162 * testfun/assert.m, testfun/fail.m, testfun/test.m, testfun/demo.m, |
|
4163 testfun/speed.m, testfun/example.m, Makefile.in: New files. |
|
4164 |
|
4165 * Makefile.in (SUBDIRS): Include testfun. |
|
4166 * configure.in (AC_CONFIG_FILES): Include testfun/Makefile. |
|
4167 |
5583
|
4168 * miscellaneous/dir.m: Transpose sub-assignment for cleanness. |
|
4169 |
|
4170 * general/__isequal__.m: Remove reference to getfield. |
|
4171 |
|
4172 * plot/hist.m: Update test code for row/column discrepencies. |
|
4173 * signal/freqz.m: Alter output row/column for matlab compatibility. |
|
4174 Update the test code for this. |
|
4175 * sparse/spstats.m: Fix small bug in the dimension of output. |
|
4176 |
5579
|
4177 2005-12-13 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
4178 |
|
4179 * cell/cell2mat.m: New file, from octave-forge. |
|
4180 |
5576
|
4181 2005-12-13 Ivana Varekova <varekova@redhat.com> |
|
4182 |
|
4183 * sparse/treeplot.m, sparse/etreeplot.m, sparse/gplot.m: |
|
4184 New graph theory functions. |
|
4185 |
5574
|
4186 2005-12-13 John W. Eaton <jwe@octave.org> |
|
4187 |
|
4188 * general/blkdiag.m: Use "isempty" instead of @isempty. |
|
4189 |
|
4190 * control/system/ss.m: Doc fix. |
|
4191 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
4192 |
5572
|
4193 2005-12-12 Michael Zeising <michael@michaels-website.de> |
|
4194 |
|
4195 * audio/wavread.m, audio/wavwrite.m: |
|
4196 Correct scaling for 8-bit linear pcm samples. |
|
4197 Improve scaling for all other linear pcm resolutions. |
|
4198 |
5568
|
4199 2005-12-07 John W. Eaton <jwe@octave.org> |
|
4200 |
|
4201 * statistics/base/moment.m: Don't save and restore warn_str_to_num. |
|
4202 |
|
4203 * sparse/spdiags.m: Don't save and restore warn_fortran_indexing. |
|
4204 * strings/strjust.m: Likewise. |
|
4205 |
|
4206 * general/shift.m: Don't save and restore warn_empty_list_elements. |
|
4207 * signal/arma_rnd.m: Likewise. |
|
4208 * strings/strcat.m: Likewise. |
|
4209 * control/base/__freqresp__.m: Likewise. |
|
4210 * control/base/place.m: Likewise. |
|
4211 * control/base/pzmap.m: Likewise. |
|
4212 * control/base/pzmap.m: Likewise. |
|
4213 * control/system/sysappend.m: Likewise. |
|
4214 * control/system/syscont.m: Likewise. |
|
4215 * control/system/sysdisc.m: Likewise. |
|
4216 * control/system/sysgroup.m: Likewise. |
|
4217 * control/system/tfout.m: Likewise. |
|
4218 * control/system/zpout.m: Likewise. |
|
4219 * control/util/__outlist__.m: Likewise. |
|
4220 |
5567
|
4221 2005-12-06 John W. Eaton <jwe@octave.org> |
|
4222 |
|
4223 * audio/wavread.m, audio/wavwrite.m: Adapt to Octave coding style. |
|
4224 Avoid for loop in interleave/deinterleave steps. |
|
4225 |
5565
|
4226 2005-12-06 Michael Zeising <michael@michaels-website.de> |
|
4227 |
|
4228 * audio/wavread.m, audio/wavwrite.m: New files. |
|
4229 |
5563
|
4230 2005-12-06 John W. Eaton <jwe@octave.org> |
|
4231 |
|
4232 * miscellaneous/dir.m: Return Nx1 instead of 1xN struct array. |
|
4233 |
5560
|
4234 2005-12-05 John W. Eaton <jwe@octave.org> |
|
4235 |
5561
|
4236 * plot/axis.m: Add "## PKG_ADD: mark_as_command axis" line. |
5560
|
4237 |
5558
|
4238 2005-12-02 John W. Eaton <jwe@octave.org> |
|
4239 |
|
4240 * miscellaneous/fileattrib.m: New function. |
|
4241 |
5556
|
4242 2005-12-01 John W. Eaton <jwe@octave.org> |
|
4243 |
|
4244 * general/columns.m: Use size (x, 2) instead of [nr, nc] = size (x). |
|
4245 * general/rows.m: Use size (x, 1) instead of [nr, nc] = size (x). |
|
4246 From William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com>. |
|
4247 |
5555
|
4248 2005-11-30 John W. Eaton <jwe@octave.org> |
|
4249 |
|
4250 * linear-algebra/krylov.m: Format doc string. |
|
4251 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
4252 |
5551
|
4253 2005-11-23 William Poetra Yoga Hadisoeseno <williampoetra@yahoo.com> |
|
4254 |
|
4255 * general/blkdiag.m: Import from octave-forge. |
|
4256 Ignore empty matrices in the input. Add tests. |
5549
|
4257 |
|
4258 * general/isequal.m, general/isequalwithequalnans.m: |
|
4259 New wrapper scripts for general/__isequal__.m. |
|
4260 * general/__isequal__.m: Rename from general/isequal.m. |
|
4261 New arg, nans_compare_equal. |
|
4262 |
5548
|
4263 2005-11-29 John W. Eaton <jwe@octave.org> |
|
4264 |
|
4265 * miscellaneous/ver.m: Use new uname built-in function instead of |
|
4266 calling system. Only append octave_forge_string if |
|
4267 OCTAVE_FORGE_VERSION exists. Use puts instead of disp. |
|
4268 Call license instead of hard-coding license info here. |
|
4269 |
|
4270 * miscellaneous/license.m: Use persistent instead of global for |
5654
|
4271 __octave_licenses__. Use puts instead of disp. |
5548
|
4272 Use getuid and getpwuid instead of calling unix ("id -un"). |
|
4273 If nargout = 1, return license info instead of printing usage message. |
|
4274 |
5546
|
4275 2005-11-29 William Poetra Yoga Hadisoeseno <williampoetra@gmail.com> |
|
4276 |
|
4277 * miscellaneous/ver.m: New file. |
|
4278 * miscellaneous/license.m: New file. |
|
4279 |
5545
|
4280 2005-11-22 John W. Eaton <jwe@octave.org> |
|
4281 |
|
4282 * plot/axis.m: Use %.16g instead of just %g to format ranges for |
|
4283 gnuplot set command. |
|
4284 |
5539
|
4285 2005-11-15 John W. Eaton <jwe@octave.org> |
|
4286 |
|
4287 * general/shiftdim.m: Doc fix. |
|
4288 |
5532
|
4289 2005-11-07 Keith Goodman <kwgoodman@gmail.com> |
|
4290 |
|
4291 * set/unique.m: Doc string fix. |
|
4292 |
5527
|
4293 2005-11-01 John W. Eaton <jwe@octave.org> |
|
4294 |
|
4295 * Makefile.in (distclean, maintainer-clean): |
|
4296 Also remove autom4te.cache directory. |
|
4297 From Quentin Spencer <qspencer@ieee.org>. |
|
4298 |
5518
|
4299 2005-10-28 John W. Eaton <jwe@octave.org> |
|
4300 |
|
4301 * general/shiftdim.m: Compatibility fix for row vectors. |
|
4302 Correct check for non-scalar non-integer shift. For positive |
|
4303 N, shift is remainder of N and number of dims. Always return NS. |
|
4304 Simplify. |
|
4305 |
5500
|
4306 2005-10-18 Keith Goodman <kwgoodman@gmail.com> |
|
4307 |
|
4308 * general/randperm.m: Improve compatibility by allowing input |
|
4309 value of zero. |
|
4310 |
5493
|
4311 2005-10-13 John W. Eaton <jwe@octave.org> |
|
4312 |
|
4313 * plot/__plt__.m, plot/__errplot__.m, plot/replot.m: |
|
4314 If in multiplot mode, clear plot before issuing new plot command. |
|
4315 |
|
4316 * plot/__setup_plot__.m: New function. |
|
4317 * plot/__plt__.m, plot__errplot__.m: Use it. |
|
4318 Handle multiplot data and offsets here. |
|
4319 |
|
4320 * plot/__plot_globals__.m: Also keep track of multiplot options. |
|
4321 Move initialization to __setup_plot__.m. |
|
4322 |
|
4323 * plot/subplot.m: Multiplot globals now in __plot_globals__.m. |
|
4324 Don't reset gnuplot_command_replot. |
|
4325 |
|
4326 * plot/replot.m: Handle multiplot data and offsets here. |
|
4327 * plot__axis_label__.m, plot/axis.m, plot/grid.m, |
|
4328 plot/plot_border.m, plot/plot.m, plot/plot_title.m, |
|
4329 plot/top_title.m: Call replot, not __gnuplot_replot__. |
|
4330 |
5489
|
4331 2005-10-12 John W. Eaton <jwe@octave.org> |
|
4332 |
|
4333 * plot/figure.m: Handle __current_figure__, not gnuplot details. |
|
4334 |
5482
|
4335 2005-10-04 Rafael Laboissiere <rafael@debian.org> |
|
4336 |
|
4337 * binoinv.m, chi2pdf.m, frnd.m, poissinv.m, tinv.m, trnd.m, |
|
4338 weibrnd.m: Removed calls and references to deprecated _pdf and |
|
4339 _inv functions. |
|
4340 * chi2pdf.m: Fixed typos in the documentation. |
|
4341 |
5475
|
4342 2005-09-28 John W. Eaton <jwe@octave.org> |
|
4343 |
5476
|
4344 * miscellaneous/single.m: New function. |
|
4345 |
5475
|
4346 * statistics/base/unidrnd.m: New function. |
|
4347 |
5474
|
4348 2005-09-27 John W. Eaton <jwe@octave.org> |
|
4349 |
|
4350 * miscellaneous/dir.m: Filename never includes directory part. |
|
4351 |
5464
|
4352 2005-09-22 John W. Eaton <jwe@octave.org> |
|
4353 |
|
4354 * polynomial/residue.m: Use logical indexing instead of find.. |
|
4355 |
|
4356 2005-09-22 Julius Smith <jos@ccrma.stanford.edu> |
|
4357 |
|
4358 * polynomial/residue.m: Avoid division by zero for pure imaginary |
|
4359 and zero poles. |
|
4360 |
5462
|
4361 2005-09-22 Bill Denney <denney@seas.upenn.edu> |
|
4362 |
|
4363 * strings/deblank.m: Handle cell arrays. |
|
4364 * strings/split.m: New argument, N, to limit number of splits. |
|
4365 |
|
4366 2005-09-22 Miroslaw Kwasniak <mirek@zind.ikem.pwr.wroc.pl> |
|
4367 |
|
4368 * plot/__pltopt1__.m: Handle plot colors "w" and "k" separately. |
|
4369 |
5460
|
4370 2005-09-20 "Orestes Mas" <orestes@tsc.upc.edu> |
|
4371 |
|
4372 * control/base/rlocus.m: Doc fix. |
|
4373 |
5459
|
4374 2005-09-20 John W. Eaton <jwe@octave.org> |
|
4375 |
|
4376 * general/isvector.m: Improve compatibility. |
|
4377 |
|
4378 * general/postpad.m: Allow first argument to be a scalar. |
|
4379 Allow padding to extend dimensionality. |
|
4380 * general/prepad.m: Likewise. |
|
4381 |
5448
|
4382 2005-09-14 Daniel <durbano@shbano.com> |
|
4383 |
|
4384 * statistics/tests/bartlett_test.m, linear-algebra/cross.m, |
5449
|
4385 statistics/distributions/discrete_cdf.m, general/fliplr.m, |
|
4386 /control/base/dgram.m: Doc string fixes. |
5448
|
4387 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
4388 |
5446
|
4389 2005-09-12 Stefan van der Walt <stefan@sun.ac.za> |
|
4390 |
|
4391 * saveimage.m: Do not ignore most significant bit when writing |
|
4392 black and white images to file. |
|
4393 |
5443
|
4394 2005-09-07 Bill Denney <denney@seas.upenn.edu> |
|
4395 |
|
4396 * audio/playaudio.m, control/base/__bodquist__.m, |
|
4397 control/base/lqg.m, control/obsolete/dezero.m, |
|
4398 control/system/__syschnamesl__.m, control/system/__sysconcat__.m, |
|
4399 control/system/c2d.m, control/system/cellidx.m, |
|
4400 control/system/d2c.m, control/system/dmr2d.m, |
|
4401 control/system/is_signal_list.m, control/system/listidx.m, |
|
4402 control/system/ss.m, control/system/sysappend.m, |
|
4403 control/system/sysconnect.m, control/system/sysdup.m, |
|
4404 control/system/sysgetsignals.m, control/system/sysidx.m, |
|
4405 control/system/sysprune.m, control/system/syssetsignals.m, |
|
4406 control/system/tfout.m, control/system/zpout.m, |
|
4407 control/util/prompt.m, control/util/sortcom.m, |
|
4408 control/util/strappend.m, finance/fv.m, finance/nper.m, |
|
4409 finance/pmt.m, finance/pv.m, finance/rate.m, general/diff.m, |
|
4410 general/num2str.m, general/repmat.m, general/sortrows.m, |
|
4411 general/strerror.m, image/colormap.m, image/imshow.m, |
|
4412 image/loadimage.m, image/saveimage.m, linear-algebra/norm.m, |
|
4413 miscellaneous/fileparts.m, miscellaneous/popen2.m, |
|
4414 plot/__axis_label__.m, plot/__errcomm__.m, plot/__plt1__.m, |
|
4415 plot/__plt2__.m, plot/__plt__.m, plot/__pltopt1__.m, |
|
4416 plot/__pltopt__.m, plot/axis.m, plot/bottom_title.m, plot/close.m, |
|
4417 plot/grid.m, plot/hist.m, plot/plot_border.m, plot/polar.m, |
|
4418 plot/print.m, plot/title.m, plot/top_title.m, |
|
4419 polynomial/polyout.m, set/unique.m, signal/freqz.m, signal/stft.m, |
|
4420 statistics/base/mean.m, statistics/base/moment.m, |
|
4421 statistics/tests/cor_test.m, |
|
4422 statistics/tests/kolmogorov_smirnov_test.m, |
|
4423 statistics/tests/kolmogorov_smirnov_test_2.m, |
|
4424 statistics/tests/prop_test_2.m, statistics/tests/sign_test.m, |
|
4425 statistics/tests/t_test.m, statistics/tests/t_test_2.m, |
|
4426 statistics/tests/t_test_regression.m, statistics/tests/u_test.m, |
|
4427 statistics/tests/var_test.m, statistics/tests/welch_test.m, |
|
4428 statistics/tests/wilcoxon_test.m, statistics/tests/z_test.m, |
|
4429 statistics/tests/z_test_2.m, strings/base2dec.m, strings/blanks.m, |
|
4430 strings/deblank.m, strings/dec2base.m, strings/index.m, |
|
4431 strings/rindex.m, strings/split.m, strings/str2mat.m, |
|
4432 strings/str2num.m, strings/strcat.m, strings/strcmpi.m, |
|
4433 strings/strncmp.m, strings/strrep.m, strings/substr.m: |
|
4434 Avoid deprecated functions. Use ischar instead of isstr. Use |
|
4435 isvector instead of is_vector. Use isstruct instead of |
|
4436 is_struct. Use char instead of setstr. |
|
4437 |
5435
|
4438 2005-08-31 Daniel <durbano@shbano.com> |
|
4439 |
|
4440 * special-matrix/invhilb.m, statistics/base/iqr.m, |
|
4441 control/system/is_controllable.m, set/ismember.m: Doc fixes. |
|
4442 From Jorge Barros de Abreu <ficmatin01@solar.com.br>. |
|
4443 |
5431
|
4444 2005-08-29 Bill Denney <denney@seas.upenn.edu> |
|
4445 |
|
4446 * image/saveimage.m: Open output file in binary mode. |
|
4447 |
|
4448 * miscellaneous/bug_report.m: Open prefs file in text mode. |
|
4449 |
5427
|
4450 2005-08-16 John W. Eaton <jwe@octave.org> |
|
4451 |
|
4452 * miscellaneous/computer.m: Handle optional maxsize and endian |
|
4453 outputs. |
|
4454 |
5426
|
4455 2005-08-15 John W. Eaton <jwe@octave.org> |
|
4456 |
|
4457 * strings/strcat.m: Allow single argument. |
|
4458 |
5416
|
4459 2005-07-18 John W. Eaton <jwe@octave.org> |
|
4460 |
|
4461 * strings/strcmp.m: Delete. |
|
4462 |
5413
|
4463 2005-07-13 John W. Eaton <jwe@octave.org> |
|
4464 |
|
4465 * deprecated/hypergeometric_rnd.m: Preserve compatibility with old |
|
4466 versions of Octave. |
|
4467 |
|
4468 2005-07-13 Ben Barrowes <barrowes@alum.mit.edu> |
|
4469 |
|
4470 * statistics/distributions/betacdf.m: Rename from beta_cdf.m. |
|
4471 * statistics/distributions/betainv.m: Rename from beta_inv.m. |
|
4472 * statistics/distributions/betapdf.m: Rename from beta_pdf.m. |
|
4473 * statistics/distributions/betarnd.m: Rename from beta_rnd.m. |
|
4474 * statistics/distributions/binocdf.m: Rename from binomial_cdf.m. |
|
4475 * statistics/distributions/binoinv.m: Rename from binomial_inv.m. |
|
4476 * statistics/distributions/binopdf.m: Rename from binomial_pdf.m. |
|
4477 * statistics/distributions/binornd.m: Rename from binomial_rnd.m. |
|
4478 * statistics/distributions/chi2cdf.m: Rename from chisquare_cdf.m. |
|
4479 * statistics/distributions/chi2inv.m: Rename from chisquare_inv.m. |
|
4480 * statistics/distributions/chi2pdf.m: Rename from chisquare_pdf.m. |
|
4481 * statistics/distributions/chi2rnd.m: Rename from chisquare_rnd.m. |
|
4482 * statistics/distributions/expcdf.m: Rename from exponential_cdf.m. |
|
4483 * statistics/distributions/expinv.m: Rename from exponential_inv.m. |
|
4484 * statistics/distributions/exppdf.m: Rename from exponential_pdf.m. |
|
4485 * statistics/distributions/exprnd.m: Rename from exponential_rnd.m. |
|
4486 * statistics/distributions/fcdf.m: Rename from f_cdf.m. |
|
4487 * statistics/distributions/finv.m: Rename from f_inv.m. |
|
4488 * statistics/distributions/fpdf.m: Rename from f_pdf.m. |
|
4489 * statistics/distributions/frnd.m: Rename from f_rnd.m. |
|
4490 * statistics/distributions/gamcdf.m: Rename from gamma_cdf.m. |
|
4491 * statistics/distributions/gaminv.m: Rename from gamma_inv.m. |
|
4492 * statistics/distributions/gampdf.m: Rename from gamma_pdf.m. |
|
4493 * statistics/distributions/gamrnd.m: Rename from gamma_rnd.m. |
|
4494 * statistics/distributions/geocdf.m: Rename from geometric_cdf.m. |
|
4495 * statistics/distributions/geoinv.m: Rename from geometric_inv.m. |
|
4496 * statistics/distributions/geopdf.m: Rename from geometric_pdf.m. |
|
4497 * statistics/distributions/geornd.m: Rename from geometric_rnd.m. |
|
4498 * statistics/distributions/hygecdf.m: Rename from hypergeometric_cdf.m. |
|
4499 * statistics/distributions/hygeinv.m: Rename from hypergeometric_inv.m. |
|
4500 * statistics/distributions/hygepdf.m: Rename from hypergeometric_pdf.m. |
|
4501 * statistics/distributions/hygernd.m: Rename from hypergeometric_rnd.m. |
|
4502 * statistics/distributions/logncdf.m: Rename from lognormal_cdf.m. |
|
4503 * statistics/distributions/logninv.m: Rename from lognormal_inv.m. |
|
4504 * statistics/distributions/lognpdf.m: Rename from lognormal_pdf.m. |
|
4505 * statistics/distributions/lognrnd.m: Rename from lognormal_rnd.m. |
|
4506 * statistics/distributions/normcdf.m: Rename from normal_cdf.m. |
|
4507 * statistics/distributions/norminv.m: Rename from normal_inv.m. |
|
4508 * statistics/distributions/normpdf.m: Rename from normal_pdf.m. |
|
4509 * statistics/distributions/normrnd.m: Rename from normal_rnd.m. |
|
4510 * statistics/distributions/poisscdf.m: Rename from poisson_cdf.m. |
|
4511 * statistics/distributions/poissinv.m: Rename from poisson_inv.m. |
|
4512 * statistics/distributions/poisspdf.m: Rename from poisson_pdf.m. |
|
4513 * statistics/distributions/poissrnd.m: Rename from poisson_rnd.m. |
|
4514 * statistics/distributions/tcdf.m: Rename from t_cdf.m. |
|
4515 * statistics/distributions/tinv.m: Rename from t_inv.m. |
|
4516 * statistics/distributions/tpdf.m: Rename from t_pdf.m. |
|
4517 * statistics/distributions/trnd.m: Rename from t_rnd.m. |
5431
|
4518 * statistics/distributions/unifcdf.m: Rename from unifoxorm_cdf.m. |
5413
|
4519 * statistics/distributions/unifinv.m: Rename from uniform_inv.m. |
|
4520 * statistics/distributions/unifpdf.m: Rename from uniform_pdf.m. |
|
4521 * statistics/distributions/unifrnd.m: Rename from uniform_rnd.m. |
|
4522 * statistics/distributions/weibcdf.m: Rename from weibull_cdf.m. |
|
4523 * statistics/distributions/weibinv.m: Rename from weibull_inv.m. |
|
4524 * statistics/distributions/weibpdf.m: Rename from weibull_pdf.m. |
|
4525 * statistics/distributions/wienrnd.m: Rename from wiener_rnd.m. |
|
4526 |
|
4527 * deprecated/beta_cdf.m, deprecated/beta_inv.m, |
|
4528 deprecated/beta_pdf.m, deprecated/beta_rnd.m, |
|
4529 deprecated/binomial_cdf.m, deprecated/binomial_inv.m, |
|
4530 deprecated/binomial_pdf.m, deprecated/binomial_rnd.m, |
|
4531 deprecated/chisquare_cdf.m, deprecated/chisquare_inv.m, |
|
4532 deprecated/chisquare_pdf.m, deprecated/chisquare_rnd.m, |
|
4533 deprecated/exponential_cdf.m, deprecated/exponential_inv.m, |
|
4534 deprecated/exponential_pdf.m, deprecated/exponential_rnd.m, |
|
4535 deprecated/f_cdf.m, deprecated/f_inv.m, deprecated/f_pdf.m, |
|
4536 deprecated/f_rnd.m, deprecated/gamma_cdf.m, |
|
4537 deprecated/gamma_inv.m, deprecated/gamma_pdf.m, |
|
4538 deprecated/gamma_rnd.m, deprecated/geometric_cdf.m, |
|
4539 deprecated/geometric_inv.m, deprecated/geometric_pdf.m, |
|
4540 deprecated/geometric_rnd.m, deprecated/hypergeometric_cdf.m, |
|
4541 deprecated/hypergeometric_inv.m, deprecated/hypergeometric_pdf.m, |
|
4542 deprecated/hypergeometric_rnd.m, deprecated/lognormal_cdf.m, |
|
4543 deprecated/lognormal_inv.m, deprecated/lognormal_pdf.m, |
|
4544 deprecated/lognormal_rnd.m, deprecated/normal_cdf.m, |
|
4545 deprecated/normal_inv.m, deprecated/normal_pdf.m, |
|
4546 deprecated/normal_rnd.m, deprecated/poisson_cdf.m, |
|
4547 deprecated/poisson_inv.m, deprecated/poisson_pdf.m, |
|
4548 deprecated/poisson_rnd.m, deprecated/t_cdf.m, deprecated/t_inv.m, |
|
4549 deprecated/t_pdf.m, deprecated/t_rnd.m, deprecated/uniform_cdf.m, |
|
4550 deprecated/uniform_inv.m, deprecated/uniform_pdf.m, |
|
4551 deprecated/uniform_rnd.m, deprecated/weibull_cdf.m, |
|
4552 deprecated/weibull_inv.m, deprecated/weibull_pdf.m, |
|
4553 deprecated/wiener_rnd.m: New files. |
|
4554 |
5408
|
4555 2005-07-08 John W. Eaton <jwe@octave.org> |
|
4556 |
|
4557 * statistics/distributions/weibrnd.m: Rename from weibull_rnd.m. |
|
4558 * deprecated/weibull_rnd.m: New file. |
|
4559 |
5407
|
4560 2005-07-08 cctsim <cctsim@yahoo.co.uk> |
|
4561 |
|
4562 * strings/dec2base.m: Allow matrix arguments. |
|
4563 |
5406
|
4564 2005-07-08 John W. Eaton <jwe@octave.org> |
|
4565 |
|
4566 * plot/__errplot__.m: Use __plot_globals__. |
|
4567 * plot/__plt__.m: Likewise. |
|
4568 * plot/figure.m: Likewise. |
|
4569 |
|
4570 * plot/hold.m: New file. |
|
4571 * plot/ishold.m: New file. |
|
4572 * plot/__plot_globals__.m: New file. |
|
4573 |
5400
|
4574 2005-07-05 cctsim <cctsim@yahoo.co.uk> |
|
4575 |
|
4576 * strings/dec2base.m: Don't remove all leading zeros if result is zero. |
|
4577 |
|
4578 2005-07-05 John W. Eaton <jwe@octave.org> |
|
4579 |
|
4580 * strings/findstr.m: Return [] for no matches. |
|
4581 |
5399
|
4582 2005-06-17 Keith Goodman <kwgoodman@gmail.com> |
|
4583 |
|
4584 * miscellaneous/tic.m: Fix doc string. |
|
4585 |
5395
|
4586 2005-06-15 John W. Eaton <jwe@octave.org> |
|
4587 |
|
4588 * polynomial/polyfit.m: Force return value to be a row vector. |
|
4589 |
5393
|
4590 2005-06-15 Tom Holroyd <tomh@kurage.nimh.nih.gov> |
|
4591 |
|
4592 * general/isequal.m: Correct nargin check. |
|
4593 |
5388
|
4594 2005-06-14 John W. Eaton <jwe@octave.org> |
|
4595 |
|
4596 * general/isvector.m: Handle N-d arrays. |
|
4597 From Bill Denney <denney@seas.upenn.edu>. |
|
4598 |
5381
|
4599 2005-06-02 Ben Barrowes <barrowes@alum.mit.edu> |
|
4600 |
|
4601 * plot/meshgrid.m: Handle 3 input arguments. |
5378
|
4602 |
5377
|
4603 2005-06-02 Paul Kienzle <pkienzle@users.sf.net> |
|
4604 |
|
4605 * signal/freqz.m: Use correct calculations when given a vector of |
|
4606 frequencies. Improve accuracy of returned frequency vector. |
|
4607 Improve speed for medium length filters (at a slight cost for slow |
|
4608 filters). Add test cases. |
|
4609 |
5373
|
4610 2005-05-27 "Dmitri A. Sergatskov" <dasergatskov@gmail.com> |
|
4611 |
|
4612 * plot/loglog.m: Fix set commands. |
|
4613 |
5381
|
4614 2005-05-25 John W. Eaton <jwe@octave.org> |
|
4615 |
|
4616 * plot/sombrero.m: Default n to 41 if nargin == 0. |
|
4617 |
5371
|
4618 2005-05-24 John W. Eaton <jwe@octave.org> |
|
4619 |
5373
|
4620 * statistics/tests/anova.m: Use mean (y(:)) to compute total_mean. |
|
4621 |
5372
|
4622 * strings/strncmp.m: New file, from Tom Holroyd |
|
4623 <tomh@kurage.nimh.nih.gov>. |
|
4624 |
5371
|
4625 * strings/strcmp.m: Return logical values in all cases. |
|
4626 |
5366
|
4627 2005-05-23 John W. Eaton <jwe@octave.org> |
|
4628 |
|
4629 * plot/orient.m: New file. Adapt to Octave coding style. |
|
4630 Texinfoize doc string. |
|
4631 |
|
4632 * plot/print.m: New file. Adapt to Octave coding style. Include |
|
4633 PKG_ADD command. Use set terminal consistently throughout. Use |
|
4634 set terminal push/pop and unconditionally set output to screen |
|
4635 when done to avoid requiring gget. Use a cell array for dev_list |
|
4636 and cellidx to search for items in the list. Delete local |
|
4637 variable endl. Don't set and restore automatic_replot. Use {} |
|
4638 instead of nth to index varargin. Delete local variable |
|
4639 va_arg_cnt. |
|
4640 |
5355
|
4641 2005-05-18 John W. Eaton <jwe@octave.org> |
|
4642 |
|
4643 * general/num2str.m: Return early if X is a character string. |
|
4644 |
5347
|
4645 2005-05-11 John W. Eaton <jwe@octave.org> |
|
4646 |
5348
|
4647 * strings/findstr.m: Allow non-string arguments for compatiblity. |
|
4648 From Tom Holroyd <tomh@kurage.nimh.nih.gov>. |
|
4649 |
5347
|
4650 * plot/polar.m: Don't call __pltopt__ here. |
|
4651 |
5333
|
4652 2005-05-02 John W. Eaton <jwe@octave.org> |
|
4653 |
|
4654 * mkdoc: Print header message. |
|
4655 |
5319
|
4656 2005-04-28 John W. Eaton <jwe@octave.org> |
|
4657 |
|
4658 * configure.in (AC_CONFIG_SRCDIR): Look for startup/inputrc, not |
|
4659 startup/octaverc. |
|
4660 |
5318
|
4661 2005-04-28 Stefan van der Walt <stefan@sun.ac.za> |
|
4662 |
|
4663 * image/imshow.m: Handle various image depths and 3d RGB images. |
|
4664 (__im_numeric_limits__): New internal function. |
|
4665 |
5317
|
4666 2005-04-28 toni saarela <toni.saarela@helsinki.fi> |
|
4667 |
|
4668 * statistics/tests/anova.m: Compute total_mean as mean of all |
|
4669 data, not mean of group_mean. |
|
4670 |
|
4671 2005-04-28 John W. Eaton <jwe@octave.org> |
|
4672 |
|
4673 * startup/local-rcfile: New file. |
|
4674 * startup/main-rcfile: Rename from startup/octaverc. |
|
4675 * startup/Makefile.in (SOURCES): Add inputrc to the list. |
|
4676 (install install-strip): Install main-rcfile in $(fcnfiledir)/startup. |
|
4677 Install local-rcfile in $(localfcnfiledir)/startup. |
|
4678 |
|
4679 2005-04-28 Keith Goodman <kwgoodman@gmail.com> |
|
4680 |
|
4681 * startup/inputrc: New file. |
|
4682 * startup/octaverc: Configure readline using inputrc from |
|
4683 startupfiledir. |
|
4684 * startup/Makefile.in (install, install-strip): Install octaverc |
|
4685 in $(fcnfiledir)/startup. |
|
4686 |
5310
|
4687 2005-04-27 John W. Eaton <jwe@octave.org> |
|
4688 |
|
4689 * optimization/qp.m: Define n_in after removing -Inf bounds from Ain. |
|
4690 |
5289
|
4691 2005-04-21 John W. Eaton <jwe@octave.org> |
|
4692 |
|
4693 * optimization/glpk.m: Handle SENSE argument. |
|
4694 |
|
4695 * optimization/qp.m, optimization/sqp.m: New files. |
|
4696 |
5276
|
4697 2005-04-08 John W. Eaton <jwe@octave.org> |
|
4698 |
|
4699 * Makefile.in (clean, distclean, maintainer-clean): |
|
4700 Avoid duplication in rules. |
|
4701 |
5252
|
4702 2005-03-28 John W. Eaton <jwe@octave.org> |
|
4703 |
|
4704 * plot/contour.m, plot/mesh.m: Continue to use __gnuplot_raw__ for |
|
4705 setting {no,}parametric. |
|
4706 * plot/figure.m: Likewise, for setting terminal type. |
|
4707 |
|
4708 * __axis_label__.m:, plot/axis.m, plot/bottom_title.m, |
|
4709 plot/contour.m, plot/figure.m, plot/multiplot.m, plot/mplot.m, |
|
4710 plot/plot_border.m, plot/subplot.m, plot/subwindow.m, |
|
4711 plot/title.m, plot/top_title.m: Avoid eval. |
|
4712 |
5251
|
4713 2005-03-28 Dmitri A. Sergatskov <dasergatskov@gmail.com> |
|
4714 |
5253
|
4715 * plot/__axis_label__.m, plot/axis.m, plot/grid.m, |
|
4716 plot/plot_border.m, plot/replot.m, plot/title.m, plot/top_title.m: |
|
4717 Use __gnuplot_replot__ instead of replot. |
|
4718 |
5252
|
4719 * plot/__axis_label__.m, plot/axis.m, plot/bottom_title.m, |
|
4720 plot/contour.m, plot/errorbar.m, plot/figure.m, plot/grid.m, |
|
4721 plot/loglogerr.m, plot/loglog.m, plot/mesh.m, plot/mplot.m, |
|
4722 plot/multiplot.m, plot/oneplot.m, plot/plot_border.m, plot/plot.m, |
|
4723 plot/polar.m, plot/semilogxerr.m, plot/semilogx.m, |
|
4724 plot/semilogyerr.m, plot/semilogy.m, plot/shg.m, plot/subplot.m, |
|
4725 plot/subwindow.m, plot/title.m, plot/top_title.m: |
5654
|
4726 Use __gnuplot_raw__ instead of __gnuplot_set__. |
5252
|
4727 |
5251
|
4728 * plot/replot.m: Use __gnuplot_replot__, not __greplot__. |
|
4729 |
5244
|
4730 2005-03-24 John W. Eaton <jwe@octave.org> |
|
4731 |
|
4732 * optimization/glpkmex.m: Texinfoize Doc string. |
|
4733 * optimization/glpk.m: Likewise. |
|
4734 Allow VARTYPE and CTYPE to be row or column vectors of characters |
|
4735 (row vectors are orginary character strings). |
|
4736 * optimization/glpkparam.m: Delete. |
|
4737 |
5243
|
4738 2005-03-24 Quentin Spencer <qspencer@ieee.org> |
|
4739 |
|
4740 * statistics/base/mean.m: Allow DIMS arg greater than the number |
|
4741 of dimensions of X. |
|
4742 |
5237
|
4743 2005-03-23 John W. Eaton <jwe@octave.org> |
|
4744 |
5239
|
4745 * general/tril.m, general/triu.m: Return value of same class as |
|
4746 argument. |
|
4747 |
5237
|
4748 * optimization/glpk.m: Simplify interface. By default, solve |
|
4749 standard LP min C'*x s.t. A*x = b, x >= 0. |
|
4750 * optimization/glpkmex.m: New file. |
|
4751 |
5232
|
4752 2005-03-22 John W. Eaton <jwe@octave.org> |
|
4753 |
5237
|
4754 * configure.in (AC_CONFIG_FILES): Add optimization/Makefile to the |
|
4755 list. |
|
4756 |
5233
|
4757 * optimization/glpk.m: Adapt to Octave coding style. |
|
4758 No need for varargout or varargin. |
|
4759 Print usage message if nargin > 11. |
|
4760 Allow any value of nargout. |
|
4761 Use repmat (C, nr, nc) instead of char (C * ones (nr, nc)). |
|
4762 Avoid looping when checking character classes. |
|
4763 |
5232
|
4764 * optimization: New directory. |
|
4765 * Makefile.in (SUBDIRS): Add it to the list. |
|
4766 * optimization/Makefile.in: New file. |
|
4767 * optimization/glpk.m, optimization/glpkparams.m, |
|
4768 optimization/glpktest1, optimization/glpktest2: New files. |
|
4769 |
5218
|
4770 2005-03-16 Soren Hauberg <soren@hauberg.org> |
|
4771 |
|
4772 * strings/split.m: Quick return for empty second arg. |
|
4773 Improve warning for multi-line strings. |
|
4774 Speed up by avoiding sprintf in loop and eval. |
|
4775 |
5217
|
4776 2005-03-16 Paul Kienzle <pkienzle@users.sf.net> |
|
4777 |
|
4778 * polynomial/polyderiv.m : Accept a*b, a/b. Auto-reduce common terms. |
|
4779 * polynomial/polyder.m: Ditto. |
6778
|
4780 * polynomial/polygcd.m: New function. |
5217
|
4781 |
5214
|
4782 2005-03-16 John W. Eaton <jwe@octave.org> |
|
4783 |
5215
|
4784 * control/base/__stepimp__.m, control/base/bode.m, |
|
4785 control/base/frdemo.m, control/base/nichols.m, |
|
4786 control/base/nyquist.m, control/base/pzmap.m, |
|
4787 control/base/rldemo.m, control/base/rlocus.m, |
|
4788 control/hinf/dhinfdemo.m, control/hinf/hinfdemo.m, |
|
4789 plot/__axis_label__.m, plot/__errplot__.m, plot/__plt__.m, |
|
4790 plot/axis.m, plot/bar.m, plot/bottom_title.m, plot/contour.m, |
|
4791 plot/errorbar.m, plot/figure.m, plot/grid.m, plot/loglog.m, |
|
4792 plot/loglogerr.m, plot/mesh.m, plot/meshgrid.m, plot/mplot.m, |
|
4793 plot/multiplot.m, plot/oneplot.m, plot/plot.m, plot/plot_border.m, |
|
4794 plot/polar.m, plot/semilogx.m, plot/semilogxerr.m, |
|
4795 plot/semilogy.m, plot/semilogyerr.m, plot/shg.m, plot/stairs.m, |
|
4796 plot/subplot.m, plot/subwindow.m, plot/title.m, plot/top_title.m, |
|
4797 plot/xlabel.m, quaternion/demoquat.m, |
|
4798 quaternion/qcoordinate_plot.m, signal/freqz_plot.m, sparse/spy.m, |
|
4799 statistics/base/ppplot.m, statistics/base/qqplot.m: |
|
4800 Use __gnuplot_plot__ instead of gplot, __gnuplot_splot__ instead |
|
4801 of gsplot, and __gnuplot_set__ instead of gset. Remove gplot, |
|
4802 gsplot from @seealso docs. |
5214
|
4803 |
|
4804 * plot/replot.m: New file. |
|
4805 |
5205
|
4806 2005-03-15 David Bateman <dbateman@free.fr> |
|
4807 |
|
4808 * set/unique.m, set/ismember.m: Handle cell arrays. |
|
4809 |
5196
|
4810 2005-03-09 John W. Eaton <jwe@octave.org> |
|
4811 |
|
4812 * statistics/Makefile.in (bin-dist): Delete target. |
|
4813 (BINDISTSUBDIRS): Delete variable. |
6754
|
4814 * control/Makefile.in: Likewise. |
5196
|
4815 |
5378
|
4816 * audio/Makefile.in (bin-dist): Delete target. |
5196
|
4817 (BINDISTFILES): Delete variable. |
5378
|
4818 * control/base/Makefile.in: Likewise. |
|
4819 * control/hinf/Makefile.in: Likewise. |
|
4820 * control/obsolete/Makefile.in: Likewise. |
|
4821 * control/system/Makefile.in: Likewise. |
|
4822 * control/util/Makefile.in: Likewise. |
|
4823 * deprecated/Makefile.in: Likewise. |
|
4824 * elfun/Makefile.in: Likewise. |
|
4825 * finance/Makefile.in: Likewise. |
|
4826 * general/Makefile.in: Likewise. |
|
4827 * image/Makefile.in: Likewise. |
|
4828 * sparse/Makefile.in: Likewise. |
|
4829 * io/Makefile.in: Likewise. |
|
4830 * plot/Makefile.in: Likewise. |
|
4831 * Makefile.in: Likewise. |
|
4832 * miscellaneous/Makefile.in: Likewise. |
|
4833 * linear-algebra/Makefile.in: Likewise. |
|
4834 * polynomial/Makefile.in: Likewise. |
|
4835 * quaternion/Makefile.in: Likewise. |
|
4836 * set/Makefile.in: Likewise. |
|
4837 * signal/Makefile.in: Likewise. |
|
4838 * specfun/Makefile.in: Likewise. |
|
4839 * special-matrix/Makefile.in: Likewise. |
|
4840 * startup/Makefile.in: Likewise. |
|
4841 * statistics/base/Makefile.in: Likewise. |
|
4842 * statistics/distributions/Makefile.in: Likewise. |
|
4843 * statistics/models/Makefile.in: Likewise. |
|
4844 * statistics/tests/Makefile.in: Likewise. |
|
4845 * strings/Makefile.in: Likewise. |
|
4846 * time/Makefile.in: Likewise. |
5196
|
4847 |
5195
|
4848 2005-03-08 John W. Eaton <jwe@octave.org> |
|
4849 |
|
4850 * general/repmat.m: Correctly diagnose 3-argument non-scalar |
|
4851 dimensions case. From Matthew A Swabey <mas01r@ecs.soton.ac.uk>. |
|
4852 |
5192
|
4853 2005-03-04 John W. Eaton <jwe@octave.org> |
|
4854 |
|
4855 * plot/clg.m: New file. |
|
4856 |
5193
|
4857 2005-03-03 John W. Eaton <jwe@octave.org> |
|
4858 |
|
4859 * general/isequal.m, general/sortrows.m, set/ismember.m, |
|
4860 set/setdiff.m, strings/str2double.m, strings/strmatch.m, |
|
4861 strings/strcmpi.m: |
|
4862 New files from Octave-forge. Adapt to Octave coding standards. |
|
4863 |
5181
|
4864 2005-03-03 Paul Kienzle <pkienzle@users.sf.net> |
|
4865 |
|
4866 * statistics/distributions/binomial_pdf.m: Extend the feasible |
|
4867 computation range. |
|
4868 |
5164
|
4869 2005-02-25 John W. Eaton <jwe@octave.org> |
|
4870 |
|
4871 Sparse merge. |
|
4872 |
|
4873 2005-01-23 David Bateman <dbateman@free.fr> |
|
4874 |
|
4875 * sparse/randperm.m: Delete duplicate randperm.m. |
|
4876 |
|
4877 2005-01-10 John W. Eaton <jwe@octave.org> |
|
4878 |
|
4879 * sparse/Makefile.in: New file. |
|
4880 * configure.in (AC_CONFIG_FILES): Add sparse/Makefile to the list. |
|
4881 |
|
4882 2005-01-07 David Bateman <dbateman@free.fr> |
|
4883 |
|
4884 * set/unique.m: import file from octave-forge. |
|
4885 |
|
4886 2005-01-05 David Bateman <dbateman@free.fr> |
|
4887 |
|
4888 * Makefile.in: include sparse directory in SUBDIRS. |
|
4889 |
|
4890 2004-12-30 John W. Eaton <jwe@octave.org> |
|
4891 |
|
4892 * sparse/nzmax.m: Delete (there is an nzmax function in |
|
4893 src/DLD-FUNCTIONS/sparse.cc). |
|
4894 |
|
4895 2004-12-28 John W. Eaton <jwe@octave.org> |
|
4896 |
|
4897 Merge of sparse code from David Bateman <dbateman@free.fr> and |
|
4898 Andy Adler <adler@site.uottawa.ca>. |
|
4899 |
|
4900 * sparse/colperm.m, sparse/nonzeros.m, sparse/nzmax.m, |
|
4901 sparse/randperm.m, sparse/spalloc.m, sparse/spconvert.m, |
|
4902 sparse/spdiags.m, sparse/speye.m, sparse/spfun.m, sparse/sphcat.m, |
|
4903 sparse/spones.m, sparse/sprand.m, sparse/sprandn.m, |
|
4904 sparse/spstats.m, sparse/spvcat.m, sparse/spy.m: New files. |
|
4905 |
|
4906 * sparse: New directory. |
|
4907 |
5158
|
4908 2005-02-22 John W. Eaton <jwe@octave.org> |
|
4909 |
|
4910 * polynomial/residue.m: Force prepad to always create row vectors. |
|
4911 |
|
4912 * polynomial/poly.m: Quick return if m is 0. |
|
4913 From Carmen Navarrete <carmen.navarrete@uam.es>. |
|
4914 |
5154
|
4915 2005-02-21 David Bateman <dbateman@free.fr> |
|
4916 |
|
4917 * statistics/distributions/poisson_rnd.m: fix for lambda of zero. |
|
4918 From Mark van Rossum <mvanross@inf.ed.ac.uk>. |
|
4919 Fix for row vectors with at least one element of lambda not in |
|
4920 (0, Inf). |
|
4921 |
5152
|
4922 2005-02-21 John W. Eaton <jwe@octave.org> |
|
4923 |
5153
|
4924 * statistics/base/qqplot.m: Use feval instead of eval. |
|
4925 |
5152
|
4926 * plot/grid.m, plot/plot_border.m, plot/title.m, plot/top_title.m, |
|
4927 plot/__axis_label__.m: Issue replot command. |
|
4928 |
5135
|
4929 2005-02-09 John W. Eaton <jwe@octave.org> |
|
4930 |
|
4931 * polynomial/polyderiv.m: Force P to be a row vector. |
|
4932 |
5133
|
4933 2005-02-08 John W. Eaton <jwe@octave.org> |
|
4934 |
|
4935 * strings/dec2base.m: Don't delete leading zero if third arg is |
|
4936 provided and len <= computed max_len. |
|
4937 |
5125
|
4938 2005-01-27 David Bateman <dbateman@free.fr> |
|
4939 |
|
4940 * strings/dec2base.m: Be even more careful about handling all digits. |
|
4941 |
|
4942 2005-01-27 Paul Kienzle <pkienzle@users.sf.net> |
|
4943 |
|
4944 * strings/dec2base.m: Use integer arithmetic to count number of digits. |
|
4945 |
5123
|
4946 2005-01-27 Benjamin Hall <benjamin.hall@pw.utc.com> |
|
4947 |
|
4948 * statistics/base/median.m: Make it work for the scalar case too. |
|
4949 |
6308
|
4950 2005-01-25 Daniel J Sebald <daniel.sebald@ieee.org> |
5117
|
4951 |
|
4952 * plot/__plt__.m: Initialize fmt and sep outside of loop. |
5118
|
4953 Simplify logic for decoding args. |
5117
|
4954 |
5115
|
4955 2005-01-24 John W. Eaton <jwe@octave.org> |
|
4956 |
5116
|
4957 * plot/__plr__.m, plot/__plr2__.m: Pass name of caller to __plt__. |
|
4958 |
|
4959 * plot/__plt__.m: No need to save and reset hold state now. |
|
4960 (first_plot): Delete unused variable. |
|
4961 |
5115
|
4962 * plot/__plr2__.m, plot/__plt2__.m: Improve diagnostics. |
|
4963 |
|
4964 * plot/__plr__.m: Use __plt__, not specific __pltXX__ functions. |
|
4965 * plot/__plt1__.m, plot/__plt2__.m, plot/__plt2mm__.m, |
|
4966 plot/__plt2mv__.m, plot/__plt2ss__.m, plot/__plt2vm__.m, |
|
4967 plot/__plt2vv__.m: |
|
4968 Return data and gnuplot commands instead of evaluating them. |
|
4969 * plot/__plt__.m: Handle evaluation of all gnuplot commands here. |
|
4970 Based on changes from Daniel J Sebald <daniel.sebald@ieee.org>. |
|
4971 |
5108
|
4972 2005-01-18 John W. Eaton <jwe@octave.org> |
|
4973 |
|
4974 * linear-algebra/cross.m: Allocate idx1 before use. |
|
4975 |
5096
|
4976 2004-12-08 Heikki Junes <Heikki.Junes@hut.fi> |
|
4977 |
|
4978 * statistics/base/range.m: Fix varargin usage. |
|
4979 |
5091
|
4980 2004-12-02 Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be> |
|
4981 |
|
4982 * strings/deblank.m: Remove all trailing whitespace (check with |
|
4983 isspace), not just SPC. |
|
4984 |
5090
|
4985 2004-12-02 Balint Reczey <balint_reczey@yahoo.com> |
|
4986 |
|
4987 * statistics/base/moment.m: Fix argument parsing for N-d arrays. |
|
4988 |
5073
|
4989 2004-11-09 John W. Eaton <jwe@octave.org> |
|
4990 |
|
4991 * miscellaneous/fileparts.m: Allow filenames with no extension. |
|
4992 From Julius Smith <jos@ccrma.stanford.edu>. |
|
4993 |
5072
|
4994 2004-11-08 John W. Eaton <jwe@octave.org> |
|
4995 |
|
4996 * plot/__plt2vm__.m: Delete debugging statement. |
|
4997 From Dmitri A. Sergatskov <dmitri@unm.edu>. |
|
4998 |
5065
|
4999 2004-11-04 John W. Eaton <jwe@octave.org> |
|
5000 |
|
5001 * plot/hist.m: Always return row vectors for vector args. |
|
5002 |
5031
|
5003 2004-09-23 John W. Eaton <jwe@octave.org> |
|
5004 |
|
5005 * strings/strcmp.m: If args are not strings or cell arrays of |
|
5006 strings, return zero instead of reporting an error. |
|
5007 |
5021
|
5008 2004-09-22 Federico Zenith <zenith@chemeng.ntnu.no> |
|
5009 |
|
5010 * control/base/analdemo.m, control/base/are.m, control/base/bddemo.m, |
|
5011 control/base/controldemo.m, control/base/damp.m, control/base/dare.m, |
|
5012 control/base/dcgain.m, control/base/dgram.m, control/base/dlyap.m, |
|
5013 control/base/dre.m, control/base/frdemo.m, control/base/gram.m, |
|
5014 control/base/impulse.m, control/base/lqp.m, control/base/obsv.m, |
|
5015 control/base/pzmap.m, control/base/rldemo.m, control/hinf/h2norm.m, |
|
5016 control/hinf/hinfsyn.m, control/hinf/hinfsyn_ric.m, |
|
5017 control/hinf/is_dgkf.m, control/system/c2d.m, |
|
5018 control/system/is_detectable.m, control/system/is_sample.m, |
|
5019 control/system/is_siso.m, control/system/is_stable.m, |
|
5020 control/system/ss2sys.m, control/system/ss.m, control/system/sys2ss.m, |
|
5021 control/system/sys2tf.m, control/system/sys2zp.m, |
|
5022 control/system/sysappend.m, control/system/sysconnect.m, |
|
5023 control/system/sysdisc.m, control/system/sysdup.m, |
|
5024 control/system/sysgetsignals.m, control/system/sysmult.m, |
|
5025 control/system/syssetsignals.m, control/system/syssub.m, |
|
5026 control/system/tf2sys.m, control/system/ugain.m, |
|
5027 control/system/zp2ss.m, control/system/zp2sys.m, |
|
5028 control/system/zp2tf.m, control/util/axis2dlim.m, polynomial/roots.m, |
|
5029 special-matrix/toeplitz.m: Fix typos in doc strings. |
|
5030 |
|
5031 * control/base/are.m, control/base/dare.m, control/base/lsim.m, |
|
5032 control/base/ltifr.m, control/base/place.m,control/base/tzero2.m, |
|
5033 control/base/tzero.m, control/hinf/hinf_ctr.m, control/hinf/wgt1o.m, |
|
5034 ontrol/system/is_abcd.m, control/system/parallel.m, |
|
5035 control/system/ss2tf.m, control/system/ss2zp.m, control/system/ss.m, |
|
5036 control/system/sysappend.m, control/system/sysconnect.m, |
|
5037 control/system/sysdup.m, control/system/sysgroup.m, |
|
5038 control/system/sysprune.m, control/system/sysreorder.m, |
|
5039 control/system/sysscale.m, control/system/syssub.m, |
|
5040 control/system/tf2ss.m, control/system/tf2zp.m, control/util/zgfmul.m, |
|
5041 control/util/zginit.m, control/util/zgscal.m, elfun/acoth.m, |
|
5042 polynomial/polyout.m, specfun/log2.m: |
|
5043 Add output arguments in doc strings. |
|
5044 |
|
5045 * control/base/are.m, control/base/bode_bounds, control/base/bode.m, |
|
5046 control/base/__bodquist__.m, control/base/ctrb.m, control/base/dare.m, |
|
5047 control/base/DEMOcontrol.m, control/base/dlyap.m, control/base/dre.m, |
|
5048 control/base/freqchkw.m, control/base/__freqresp__.m, |
|
5049 control/base/__freqresp__.m, control/base/lqp.m, control/base/lqr.m, |
|
5050 contol/base/lsim.m, control/base/lyap.m, control/base/nyquist.m, |
|
5051 control/base/obsv.m, control/base/place.m, control/base/pzmap.m, |
|
5052 control/base/__stepimp__.m, control/base/step.m, control/base/tzero2.m |
|
5053 control/base/tzero.m, control/hinf/dhinfdemo.m, control/hinf/h2norm.m, |
|
5054 control/hinf/h2syn.m, control/hinf/hinfdemo.m, |
|
5055 control/hinf/hinfnorm.m, control/hinf/hinfsyn_chk.m, |
|
5056 control/hinf/hinfsyn.m, control/hinf/is_dgkf.m, |
|
5057 control/obsolete/syschnames.m, control/obsolete/syschnames.m, |
|
5058 control/system/c2d.m, control/system/is_abcd.m, |
|
5059 control/system/is_controllable.m, control/system/is_detectable.m, |
|
5060 control/system/is_observable.m, control/system/is_stable.m, |
|
5061 control/system/jet707.m, control/system/ord2.m, |
|
5062 control/system/starp.m, control/system/sys2fir.m, |
|
5063 control/system/sys2ss.m, control/system/sys2tf.m, |
|
5064 control/system/sys2zp.m, control/system/syscont.m, |
|
5065 control/system/sysdisc.m, control/system/sysdup.m, |
|
5066 control/system/sysgettype.m, control/system/sysgroup.m, |
|
5067 control/system/sysmult.m, control/system/sysprune.m, |
|
5068 control/system/sysreorder.m, control/system/sysscale.m, |
|
5069 control/system/syssetsignals.m, control/system/sysupdate.m, |
|
5070 control/system/tf2ss.m, control/system/tf2sys.m, |
|
5071 control/system/zp2ss.m, control/system/zp2sys.m, |
|
5072 control/util/axis2dlim.m, control/util/prompt.m, |
|
5073 control/util/zgfmul.m, control/util/zginit.m, |
|
5074 control/util/__zgpbal__.m, control/util/zgscal.m: |
|
5075 Use @var, @strong, @command, @math, @acronym, @table and @cite |
|
5076 in doc strings. |
|
5077 |
|
5078 * control/base/bode_bounds.m, control/base/ctrb.m, control/base/dre.m, |
|
5079 control/base/dgram.m, control/base/dlyap.m, control/base/ltifr.m, |
|
5080 control/base/nyquist.m, control/base/obsv.m, control/base/tzero.m, |
|
5081 control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, |
|
5082 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
|
5083 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, |
|
5084 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, |
|
5085 control/hinf/wgt1o.m, control/obsolete/syschnames.m, |
|
5086 control/system/c2d.m, control/system/fir2sys.m, |
|
5087 control/system/is_stabilizable.m, control/system/jet707.m, |
|
5088 control/system/ord2.m, control/system/ss2tf.m, control/system/tf2ss.m, |
|
5089 control/util/zgshsr.m, polynomial/polyout.m: |
|
5090 New @tex section(s) in doc strings for better formating of printed |
|
5091 output. |
|
5092 |
|
5093 * control/base/__freqresp__.m, control/base/nyquist.m, |
|
5094 control/base/__stepimp__.m, control/hinf/hinfdemo.m, |
|
5095 control/obsolete/syschnames.m, control/system/sysprune.m: |
|
5096 Use proper double quote marks for TeX. |
|
5097 |
|
5098 * control/base/DEMOcontrol.m: Add missing ; |
|
5099 |
|
5100 * control/base/nichols.m, control/base/rlocus.m, |
|
5101 control/obsolete/minfo.m, control/system/is_digital.m, |
|
5102 control/system/ss2zp.m, control/system/sysmin.m, |
|
5103 control/system/tf2zp.m, control/util/sortcom.m: |
|
5104 Convert documentation to use or more completely use Texinfo. |
|
5105 |
|
5106 * control/base/rlocus.m, control/hinf/dhinfdemo.m, |
|
5107 control/hinf/hinfdemo.m, control/system/ord2.m, |
|
5108 control/system/parallel.m, control/system/ss2tf.m, |
|
5109 control/system/starp.m: Use "@group ... @end group" to avoid ascii |
|
5110 art splitting over a page boundary. |
|
5111 |
|
5112 * control/hinf/dgkfdemo.m, control/hinf/dhinfdemo.m, |
|
5113 control/hinf/h2norm.m, control/hinf/h2syn.m, control/hinf/hinf_ctr.m, |
|
5114 control/hinf/hinfdemo.m, control/hinf/hinfnorm.m, |
|
5115 control/hinf/hinfsyn_chk.m, control/hinf/hinfsyn.m, |
|
5116 control/hinf/wgt1o.m, control/system/buildssic.m: |
|
5117 Use {\cal H}_\infty for H-infinity and likewise for H-2 to |
|
5118 the TeX documentation. |
|
5119 |
|
5120 * control/system/is_stabilizable.m: |
|
5121 Add Copyright so that help is displayed correctly. |
|
5122 |
|
5123 * special-matrix/vander.m: Octave indexes start at 1. |
|
5124 |
5011
|
5125 2004-09-21 David Bateman <dbateman@free.fr> |
|
5126 |
|
5127 * general/rotdim.m: New function for rotation of an N-d array in an |
|
5128 arbitrary plane. |
|
5129 |
|
5130 * general/flipdim.m: New function to flip an N-d array about an |
|
5131 arbitrary axis. |
|
5132 |
5003
|
5133 2004-09-15 David Bateman <dbateman@free.fr> |
|
5134 |
|
5135 * general/bitget.m: Replace Bmax, which is undefined with bitmax |
|
5136 |
4992
|
5137 2004-09-15 John W. Eaton <jwe@octave.org> |
|
5138 |
|
5139 * strings/strcmp.m: Fix typo in cell/string array case. |
4993
|
5140 Use iscellstr to check for cells rather than iscell. |
|
5141 Improve diagnostics for invalid args. |
4992
|
5142 |
4983
|
5143 2004-09-10 David Bateman <dbateman@free.fr> |
|
5144 |
|
5145 * statistics/distributions/binomial_rnd.m: Fix error for scalar n |
|
5146 and p with n > 1, and fix for matrix n and p with n == 1. |
|
5147 |
|
5148 * statistics/distributions/poisson_rnd.m: Fix for matrix length, |
|
5149 due to row vs. column vector operations. |
|
5150 |
4964
|
5151 2004-09-03 David Bateman <dbateman@free.fr> |
|
5152 |
|
5153 * general/repmat.m: Fix to allow logical classes. |
|
5154 |
4950
|
5155 2004-08-31 John W. Eaton <jwe@octave.org> |
|
5156 |
|
5157 * general/isa.m: New function, from Octave-forge. |
|
5158 |
|
5159 2004-08-31 David Bateman <dbateman@free.fr> |
|
5160 |
|
5161 * general/bitcmp.m, general/bitget.m, general/bitset.m: Remove |
|
5162 limitation on the use of int64 and uint64 types, and the use |
|
5163 of the eval. |
|
5164 |
|
5165 * general/bitset.m: Remove superfluous cast to return type, as bug |
|
5166 in .^ with integer types is fixed. |
|
5167 |
|
5168 * general/repmat.m: Adapt to allow integer types. |
4945
|
5169 |
|
5170 2004-08-31 Paul Kienzle <pkienzle@users.sf.net> |
|
5171 |
|
5172 * plot/axis.m: Don't reset axes when querying them. |
|
5173 |
4942
|
5174 2004-08-27 David Bateman <dbateman@free.fr> |
|
5175 |
|
5176 * statistics/base/ranks.m: Handle non-consecutive ties. |
|
5177 Eliminate loop. |
|
5178 |
4918
|
5179 2004-07-27 David Bateman <dbateman@free.fr> |
|
5180 |
|
5181 * general/num2str.m: Also insert spaces in output when precision |
|
5182 argument is supplied. |
|
5183 |
4915
|
5184 2004-07-23 David Bateman <dbateman@free.fr> |
|
5185 |
|
5186 * general/bitcmp.m, general/bitget.m, general/bitset.m: New functions. |
|
5187 |
4911
|
5188 2004-07-22 Etienne Grossmann <etienne@cs.uky.edu> |
|
5189 |
|
5190 * general/sub2ind.m: Make reshaping index list unnecessary. |
|
5191 |
|
5192 2004-07-22 Paul Kienzle <pkienzle@users.sf.net> |
|
5193 |
|
5194 * miscellaneous/unix.m: Fix doc string. |
|
5195 |
|
5196 2004-07-22 Stefan van der Walt <stefan@sun.ac.za> |
|
5197 |
|
5198 * plot/figure.m: Clarification of documentation. |
|
5199 |
|
5200 * image/imshow.m: Warn for complex images. |
|
5201 Only estimate colourmap for images in [0, 65536]. |
|
5202 |
|
5203 2004-07-22 David Bateman <dbateman@free.fr> |
|
5204 |
|
5205 * general/num2str.m: Fix the case of an all zero input. |
|
5206 |
4906
|
5207 2004-06-22 Etienne Grossmann <etienne@cs.uky.edu> |
|
5208 |
|
5209 * general/ind2sub.m: Doc fix. |
|
5210 |
4900
|
5211 2004-06-08 John W. Eaton <jwe@octave.org> |
|
5212 |
|
5213 * statistics/tests/kolmogorov_smirnov_test.m: Use func2str to |
|
5214 convert function handle to string for eval. |
|
5215 |
4898
|
5216 2004-06-04 Paul Kienzle <pkienzle@users.sf.net> |
|
5217 |
|
5218 * plot/errorbar.m: Remove debugging output. |
|
5219 |
|
5220 2004-06-03 Stefan van der Walt <stefan@sun.ac.za> |
|
5221 |
|
5222 * plot/__pltopt__.m: Properly escape @ symbols in doc string. |
|
5223 |
4897
|
5224 2004-06-03 Paul Kienzle <pkienzle@users.sf.net> |
|
5225 |
4898
|
5226 * deprecated/com2str.m: Include 'i' suffix for pure imaginary numbers. |
|
5227 |
|
5228 * polynomial/polyout.m: Use parenthesis if necessary around |
|
5229 complex polynomial coefficient. |
|
5230 |
4897
|
5231 * plot/__errcomm__.m, plot/__errplot__.m: Simplify code and fix |
|
5232 the bug which causes __errplot__ to ignore the last argument. |
|
5233 |
4894
|
5234 2004-06-03 David Bateman <dbateman@free.fr> |
|
5235 |
|
5236 * general/shiftdim.m: New function based on JWE code snippet. |
|
5237 |
|
5238 * general/circdim.m: New function. |
|
5239 |
4890
|
5240 2004-05-06 David Bateman <dbateman@free.fr> |
|
5241 |
|
5242 * general/issquare.m: Fail if ndim(x) > 2. |
|
5243 |
|
5244 * linear-algebra/norm.m, linear-algebra/norm.m: Fail if ndim(x) > 2. |
|
5245 |
|
5246 * linear-alegbra/cross.m, linear-algebra/dot.m: Allow matrix and |
|
5247 N-d array arguments. Add optional dim argument to define |
|
5248 dimension along which to operate. |
|
5249 |
|
5250 * linear-algebra/dmult.m: Allow N-d arrays. |
|
5251 |
|
5252 * linear-algebra/vec.m: Use v(:) and not reshape. |
|
5253 |
4885
|
5254 2004-04-29 David Bateman <dbateman@free.fr> |
|
5255 |
|
5256 * statistics/base/ranks.m, statistics/base/run_count.m, |
|
5257 statistics/base/studentize.m, statistics/base/kurtosis.m |
|
5258 statistics/base/statistics.m, statistics/base/skewness.m |
|
5259 statistics/base/iqr.m: |
|
5260 Make N-d array aware. Allow optional argument to define the |
|
5261 dimension along which to operate. Update the documentation. |
|
5262 |
|
5263 * statistics/base/ranks.m: Change algorithm to use sort, |
|
5264 and adjust for the ties after. |
|
5265 |
|
5266 * statistics/base/run_counts.m: Change algorithm to use |
|
5267 the a combination of diff and find, rather than a for-loop. |
|
5268 |
4881
|
5269 2004-04-23 Paul Kienzle <pkienzle@users.sf.net> |
|
5270 |
|
5271 * plot/hist.m: Correctly determine cutoffs. New tests. |
|
5272 |
4878
|
5273 2004-04-23 David Bateman <dbateman@free.fr> |
|
5274 |
|
5275 * general/int2str.m: Treat only real part of argument, and treat |
|
5276 NDArrays by stacking the slices through the matrix vertically. |
|
5277 |
|
5278 * general/num2str.m: Improve format of integer matrices, and the |
|
5279 conversion of complex matrices added. Treat NDArrays by stacking |
|
5280 the slices through the matrix vertically. |
|
5281 |
|
5282 * deprecated/com2str.m: Moved here from general subdirectory. |
|
5283 |
4877
|
5284 2004-04-22 John W. Eaton <jwe@octave.org> |
|
5285 |
|
5286 * quaternion/qtransvmat.m: Use continuation characters to make |
|
5287 sure result is a matrix instead of a vector. From <aklark@atdot.it>. |
|
5288 |
4869
|
5289 2004-04-21 David Bateman <dbateman@free.fr> |
|
5290 |
5378
|
5291 * elfun/lcm.m: Make N-d aware. |
4870
|
5292 |
4869
|
5293 * general/diff.m: Make the code N-d array aware. Allow an |
|
5294 optional argument to define the dimension along which to perform |
|
5295 the differences and allow the order of the differences to be larger |
|
5296 than the dimension itself. |
|
5297 |
|
5298 * general/rot90.m, general/fliplr.m, general/flipud.m: Limit the |
|
5299 use of these functions to 1- and 2-d arrays. |
|
5300 |
4863
|
5301 2004-04-16 John W. Eaton <jwe@octave.org> |
|
5302 |
|
5303 * elfun/gcd.m: Delete. |
|
5304 |
4862
|
5305 2004-04-15 David Bateman <dbateman@free.fr> |
|
5306 |
|
5307 * set/create_set.m, general/is_duplicate_entry.m: Make N-d array aware. |
|
5308 |
|
5309 * general/shift.m, general/prepad.m, general/postpad.m: Make N-d |
|
5310 array aware and and optional argument for the dimension along |
|
5311 which to operate. |
|
5312 |
5378
|
5313 * signal/unwrap.m: Make N-d array aware and fix optional |
4862
|
5314 argument for the dimension to be consistent with other N-d array |
|
5315 functions. |
|
5316 |
4860
|
5317 2004-04-08 David Bateman <dbateman@free.fr> |
|
5318 |
|
5319 * statistics/distributions/discrete_cdf.m, |
|
5320 statistics/distributions/discrete_inv.m, |
|
5321 statistics/distributions/discrete_pdf.m, |
|
5322 statistics/distributions/discrete_rnd.m, |
|
5323 statistics/distributions/exponential_cdf.m, |
|
5324 statistics/distributions/exponential_inv.m, |
|
5325 statistics/distributions/exponential_pdf.m, |
|
5326 statistics/distributions/exponential_rnd.m, |
|
5327 statistics/distributions/f_cdf.m, |
|
5328 statistics/distributions/f_inv.m, |
|
5329 statistics/distributions/f_pdf.m, |
|
5330 statistics/distributions/f_rnd.m, |
|
5331 statistics/distributions/geometric_cdf.m, |
|
5332 statistics/distributions/geometric_inv.m, |
|
5333 statistics/distributions/geometric_pdf.m, |
|
5334 statistics/distributions/geometric_rnd.m, |
|
5335 statistics/distributions/hypergeometric_rnd.m, |
|
5336 statistics/distributions/kolmogorov_smirnov_cdf.m, |
|
5337 statistics/distributions/laplace_cdf.m, |
|
5338 statistics/distributions/laplace_inv.m, |
|
5339 statistics/distributions/laplace_pdf.m, |
|
5340 statistics/distributions/laplace_rnd.m, |
|
5341 statistics/distributions/logistic_inv.m, |
|
5342 statistics/distributions/logistic_rnd.m, |
|
5343 statistics/distributions/lognormal_cdf.m, |
|
5344 statistics/distributions/lognormal_inv.m, |
|
5345 statistics/distributions/lognormal_pdf.m, |
|
5346 statistics/distributions/lognormal_rnd.m, |
|
5347 statistics/distributions/pascal_cdf.m, |
|
5348 statistics/distributions/pascal_inv.m, |
|
5349 statistics/distributions/pascal_pdf.m, |
|
5350 statistics/distributions/pascal_rnd.m, |
|
5351 statistics/distributions/poisson_cdf.m, |
|
5352 statistics/distributions/poisson_inv.m, |
|
5353 statistics/distributions/poisson_pdf.m, |
|
5354 statistics/distributions/poisson_rnd.m, |
|
5355 statistics/distributions/t_cdf.m, |
|
5356 statistics/distributions/t_inv.m, |
|
5357 statistics/distributions/t_pdf.m, |
|
5358 statistics/distributions/t_rnd.m, |
|
5359 statistics/distributions/weibull_cdf.m, |
|
5360 statistics/distributions/weibull_inv.m, |
|
5361 statistics/distributions/weibull_pdf.m, |
|
5362 statistics/distributions/weibull_rnd.m: |
|
5363 Allow N-d arrays. |
|
5364 |
|
5365 * statistics/distributions/discrete_inv.m: Fix bug in indexing, |
|
5366 that results in NaN in places where it should not have had. |
|
5367 |
|
5368 * statistics/distributions/discrete_rnd.m: New argument formats to |
|
5369 allow creating arbitrary matrices, compatiable with the other |
5583
|
5370 *_rnd.m functions. Maintain compatibility with previous format. |
4860
|
5371 |
|
5372 * statistics/distributions/empirical_rnd.m: New argument formats |
|
5373 to allow creating arbitrary matrices, compatiable with the other |
5583
|
5374 *_rnd.m functions. Maintain compatibility with previous |
4860
|
5375 format. Allow N-d arrays. |
|
5376 |
|
5377 * statistics/distributions/hypergeometric_cdf.m, |
|
5378 statistics/distributions/hypergeometric_inv.m, |
|
5379 statistics/distributions/hypergeometric_pdf.m, |
|
5380 statistics/distributions/wiener_rnd.m: |
|
5381 Error for non-scalar arguments. |
|
5382 |
|
5383 * statistics/distributions/pascal_rnd.m: |
|
5384 Correct for n = 1 bug, where all elements were equal. |
|
5385 |
4849
|
5386 2004-04-06 David Bateman <dbateman@free.fr> |
|
5387 |
4854
|
5388 * general/common_size.m, miscellaneous/bincoeff.m, |
|
5389 statistics/distributions/beta_cdf.m, |
|
5390 statistics/distributions/beta_inv.m, |
|
5391 statistics/distributions/beta_pdf.m, |
|
5392 statistics/distributions/beta_rnd.m, |
|
5393 statistics/distributions/binomial_cdf.m, |
|
5394 statistics/distributions/binomial_inv.m, |
|
5395 statistics/distributions/binomial_pdf.m, |
|
5396 statistics/distributions/binomial_rnd.m, |
|
5397 statistics/distributions/cauchy_cdf.m, |
|
5398 statistics/distributions/cauchy_inv.m, |
|
5399 statistics/distributions/cauchy_pdf.m, |
|
5400 statistics/distributions/cauchy_rnd.m, |
|
5401 statistics/distributions/chisquare_cdf.m, |
|
5402 statistics/distributions/chisquare_inv.m, |
|
5403 statistics/distributions/chisquare_pdf.m, |
|
5404 statistics/distributions/chisquare_rnd.m, |
|
5405 statistics/distributions/gamma_cdf.m, |
|
5406 statistics/distributions/gamma_inv.m, |
|
5407 statistics/distributions/gamma_pdf.m, |
|
5408 statistics/distributions/gamma_rnd.m, |
|
5409 statistics/distributions/normal_cdf.m, |
|
5410 statistics/distributions/normal_inv.m, |
|
5411 statistics/distributions/normal_pdf.m, |
|
5412 statistics/distributions/normal_rnd.m, |
|
5413 statistics/distributions/stdnormal_cdf.m, |
|
5414 statistics/distributions/stdnormal_pdf.m, |
|
5415 statistics/distributions/stdnormal_rnd.m, |
|
5416 statistics/distributions/uniform_cdf.m, |
|
5417 statistics/distributions/uniform_inv.m, |
|
5418 statistics/distributions/uniform_pdf.m, |
|
5419 statistics/distributions/uniform_rnd.m: |
|
5420 Allow the inputs to be N-d arrays. |
|
5421 |
4852
|
5422 * statistics/base/var.m: Update for N-d arrays. Allow dimension arg. |
|
5423 * statistics/base/median.m: Likewise. |
4849
|
5424 |
4844
|
5425 2004-04-02 David Bateman <dbateman@free.fr> |
|
5426 |
|
5427 * statistics/base/std.m: Allow optional args for type and dim. |
4847
|
5428 * statistics/base/center.m, statistics/base/meansq.m, |
|
5429 statistics/base/moment.m, statistics/base/range.m: |
4852
|
5430 Update for N-d arrays. |
4844
|
5431 * signal/fftshift.m: Fix dimensioning error. |
|
5432 |
|
5433 * statistics/base/std.m: Use repmat not ones(nr,1)*mean to allow |
4852
|
5434 N-d arrays. |
4844
|
5435 |
4852
|
5436 * general/mod.m, general/mod.m: Allow N-d arrays with one scalar arg. |
|
5437 |
|
5438 * signal/fftshift.m: Update for N-d arrays, allow optional dim arg. |
4844
|
5439 |
4852
|
5440 * specfun/erfinv.m, general/repmat.m: Update for N-d arrays. |
4844
|
5441 |
|
5442 * control/base/bode.m, control/base/lqg.m, control/system/ss2sys.m, |
|
5443 control/system/cellidx.m, control/system/dmr2d.m control/system/ss.m, |
|
5444 control/system/sysprune.m: Doc update for usage of cell arrays. |
|
5445 |
|
5446 * control/system/sysidx.m: Use cellidx and not listidx. |
|
5447 |
4841
|
5448 2004-03-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5449 |
|
5450 * plot/__pltopt1__.m: Always add title clause to plot command with |
|
5451 default of "" (so it is off unless explicitly set by the user). |
|
5452 |
4836
|
5453 2004-03-12 Stefan van der Walt <stefan@sun.ac.za> |
|
5454 |
|
5455 * image/imshow.m: Accept "truesize" argument. |
|
5456 Ignore current colormap. New tests and demos. |
|
5457 |
4834
|
5458 2004-03-10 Volker Kuhlmann <VolkerKuhlmann@gmx.de> |
|
5459 |
|
5460 * signal/sinewave.m: Allow N to default to M. |
|
5461 |
4826
|
5462 2004-03-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5463 |
|
5464 * signal/unwrap.m: Use "isempty (tol)" instead of "tol == []". |
|
5465 |
4818
|
5466 2004-03-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5467 |
|
5468 * general/deal.m: New function. |
4819
|
5469 Add tests from Paul Kienzle. |
4818
|
5470 |
4811
|
5471 2004-03-03 Stefan van der Walt <stefan@sun.ac.za> |
|
5472 |
|
5473 * plot/hist.m: Compute histogram correctly for n>=30. |
|
5474 |
5095
|
5475 2004-03-02 Paul Kienzle <pkienzle@users.sf.net> |
4807
|
5476 |
|
5477 * signal/sinc.m: Use i(:) instead of i when checking for any nonzeros. |
|
5478 |
4806
|
5479 2004-03-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5480 |
|
5481 * miscellaneous/horzcat.m: Delete. |
|
5482 * miscellaneous/vertcat.m: Delete. |
|
5483 |
4790
|
5484 2004-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5485 |
|
5486 * plot/figure.m: Also look for GNUTERM in the environment and use |
|
5487 that if it is set (for OS X). From Per Persson <persquare@mac.com>. |
|
5488 |
4789
|
5489 2004-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5490 |
|
5491 * control/base/__stepimp__.m: Only call clearplot if we will be |
|
5492 doing multiple plots in the same gnuplot frame. |
|
5493 |
4780
|
5494 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5495 |
|
5496 * control/system/__sysconcat__.m, control/system/__tfl__.m, |
|
5497 control/system/cellidx.m, control/system/ss.m, |
|
5498 control/system/tf.m, control/system/zp.m: New functions. |
|
5499 |
4778
|
5500 2004-02-16 Glenn Golden <gdg@zplane.com> |
|
5501 |
|
5502 * statistics/distributions/discrete_inv.m: |
|
5503 Reduce memory requirements. |
|
5504 |
4772
|
5505 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5506 |
|
5507 * plot/__errcomm__.m: Fix thinko in previous change. |
|
5508 From Teemu Ikonen <tpikonen@pcu.helsinki.fi>. |
|
5509 |
4771
|
5510 2004-02-16 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
|
5511 |
|
5512 * control/base/__bodquist__.m, control/base/__stepimp__.m, |
|
5513 control/base/analdemo.m, control/base/bddemo.m, |
|
5514 control/base/bode.m, control/base/dre.m, control/base/frdemo.m, |
|
5515 control/base/lqg.m, control/base/nyquist.m, control/base/place.m, |
|
5516 control/base/rldemo.m, control/base/rlocus.m, |
|
5517 control/base/tzero.m, control/hinf/dgkfdemo.m, |
|
5518 control/hinf/dhinfdemo.m, control/hinf/h2syn.m, |
|
5519 control/hinf/hinf_ctr.m, control/hinf/hinfsyn.m, |
|
5520 control/hinf/wgt1o.m, control/obsolete/dlqg.m, |
|
5521 control/obsolete/packsys.m, control/obsolete/series.m, |
|
5522 control/system/__sysdefioname__.m, |
|
5523 control/system/__sysdefstname__.m, control/system/__sysgroupn__.m, |
|
5524 control/system/__tf2sysl__.m, control/system/buildssic.m, |
|
5525 control/system/c2d.m, control/system/d2c.m, |
|
5526 control/system/dmr2d.m, control/system/fir2sys.m, |
|
5527 control/system/is_signal_list.m, control/system/is_siso.m, |
|
5528 control/system/jet707.m, control/system/listidx.m, |
|
5529 control/system/moddemo.m, control/system/ord2.m, |
|
5530 control/system/packedform.m, control/system/parallel.m, |
|
5531 control/system/ss2sys.m, control/system/sys2tf.m, |
|
5532 control/system/sys2zp.m, control/system/sysadd.m, |
|
5533 control/system/sysappend.m, control/system/sysconnect.m, |
|
5534 control/system/syscont.m, control/system/sysdimensions.m, |
|
5535 control/system/sysdisc.m, control/system/sysdup.m, |
|
5536 control/system/sysgetsignals.m, control/system/sysgettype.m, |
|
5537 control/system/sysgroup.m, control/system/sysmin.m, |
|
5538 control/system/sysmult.m, control/system/sysprune.m, |
|
5539 control/system/sysrepdemo.m, control/system/sysscale.m, |
|
5540 control/system/syssetsignals.m, control/system/syssub.m, |
|
5541 control/system/sysupdate.m, control/system/tf2sys.m, |
|
5542 control/system/ugain.m, control/system/zp2ss.m, |
|
5543 control/system/zp2sys.m, control/util/__outlist__.m, |
|
5544 control/util/__zgpbal__.m, control/util/strappend.m: |
|
5545 Use cell arrays instead of lists. |
|
5546 |
4723
|
5547 2004-01-23 Stefan van der Walt <stefan@sun.ac.za> |
|
5548 |
|
5549 * plot/bar.m: Increase size of cutoff vector from xlen-1 to xlen |
|
5550 so that bar (1, 1) will work. |
|
5551 |
4710
|
5552 2004-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5553 |
4717
|
5554 * plot/__errcomm__.m: Cope with nargin now being a function. |
|
5555 * plot/__errplot__.m: Likewise. |
|
5556 * plot/__plt__.m: Likewise. |
|
5557 * plot/plot_border.m: Likewise. |
|
5558 |
4710
|
5559 * Makefile.in (distclean, maintainer-clean): Remove DOCSTRINGS, |
|
5560 not $(DOCSTRINGS). |
|
5561 |
4706
|
5562 2004-01-21 Quentin Spencer <qspencer@ieee.org> |
|
5563 |
|
5564 * linear-algebra/rank.m: Allow rank ([]) to return 0, same as |
|
5565 rank ([], tol). |
|
5566 |
4691
|
5567 2004-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5568 |
4692
|
5569 * elfun/acot.m: Return atan (1./z). |
|
5570 From Gregory Vanuxem <g.vanuxem@wanadoo.fr>. |
|
5571 |
4691
|
5572 * miscellaneous/dir.m: New file. |
|
5573 |
|
5574 * general/num2str.m: Use "%d" as format if values are ints with |
|
5575 magnitude less than 1e10. |
|
5576 |
|
5577 2004-01-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5578 |
|
5579 * general/num2str.m: If single arg is string, return it. |
|
5580 |
|
5581 * miscellaneous/not.m: New file. |
|
5582 |
|
5583 * miscellaneous/unix.m: New file. |
|
5584 |
|
5585 * miscellaneous/isunix.m: New file. |
|
5586 * miscellaneous/ispc.m: New file. |
|
5587 |
|
5588 * miscellaneous/computer.m: New file. |
|
5589 |
|
5590 * miscellaneous/delete.m: New file. |
|
5591 |
4689
|
5592 2004-01-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5593 |
|
5594 * statistics/tests/kolmogorov_smirnov_test_2.m: Fix test for ties. |
|
5595 |
|
5596 2004-01-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5597 |
|
5598 * miscellaneous/path.m: Handle DEFAULT_LOADPATH substitution. |
|
5599 Always return substituted version of LOADPATH if nargout != 0. |
|
5600 |
4685
|
5601 2003-12-21 Schloegl Alois <alois.schloegl@tugraz.at> |
|
5602 |
|
5603 * miscellaneous/fullfile.m: If filename is empty, set it to "." |
|
5604 before continuing. |
|
5605 |
|
5606 * miscellaneous/fileparts.m: Allow name to start with ".". |
|
5607 |
4677
|
5608 2003-12-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5609 |
|
5610 * general/ind2sub.m: New file. |
|
5611 * general/sub2ind.m: New file. |
|
5612 |
4675
|
5613 2003-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5614 |
|
5615 * control/system/zp2ss.m: Don't save and restore |
|
5616 warn_empty_list_elements. |
|
5617 |
|
5618 2003-12-15 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
|
5619 |
6778
|
5620 * control/system/zp2ss.m: Correct definition of pure gain system. |
4675
|
5621 |
4673
|
5622 2003-12-10 Quentin Spencer <qspencer@ieee.org> |
|
5623 |
|
5624 * statistics/base/mean.m: Remove special case for row vectors. |
|
5625 |
4637
|
5626 2003-11-19 Quentin Spencer <qspencer@ieee.org> |
|
5627 |
|
5628 * signal/freqz_plot.m: Save and restore automatic_replot too. |
|
5629 |
4631
|
5630 2003-11-18 Danilo Piazzalunga <danilopiazza@libero.it> |
|
5631 |
|
5632 * statistics/base/iqr.m: Handle matrices. |
|
5633 |
4630
|
5634 2003-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5635 |
|
5636 * general/issymmetric.m: Don't fail if norm (x) == 0. |
|
5637 |
4629
|
5638 2003-11-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5639 |
|
5640 * miscellaneous/path.m: Fix thinko in previous change. |
|
5641 |
4609
|
5642 2003-11-14 Gabriele Pannocchia <g.pannocchia@ing.unipi.it> |
|
5643 |
4629
|
5644 * control/base/dare.m: Check positive (semi)definiteness and |
|
5645 dimensions of r (and q). |
|
5646 * control/base/dlqr.m: Check stabilizability of (A,B), |
|
5647 detectability of (A,Q), and whether (A,Q) has non minimal modes |
|
5648 near unit circle. |
4611
|
5649 |
|
5650 * control/system/is_detectable.m: Use Hautus Lemma. |
|
5651 Correct the behavior for discrete-time systems. |
|
5652 * control/system/is_stabilizable.m: Likewise. |
|
5653 |
4609
|
5654 * linear-algebra/krylov.m: Return H = [] in Vnrm == 0 case. |
|
5655 |
|
5656 * linear-algebra/krylovb.m: Fix typo in usage message. |
|
5657 |
4610
|
5658 * general/isdefinite.m: New function. |
|
5659 |
4567
|
5660 2003-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5661 |
|
5662 * general/reshape: Delete. |
|
5663 |
4559
|
5664 2003-10-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5665 |
|
5666 * general/numel.m: Delete. |
|
5667 |
4535
|
5668 2003-10-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5669 |
4536
|
5670 * miscellaneous/horzcat.m, miscellaneous/vartcat.m: New files. |
|
5671 |
|
5672 * deprecated/isstr.m: New file. |
4535
|
5673 |
4529
|
5674 2003-10-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5675 |
|
5676 * plot/__axis_label__.m, plot/xlabel.m, plot/ylabel.m, |
|
5677 plot/zlabel.m, plot/title.m: Return a value if nargout > 0. |
|
5678 |
4525
|
5679 2003-10-02 Quentin Spencer <qspencer@ieee.org> |
|
5680 |
|
5681 * statistics/base/mean.m: Fix missing semicolon problem. |
|
5682 |
4503
|
5683 2003-09-08 Al Niessner <Al.Niessner@jpl.nasa.gov> |
|
5684 |
|
5685 * plot/subplot.m: New global variable, __multiplot_scale__. |
|
5686 |
4492
|
5687 2003-08-29 David Castelow <DCastelow@Airspan.com> |
|
5688 |
|
5689 * strings/dec2base.m, strings/dec2bin.m, strings/dec2hex.m: |
|
5690 Allow optional length argument. |
|
5691 |
4491
|
5692 2003-08-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5693 |
|
5694 * polynomial/polyfit.m: Avoid calling flipud. |
|
5695 From Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.ac.be>. |
|
5696 Return structure as second output value for improved Matlab |
|
5697 compatibility. |
|
5698 |
4476
|
5699 2003-07-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5700 |
4478
|
5701 * linear-algebra/cond.m: Behave as though old built-in variable |
|
5702 propagate_empty_matrices is always 1. Also handle empty matrices |
|
5703 with one non-zero dimension. |
|
5704 |
4476
|
5705 * miscellaneous/dump_prefs.m: Add warn_separator_insert and |
|
5706 warn_single_quote_string to the list. |
4478
|
5707 Delete whitespace_in_literal_matrix and propagate_empty_matrices |
|
5708 from the list. |
4476
|
5709 |
5095
|
5710 2003-07-25 Paul Kienzle <pkienzle@users.sf.net> |
4469
|
5711 |
|
5712 * signal/autocov.m: Transpose result of conj because diag returns |
|
5713 a column vector, not a row vector. |
|
5714 |
|
5715 * audio/playaudio.m, audio/record.m, image/image.m, |
|
5716 miscellaneous/bug_report.m: Protect spaces in filenames |
|
5717 with quotes. |
|
5718 |
4466
|
5719 2003-07-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5720 |
4468
|
5721 * io/printf.m, io/puts.m: Delete. |
|
5722 |
4466
|
5723 * miscellaneous/dump_prefs.m: Delete define_all_return_values and |
|
5724 default_return_value from the list. |
|
5725 Add warn_undefined_return_values to the list. |
|
5726 |
|
5727 |
4464
|
5728 2003-07-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5729 |
|
5730 * miscellaneous/dump_prefs.m: Delete default_global_variable_value |
|
5731 and initialize_global_variables from the list. |
|
5732 |
4460
|
5733 2003-07-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5734 |
4463
|
5735 * image/colormap.m: Don't save and restore default_eval_print_flag. |
|
5736 |
|
5737 * miscellaneous/dump_prefs.m: Delete default_eval_print_flag. |
|
5738 |
|
5739 * control/util/zgshsr.m: Use x OP= y instead of x = x OP y. |
|
5740 * control/system/sys2fir.m: Likewise. |
|
5741 |
|
5742 * control/system/is_siso.m: Use && instead of & where appropriate. |
|
5743 * control/system/__tf2sysl__.m: Likewise. |
|
5744 |
|
5745 * control/system/__tf2sysl__.m: Use end instead of length(X). |
|
5746 |
|
5747 * control/freqchkw.m: Use %-escapes for error instead of num2str |
|
5748 and [] concatenation. |
|
5749 * control/system/sys2fir.m: Likewise. |
|
5750 |
|
5751 * control/base/dgram.m, control/base/freqchkw.m, |
|
5752 control/base/gram.m, control/system/__abcddims__.m, |
|
5753 control/system/__sysdefstname__.m, control/system/__tf2sysl__.m, |
|
5754 control/system/is_sample.m, control/system/is_signal_list.m, |
|
5755 control/system/is_siso.m, control/system/sys2fir.m, |
|
5756 control/system/syschtsam.m, control/system/sysgettsam.m, |
|
5757 control/system/sysgettype.m, control/system/tf2zp.m, |
|
5758 control/system/ugain.m, control/util/prompt.m, |
|
5759 control/util/run_cmd.m, control/util/zgrownorm.m, |
|
5760 control/util/zgshsr.m: |
|
5761 Improve conformance to Octave coding style. |
|
5762 |
4461
|
5763 * miscellaneous/dump_prefs.m: Add warn_resize_on_reange_error to |
|
5764 the list. |
|
5765 Delete resize_on_range_error from the list. |
|
5766 |
4460
|
5767 * control/base/pzmap.m, control/base/place.m, |
|
5768 control/base/__freqresp__.m, control/system/sysappend.m, |
|
5769 control/system/syscont.m, control/system/sysdisc.m, |
|
5770 control/system/sysgroup.m, control/system/tfout.m, |
|
5771 control/system/zp2ss.m, control/system/zpout.m, |
|
5772 control/util/__outlist__.m, signal/arma_rnd.m, general/shift.m, |
|
5773 strings/strcat.m: Save and restore warn_empty_list_elements, not |
|
5774 empty_list_elements_ok. |
|
5775 |
|
5776 * miscellaneous/dump_prefs.m: Add warn_empty_list_elements to the list. |
|
5777 Delete empty_list_elements_ok from the list. |
|
5778 |
4457
|
5779 2003-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5780 |
|
5781 * miscellaneous/dump_prefs.m: Include warn_neg_dim_as_zero in the |
|
5782 list. |
|
5783 Delete treat_neg_dim_as_zero from the list. |
|
5784 |
|
5785 * strings/blanks.m: Don't check treat_neg_dim_as_zero. |
|
5786 |
4451
|
5787 2003-07-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5788 |
4455
|
5789 * general/reshape.m: Omit do_fortran_indexing from doc string (it |
|
5790 was not used in the code in any case). |
|
5791 |
|
5792 * strings/strjust.m: Temporarily set warn_fortran_indexing, not |
|
5793 do_fortran_indexing. |
|
5794 |
4452
|
5795 * statistics/base/moment.m: Temporarily set warn_str_to_num, not |
|
5796 implict_str_to_num_ok. Use unwind_protect block to do it. |
|
5797 |
4451
|
5798 * miscellaneous/dump_prefs.m: Include DEFAULT_EXEC_PATH, |
|
5799 DEFAULT_LOAD_PATH, crash_dumps_octave_core, |
4452
|
5800 sighup_dumps_octave_core, sigterm_dumps_octave_core, |
4455
|
5801 warn_imag_to_real, warn_num_to_str, warn_str_to_num, and |
|
5802 warn_fortran_indexing in the list. |
|
5803 Delete ok_to_lose_imaginary_part, implicit_num_to_str_ok, |
|
5804 implicit_str_to_num_ok, do_fortran_indexing, and |
|
5805 prefer_column_vectors from list. |
4451
|
5806 |
4440
|
5807 2003-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5808 |
|
5809 * Makefile.in (distclean, maintainer-clean): Also remove |
|
5810 gethelp$(BUILD_EXEEXT), $(DOCSTRINGS), and autom4te.cache |
|
5811 directory. |
|
5812 |
5095
|
5813 2003-06-17 Aaron A. King <king@quercus.tiem.utk.edu> |
4430
|
5814 |
|
5815 * plot/hist.m: Don't forget to define n if x is a vector. |
|
5816 |
5095
|
5817 2003-06-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4424
|
5818 |
|
5819 * miscellaneous/fileparts.m: For compatibility with Matlab, |
|
5820 return "." with extension. |
|
5821 |
4422
|
5822 2003-06-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5823 |
|
5824 * control/base/__stepimp__.m, control/base/nichols.m, |
|
5825 control/base/nyquist.m, miscellaneous/dump_prefs.m, |
|
5826 plot/bottom_title.m, plot/mplot.m, plot/multiplot.m, |
|
5827 plot/oneplot.m, plot/plot_border.m, plot/subplot.m, |
|
5828 plot/subwindow.m, plot/top_title.m, signal/freqz_plot.m: |
|
5829 Eliminate gnuplot_has_multiplot (assume it is always true). |
|
5830 |
4413
|
5831 2003-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5832 |
|
5833 * Makefile.in, image/Makefile.in, startup/Makefile.in: Handle DESTDIR. |
|
5834 |
5095
|
5835 2003-05-05 Andy Adler <adler@site.uottawa.ca> |
4407
|
5836 |
|
5837 * plot/hist.m: Improve performance by using different algorithms |
|
5838 depending on number of bins. |
|
5839 |
4404
|
5840 2003-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5841 |
|
5842 * control/system/sysadd.m: If systems are not "tf", convert before |
|
5843 adding. |
|
5844 |
5095
|
5845 2003-05-01 Paul Kienzle <pkienzle@users.sf.net> |
4403
|
5846 |
|
5847 * image/imagesc.m: Accept data limits parameter for colormap. |
|
5848 |
5095
|
5849 2003-04-11 Doug Stewart <dastew@sympatico.ca> |
4375
|
5850 |
|
5851 * control/base/__stepimp__.m: If digital impulse, reduce gain of |
|
5852 the impulse by t_step. |
|
5853 |
4373
|
5854 2003-04-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5855 |
|
5856 * control/base/__bodquist__.m: Don't convert pdbig and fdbig to |
|
5857 column vectors. |
|
5858 |
5095
|
5859 2003-03-24 Quentin Spencer <qspencer@ieee.org> |
4371
|
5860 |
|
5861 * linear-algebra/null.m: Handle empty matrix arg. |
|
5862 |
4369
|
5863 2003-03-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5864 |
|
5865 * general/shift.m: Force empty_list_elements_ok to 1. |
|
5866 |
4358
|
5867 2003-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5868 |
|
5869 * deprecated/struct_contains.m, deprecated/struct_elements.m: |
|
5870 New files. |
|
5871 |
4348
|
5872 2003-02-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5873 |
|
5874 * statistics/tests/kolmogorov_smirnov_test.m: Use str2func to make |
|
5875 function handle to pass to feval. |
|
5876 * statistics/base/qqplot.m: Likewise. |
|
5877 * statistics/base/ppplot.m: Likewise. |
|
5878 * signal/spectral_xdf.m: Likewise. |
|
5879 * signal/spectral_adf.m: Likewise. |
|
5880 |
4340
|
5881 2003-02-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5882 |
|
5883 * plot/axis.m: Avoid whitespace in literal matrix problem. |
|
5884 |
4334
|
5885 2003-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5886 |
|
5887 * linear-algebra/logm.m: New file. |
|
5888 |
5095
|
5889 2003-02-18 David Bateman <dbateman@free.fr> |
4329
|
5890 |
|
5891 * mkpkgadd: Scan C++ files as well |
|
5892 |
5095
|
5893 2003-02-13 Alois Schloegl <alois.schloegl@tugraz.at> |
4321
|
5894 |
|
5895 * strings/findstr.m: Return empty set for zero-length target. |
|
5896 |
5095
|
5897 2003-02-11 Paul Kienzle <pkienzle@users.sf.net> |
4317
|
5898 |
|
5899 * set/union.m: Preserve the orientation of inputs. |
|
5900 |
4305
|
5901 2003-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5902 |
|
5903 * general/int2str.m: Eliminate leading spaces. |
|
5904 |
4303
|
5905 2003-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5906 |
|
5907 * general/int2str.m: Do a better job with 0, Inf, and NaN, |
|
5908 |
5095
|
5909 2003-01-11 Paul Kienzle <pkienzle@users.sf.net> |
4298
|
5910 |
|
5911 * Makefile.in (gethelp$(BUILD_EXEEXT)): Pass $(BUILD_CXXFLAGS) and |
|
5912 $(BUILD_LDFLAGS) to compiler. |
|
5913 |
4295
|
5914 2003-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5915 |
|
5916 * general/num2str.m: Don't specify field width for scalars. |
|
5917 |
4292
|
5918 2003-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5919 |
|
5920 * Makefile.in (DISTFILES): Don't forget mkpkgadd. |
|
5921 |
4265
|
5922 2003-01-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5923 |
4279
|
5924 * gethelp.cc: Define __USE_STD_IOSTREAM if using Compaq C++. |
|
5925 |
4266
|
5926 * miscellaneous/tempname.m: New file. |
|
5927 |
|
5928 * miscellaneous/tempdir.m: New file. |
|
5929 |
4265
|
5930 * miscellaneous/fullfile.m: New file. |
|
5931 |
4259
|
5932 2003-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5933 |
4264
|
5934 * miscellaneous/fileparts.m: New file. |
|
5935 |
|
5936 * io/beep.m: New file. |
|
5937 |
4260
|
5938 * plot/__pltopt1__.m: Call undo_string_escapes for title part of |
|
5939 format only. |
4259
|
5940 |
4257
|
5941 2003-01-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5942 |
|
5943 * strings/strcmp.m: Handle cell arrays of strings. |
|
5944 |
4229
|
5945 2002-12-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5946 |
|
5947 * general/int2str.m: Handle matrices. |
|
5948 * general/num2str.m: Likewise. |
|
5949 Also handle optional precision, and format args. |
|
5950 |
4225
|
5951 2002-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5952 |
|
5953 * audio/Makefile.in, control/base/Makefile.in, |
|
5954 control/hinf/Makefile.in, control/obsolete/Makefile.in, |
|
5955 control/system/Makefile.in, elfun/Makefile.in, |
|
5956 finance/Makefile.in, general/Makefile.in, image/Makefile.in, |
|
5957 io/Makefile.in, linear-algebra/Makefile.in, |
|
5958 miscellaneous/Makefile.in, polynomial/Makefile.in, |
|
5959 quaternion/Makefile.in, set/Makefile.in, signal/Makefile.in, |
|
5960 specfun/Makefile.in, special-matrix/Makefile.in, |
|
5961 statistics/base/Makefile.in, statistics/distributions/Makefile.in, |
|
5962 statistics/models/Makefile.in, statistics/tests/Makefile.in, |
|
5963 strings/Makefile.in, time/Makefile.in, plot/Makefile.in, |
|
5964 deprecated/Makefile.in: Use new do-script-install and |
|
5965 do-script-uninstall macros. |
|
5966 |
|
5967 * mkpkgadd: New script. |
|
5968 |
|
5969 * plot/close.m: New file. |
|
5970 |
4184
|
5971 2002-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5972 |
|
5973 * image/image.m: Use -raw option for xv. |
|
5974 From Remy Bruno <remy.bruno@libertysurf.fr> |
|
5975 |
4172
|
5976 2002-11-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5977 |
4174
|
5978 * control/base/lsim.m: Use approximate test for step size change. |
|
5979 |
4172
|
5980 * signal/bartlett.m: Avoid row/column mismatch error. |
|
5981 |
5095
|
5982 2002-11-12 Paul Kienzle <pkienzle@users.sf.net> |
4171
|
5983 |
|
5984 * statistics/base/var.m: Use better formula for improved accuracy. |
|
5985 |
5095
|
5986 2002-11-04 Nicholas Piper <nick-octave@nickpiper.co.uk> |
4150
|
5987 |
|
5988 * control/base/lsim.m: Correct doc string. |
|
5989 |
5095
|
5990 2002-11-04 A S Hodel <a.s.hodel@Eng.Auburn.EDU> |
4150
|
5991 |
|
5992 * control/system/syssub.m: Call tf2sys with Gnum-Hnum, not Gnum+Hnum. |
|
5993 |
4148
|
5994 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
5995 |
|
5996 * plot/contour.m: Handle x and y as matrices too. |
|
5997 |
5095
|
5998 2002-11-01 Joseph P. Skudlarek <jskud@jskud.com> |
4148
|
5999 |
|
6000 * plot/contour.m: Fix error and usage messages. |
|
6001 |
4146
|
6002 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6003 |
|
6004 * plot/contour.m: Correct orientation of plot. |
|
6005 |
4139
|
6006 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6007 |
|
6008 * control/base/analdemo.m: Fix typo. |
|
6009 |
5095
|
6010 2002-10-31 Francesco Potorti` <pot@gnu.org> |
4137
|
6011 |
|
6012 * statistics/distributions/discrete_pdf.m: Fix typo. |
|
6013 |
4098
|
6014 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6015 |
|
6016 * mkdoc: Exit immediately on errors. |
|
6017 Exit with error if gethelp does not exist. |
|
6018 |
|
6019 * Makefile.in: Use $(BUILD_EXEEXT) as appropriate. |
|
6020 |
4093
|
6021 2002-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6022 |
|
6023 * Makefile.in (gethelp): Use $(BUILD_CXX), not $(CXX). |
|
6024 |
5095
|
6025 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4079
|
6026 |
|
6027 * statistics/distributions/normal_cdf.m: Handle variance == 0. |
|
6028 * statistics/distributions/normal_pdf.m: Likewise. |
|
6029 * statistics/distributions/normal_inv.m: Likewise. |
|
6030 |
5095
|
6031 2002-09-27 Paul Kienzle <pkienzle@users.sf.net> |
4077
|
6032 |
|
6033 * specfun/erfinv.m: Return NaN for NaN inputs. |
|
6034 |
5095
|
6035 2002-09-26 Jeff Cunningham <jeffrey@cunningham.net> |
4068
|
6036 |
|
6037 * statistics/base/var.m: Handle complex values. |
|
6038 |
4031
|
6039 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6040 |
|
6041 * configure.in (AC_CONFIG_FILES): Add deprecated/Makefile to the |
|
6042 list. |
|
6043 * deprecated/Makefile.in: New file. |
|
6044 |
5095
|
6045 2002-08-09 Paul Kienzle <pkienzle@users.sf.net> |
4031
|
6046 |
|
6047 * statistics/distributions/beta_cdf.m: Replace betai with betainc. |
|
6048 * statistics/distributions/binomial_cdf.m: Likewise. |
|
6049 * statistics/distributions/f_cdf.m: Likewise. |
|
6050 * statistics/distributions/t_cdf.m: Likewise. |
|
6051 |
|
6052 * miscellaneous/bincoeff.m: Replace lgamma with gammaln. |
|
6053 * specfun/beta.m: Likewise. |
|
6054 * special-matrix/invhilb.m: Likewise (but it is only in a comment). |
|
6055 * statistics/distributions/gamma_pdf.m: Likewise. |
|
6056 * statistics/distributions/poisson_pdf.m: Likewise. |
|
6057 |
|
6058 * statistics/distributions/gamma_cdf.m: replace gammai with gammainc |
|
6059 * statistics/distributions/poisson_cdf.m: Likewise. |
|
6060 |
4026
|
6061 2002-08-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6062 |
4028
|
6063 * deprecated/is_bool.m: New file. |
|
6064 * deprecated/is_complex.m: New file. |
|
6065 * deprecated/is_global.m: New file. |
|
6066 * deprecated/is_list.m: New file. |
|
6067 * deprecated/is_matrix.m: New file. |
|
6068 * deprecated/is_scalar.m: New file. |
|
6069 * deprecated/is_square.m: New file. |
|
6070 * deprecated/is_stream.m: New file. |
|
6071 * deprecated/is_struct.m: New file. |
|
6072 * deprecated/is_symmetric.m: New file. |
|
6073 * deprecated/is_vector.m: New file. |
4030
|
6074 * Change all callers of these functions to use the new names. |
4028
|
6075 |
4029
|
6076 * deprecated: New directory. |
|
6077 * Makefile.in (SUBDIRS): Add it to the list. |
|
6078 |
4026
|
6079 * general/isscalar.m: Rename from is_scalar.m. |
|
6080 * general/issquare.m: Rename from is_square.m. |
|
6081 * general/issymmetric.m: Rename from is_symmetric.m. |
|
6082 * general/isvector.m: Rename from is_vector.m. |
|
6083 |
4022
|
6084 2002-08-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6085 |
|
6086 * statistics/base/mean.m: Allow empty matrices. |
|
6087 Handle DIM arg. |
|
6088 |
5095
|
6089 2002-08-05 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4020
|
6090 |
|
6091 * plot/__errcomm__.m: If format is not specified, default to error |
|
6092 bar format. |
|
6093 |
4011
|
6094 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6095 |
|
6096 * miscellaneous/popen2.m: Use F_SETFL and O_NONBLOCK, not |
|
6097 __F_SETFL__ and __O_NONBLOCK__. |
|
6098 |
|
6099 * image/saveimage.m: Use OCTAVE_VERSION, not __OCTAVE_VERSION__. |
|
6100 * miscellaneous/bug_report.m: Likewise. |
|
6101 |
4007
|
6102 2002-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6103 |
4008
|
6104 * general/mod.m: Use isreal (x), not any (any (imag (x))). |
|
6105 * general/rem.m: Likewise. |
|
6106 |
|
6107 * plot/loglogerr.m: Use varargin instead of old style varargs. |
|
6108 * plot/semilogxerr.m: Likewise. |
4007
|
6109 * plot/semilogyerr.m: Likewise. |
|
6110 |
5095
|
6111 2002-07-25 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
4006
|
6112 |
|
6113 * plot/__errcomm__.m: New file. Common functionality for error plots. |
|
6114 * plot/loglogerr.m: New file. Double logarithm plots with errorbars. |
|
6115 * plot/semilogxerr.m: New file. Semilogarithm plots with errorbars. |
|
6116 * plot/semilogyerr.m: New file. Semilogarithm plots with errorbars |
|
6117 |
|
6118 * plot/errorbar.m: Use __errcomm__.m. |
|
6119 * plot/__errplot__.m: Minor cleanups. |
|
6120 * plot/__pltopt__.m: Handle boxxyerrorbars plot style. |
|
6121 * plot/__pltopt1__.m: Likewise. |
|
6122 |
3980
|
6123 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6124 |
3981
|
6125 * general/rem.m: Delete redundant call to usage. |
|
6126 |
3980
|
6127 * general/mod.m: Additional error checks, Texinfoize doc string. |
|
6128 |
5095
|
6129 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3980
|
6130 |
|
6131 * general/mod.m: New function. |
|
6132 |
3979
|
6133 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6134 |
|
6135 * control/system/sysmult.m: Use varargin instead of old style varargs. |
|
6136 * control/system/sysadd.m: Likewise. |
|
6137 * control/system/sysgroup.m: Likewise. |
|
6138 * control/system/syssub.m: Likewise. |
|
6139 * elfun/gcd.m: Likewise. |
|
6140 * elfun/lcm.m: Likewise. |
|
6141 * general/common_size.m: Likewise. |
|
6142 * io/printf.m: Likewise. |
|
6143 * miscellaneous/menu.m: Likewise. |
|
6144 * miscellaneous/path.m: Likewise. |
|
6145 * plot/__errplot__.m: Likewise. |
|
6146 * plot/__plt__.m: Likewise. |
|
6147 * plot/axis.m: Likewise. |
|
6148 * plot/errorbar.m: Likewise. |
|
6149 * plot/mplot.m: Likewise. |
|
6150 * plot/loglog.m: Likewise. |
|
6151 * plot/plot.m: Likewise. |
|
6152 * plot/plot_border.m: Likewise. |
|
6153 * plot/semilogx.m: Likewise. |
|
6154 * plot/semilogy.m: Likewise. |
|
6155 * plot/xlabel.m: Likewise. |
|
6156 * plot/ylabel.m: Likewise. |
|
6157 * plot/zlabel.m: Likewise. |
|
6158 * statistics/base/ppplot.m: Likewise. |
|
6159 * statistics/base/qqplot.m: Likewise. |
|
6160 * statistics/tests/bartlett_test.m: Likewise. |
|
6161 * statistics/tests/kolmogorov_smirnov_test.m: Likewise. |
|
6162 * statistics/tests/kruskal_wallis_test.m: Likewise. |
|
6163 * strings/str2mat.m: Likewise. |
|
6164 * strings/strcat.m: Likewise. |
|
6165 |
5095
|
6166 2002-06-27 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
3962
|
6167 |
|
6168 * statistics/distributions/gamma_pdf.m: Avoid overflow in more cases. |
|
6169 |
3924
|
6170 2002-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6171 |
|
6172 * skip-autoheader: New file, for autogen.sh. |
3925
|
6173 * Makefile.in (DISTFILES): Add it to the list. |
3924
|
6174 |
5095
|
6175 2002-04-29 Paul Kienzle <pkienzle@users.sf.net> |
3914
|
6176 |
|
6177 * general/repmat.m: New function. |
|
6178 |
5095
|
6179 2002-04-25 Paul Kienzle <pkienzle@users.sf.net> |
3911
|
6180 |
|
6181 * audio/lin2mu.m: Accept matrices and [-1,1] normalized audio. |
|
6182 Use optional parameter to specify the number of bits in the input. |
|
6183 * audio/mu2lin.m: Accept matrices, return n-bit integers or |
|
6184 floats in the range [-1,1], 2x speedup. |
|
6185 |
|
6186 * strings/index.m, strings/rindex.m: Vectorize for speed. |
|
6187 |
3910
|
6188 2002-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6189 |
|
6190 * linear-algebra/kron.m: Delete. |
|
6191 |
5095
|
6192 2002-04-24 Paul Kienzle <pkienzle@users.sf.net> |
3907
|
6193 |
|
6194 * signal/freqz.m: If nargout is zero, plot results instead of |
|
6195 returning them. |
|
6196 * signal/freqz_plot.m: New file. |
|
6197 |
5095
|
6198 2002-04-24 Bill Lash <lash@tellabs.com> |
3906
|
6199 |
5378
|
6200 * signal/unwrap.m: New file. |
3906
|
6201 |
5095
|
6202 2002-04-23 Paul Kienzle <pkienzle@users.sf.net> |
3904
|
6203 |
|
6204 * image/rgb2hsv.m: Faster, more accurate, remove the |
|
6205 divide by zero warning. |
|
6206 |
5095
|
6207 2002-04-09 Paul Kienzle <pkienzle@users.sf.net> |
3893
|
6208 |
3894
|
6209 * strings/deblank.m: Trim \0 as well as blank. |
|
6210 |
5378
|
6211 * freqz.m: Evaluate a specific range of frequencies |
3893
|
6212 expressed in radians or Hz relative to a supplied sample rate. |
|
6213 |
5095
|
6214 2002-04-04 Paul Kienzle <pkienzle@users.sf.net> |
3890
|
6215 |
|
6216 * signal/fftfilt.m: Filter columns if called with a matrix. |
|
6217 |
3891
|
6218 * strings/findstr.m: Vectorize as much as possible. |
|
6219 |
5095
|
6220 2002-04-04 Dirk Laurie <dirk@calvyn.puk.ac.za> |
3889
|
6221 |
|
6222 * special-matrix/invhilb.m: New version that is faster and more |
|
6223 accurate. |
|
6224 |
5095
|
6225 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
3887
|
6226 |
|
6227 * configure.in: Update for autoconf 2.5x. |
|
6228 |
5095
|
6229 2002-04-03 Paul Kienzle <pkienzle@users.sf.net> |
3885
|
6230 |
|
6231 * special-matrix/vander.m: Code tidy and vectorize. |
|
6232 |
5095
|
6233 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
3882
|
6234 |
3883
|
6235 * linear-algebra/cross.m: Accept nx3 and 3xn matrices, in addition |
|
6236 to vectors. Issue a warning in the case x matches y' but return a |
|
6237 column vector as Octave currently does. |
|
6238 |
3882
|
6239 * plot/contour.m: Set default number of levels for contour(x,y,z). |
|
6240 |
|
6241 * control/system/starp.m: Leave more of the documentation |
|
6242 processing to texinfo and less to the @format block. |
|
6243 |
|
6244 * image/imagesc.m: Only display image if no output is requested. |
|
6245 Code tidying. |
|
6246 |
3876
|
6247 2002-03-07 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
6248 |
|
6249 * statistics/base/center.m: Accept and return empty matrix. |
|
6250 |
3872
|
6251 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6252 |
|
6253 * specfun/erfinv.m: Fix usage message. |
|
6254 |
3869
|
6255 2002-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6256 |
|
6257 * elfun/coth.m: Use 1 ./ tanh(z) instead of cosh(z) ./ sinh(z). |
|
6258 From "Michael O'Brien" <mobrien@kento.unm.edu>. |
|
6259 |
3837
|
6260 2001-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6261 |
|
6262 * statistics/distributions/discrete_cdf.m: Downcase incorrectly |
|
6263 capitalized variable names. |
|
6264 |
3836
|
6265 2001-05-30 Jean-Francois Cardoso <cardoso@tsi.enst.fr> |
|
6266 |
|
6267 * m/image/saveimage.m: fix saving an image to Postscript format. |
|
6268 |
5095
|
6269 2001-04-18 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3814
|
6270 |
|
6271 * control/system/is_stabilizable.m: Pass a to sys2ss, not sys. |
|
6272 |
3803
|
6273 2001-02-28 Kai Habel <kai.habel@gmx.de> |
|
6274 |
3833
|
6275 * general/cart2pol.m: New file. |
|
6276 * general/pol2cart.m: New file. |
|
6277 * general/cart2sph.m: New file. |
|
6278 * general/sph2cart.m: New file. |
|
6279 * image/rgb2hsv.m: New file. |
|
6280 * image/hsv2rgb.m: New file. |
3803
|
6281 |
|
6282 2001-02-26 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
6283 |
|
6284 * plot/meshgrid.m: Avoid for loops. |
|
6285 * plot/meshdom.m: Likewise. |
|
6286 |
3801
|
6287 2001-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6288 |
|
6289 * linear-algebra/norm.m: Use sqrt instead of ^0.5. |
|
6290 |
|
6291 2001-02-22 Heinz Bauschke <bauschke@cecm.sfu.ca> |
|
6292 |
|
6293 * linear-algebra/norm.m: Use more efficient method for Frobenius |
|
6294 norm. |
|
6295 |
3792
|
6296 2001-02-09 David Livings <david.livings@asa.co.uk> |
|
6297 |
|
6298 * statistics/tests/welch_test.m: Fix typo. |
|
6299 |
|
6300 * statistics/distributions/chisquare_cdf.m: |
|
6301 Don't restrict inputs to be only positive integers. |
|
6302 * statistics/distributions/chisquare_inv.m: Likewise. |
|
6303 * statistics/distributions/chisquare_pdf.m: Likewise. |
|
6304 * statistics/distributions/chisquare_rnd.m: Likewise. |
|
6305 * statistics/distributions/f_cdf.m: Likewise. |
|
6306 * statistics/distributions/f_inv.m: Likewise. |
|
6307 * statistics/distributions/f_pdf.m: Likewise. |
|
6308 * statistics/distributions/f_rnd.m: Likewise. |
|
6309 * statistics/distributions/t_cdf.m: Likewise. |
|
6310 * statistics/distributions/t_inv.m: Likewise. |
|
6311 * statistics/distributions/t_pdf.m: Likewise. |
|
6312 * statistics/distributions/t_rnd.m: Likewise. |
|
6313 |
3790
|
6314 2001-02-08 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
6315 |
|
6316 * strings/dec2base.m: New file. |
|
6317 * strings/base2dec.m: New file. |
|
6318 * strings/strjust.m: New file. |
|
6319 * strings/dec2hex.m: Replace with version that just calls 2dec2base. |
|
6320 * strings/dec2bin.m: Likewise. |
|
6321 * strings/hex2dec.m: Replace with version that just calls base2dec. |
|
6322 * strings/bin2dec.m: Likewise. |
|
6323 |
5095
|
6324 2001-02-07 David Livings <david.livings@asa.co.uk> |
3787
|
6325 |
|
6326 * statistics/base/ppplot.m: Use gset, not set. |
|
6327 * statistics/base/qqplot.m: Likewise. |
|
6328 |
5095
|
6329 2001-02-05 Ondrej Popp <ondrej@geocities.com> |
3775
|
6330 |
|
6331 * control/system/c2d.m: Add missing endif. |
|
6332 |
3759
|
6333 2000-12-15 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
6334 |
|
6335 * strings/index.m: Return 0 if either string is empty. |
|
6336 |
|
6337 2000-12-15 Ben Sapp <bsapp@lanl.gov> |
|
6338 |
|
6339 * control/system/c2d.m: Allow option of matched pole/zero |
|
6340 equivalent for conversion. |
|
6341 |
|
6342 2000-12-15 Matthew W. Roberts <matt@lehi.tamu.edu> |
|
6343 |
|
6344 * strings/findstr.m: Return empty matrix if search string is empty. |
|
6345 |
3757
|
6346 2000-12-15 Kai Habel <kai.habel@gmx.de> |
|
6347 |
|
6348 * saveimage.m: Do create rawbit image for black and white images, |
|
6349 but do it correctly. |
|
6350 |
3754
|
6351 2000-12-13 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
6352 |
6778
|
6353 * polynomial/deconv.m: For compatibility with Matlab, don't reduce |
|
6354 result polynomials. |
3754
|
6355 |
3748
|
6356 2000-12-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6357 |
|
6358 * image/saveimage.m: Don't try to create rawbit image. |
|
6359 |
3740
|
6360 2000-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6361 |
|
6362 * Makefile.in (bin-dist): Pass -C to $(MAKE), not -c. |
|
6363 |
5095
|
6364 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3737
|
6365 |
|
6366 * plot/contour.m: Reorder args for Matlab compatibility. |
|
6367 |
3727
|
6368 2000-10-27 Mats Jansson <mats.e.jansson@home.se> |
|
6369 |
|
6370 * set/create_set.m: Avoid empty matrix in matrix list warning. |
|
6371 |
3717
|
6372 2000-09-08 Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
|
6373 |
3718
|
6374 * plot/errorbar.m, plot/__errplot__.m: New functions. |
|
6375 |
3717
|
6376 * plot/mesh.m: Also set nologscale before plotting. |
|
6377 * plot/__pltopt1__.m: Handle xerrorbars, yerrorbars, and |
|
6378 xyerrorbars instead of just errorbars. |
|
6379 |
3714
|
6380 2000-08-25 Thomas Walter <walter@pctc.chemie.uni-erlangen.de> |
|
6381 |
|
6382 * image/image.m: Try display (from ImageMagick) first. |
|
6383 |
3709
|
6384 2000-08-01 Rolf Fabian <fabian@tu-cottbus.de> |
|
6385 |
|
6386 * plot/meshgrid.m: Use transpose to reorient vectors, not complex |
|
6387 conjugate transpose. |
|
6388 |
3705
|
6389 2000-07-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6390 |
|
6391 * strings/str2mat.m: Apply setstr to each argument. |
|
6392 |
3696
|
6393 2000-07-17 Gabriele Pannocchia <pannocchia@ing.unipi.it> |
|
6394 |
|
6395 * control/base/dkalman.m: New file. |
|
6396 * control/base/dlqe.m: Handle singular A matrix. |
|
6397 * control/base/dlqr.m: Likewise. |
|
6398 |
3695
|
6399 2000-07-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6400 |
|
6401 * strings/strcmp.m: Return 0 instead of an error if row and column |
|
6402 dimensions don't match. |
|
6403 |
3690
|
6404 2000-06-30 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
|
6405 |
|
6406 * plot/hist.m: Allow 3 argument form to work. |
|
6407 |
5095
|
6408 2000-06-27 Matthew W. Roberts <matt@lehi.tamu.edu> |
3683
|
6409 |
|
6410 * plot/plot.m: Add examples in doc string. |
|
6411 |
5095
|
6412 2000-06-08 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3679
|
6413 |
|
6414 * control/base/__stepimp__.m: Reset multiplot state when done. |
|
6415 Do the right thing even if automatic_replot is not zero. |
|
6416 Avoid failure if system has pure imaginary poles. |
|
6417 |
3674
|
6418 2000-06-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6419 |
|
6420 * general/logical.m: Return arg if it is empty. Better error |
|
6421 message for non-numeric types. |
|
6422 |
5095
|
6423 2000-05-31 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3672
|
6424 |
|
6425 * control/base/dlqe.m: Update documentation. Fix typo. Warn |
|
6426 about difference with Matlab dlqe function. |
|
6427 |
|
6428 * control/system/sysmult.m: Fix typo in argument dimensions checking. |
|
6429 |
5095
|
6430 2000-05-24 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3670
|
6431 |
|
6432 * strings/strrep.m: Fix typo. |
|
6433 |
3666
|
6434 2000-05-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6435 |
|
6436 * strings/strrep.m: Don't transpose result for case of jump > 0. |
|
6437 |
5095
|
6438 2000-05-13 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3666
|
6439 |
|
6440 * strings/strrep.m: Avoid for loop for speed. |
3667
|
6441 * plot/axis.m: Handle string options for Matlab compatibility. |
3666
|
6442 |
5095
|
6443 2000-04-04 John Smith <john@arrows.demon.co.uk> |
3656
|
6444 |
|
6445 * statistics/distributions/beta_inv.m: Provide better(?) initial |
|
6446 guess for iteration. |
|
6447 |
3651
|
6448 2000-03-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
6449 |
|
6450 * image/image.m: Allow image (A) or image (x, y, A). |
|
6451 * image/imagesc.m: Likewise. |
|
6452 |
|
6453 * image/image.m: If zoom is not supplied, or if it is an empty |
|
6454 matrix, autoscale the image. |
|
6455 |
3618
|
6456 2000-03-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6457 |
3619
|
6458 * plot/title.m, plot/bottom_title.m, plot/top_title.m: |
|
6459 Undo string escapes in text twice(!) before sending to gnuplot. |
|
6460 |
3618
|
6461 * image/saveimage.m: Add comment to file saying who created it and |
|
6462 when it was created. Suggested by Stephen Eglen |
|
6463 <stephen@cogsci.ed.ac.uk>. |
|
6464 |
5095
|
6465 2000-03-21 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
3617
|
6466 |
|
6467 * polynomial/polyreduce.m: Simplify by looking for the first |
|
6468 non-zero element rather than the last of the first set of zero |
|
6469 elements. |
|
6470 |
|
6471 * plot/__pltopt1__.m: Accept "--", "-.", and ":" line styles. |
|
6472 |
5095
|
6473 2000-03-21 Kai Habel <kahacjde@calvados.zrz.TU-Berlin.DE> |
3616
|
6474 |
|
6475 * image/saveimage.m: Swap black and white colormaps so zero is |
|
6476 displayed as black and 1 is displayed as white. |
|
6477 Fix indexing bug in ppm case. |
|
6478 |
3604
|
6479 2000-03-06 Stephen Eglen <stephen@anc.ed.ac.uk> |
|
6480 |
|
6481 * statistics/tests/kolmogorov_smirnov_test_2.m: Account for ties |
|
6482 between the two distributions (took same approach as ks.test() in R.) |
|
6483 |
3603
|
6484 2000-02-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6485 |
|
6486 * control/base/bode.m: Temporarily disable automatic_replot. |
|
6487 |
3599
|
6488 2000-02-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6489 |
3601
|
6490 * Makefile.in (clean): Also remove gethelp. |
|
6491 |
3599
|
6492 * specfun/erfinv.m: Use z_new in convergence test, not z_old. |
|
6493 |
5095
|
6494 2000-02-11 Georg Thimm <mgeorg@SGraphicsWS1.mpe.ntu.edu.sg> |
3597
|
6495 |
|
6496 * set/create_set.m: Use find to avoid while loop. |
|
6497 |
5095
|
6498 2000-02-11 Stephen Eglen <stephen@cogsci.ed.ac.uk> |
3597
|
6499 |
|
6500 * plot/hist.m: New optional third argument. |
|
6501 |
|
6502 2000-02-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6503 |
|
6504 * miscellaneous/bug_report.m: Use octave-bug script with version |
|
6505 number appended. |
|
6506 |
3575
|
6507 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6508 |
|
6509 * gethelp.cc: Sprinkle with std:: qualifier. |
|
6510 |
3498
|
6511 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6512 |
|
6513 * image/saveimage.m: Delete some debugging code. |
|
6514 |
3486
|
6515 2000-01-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6516 |
|
6517 * signal/sinc.m: Avoid reshaping. |
|
6518 |
|
6519 * image/rgb2ind.m: No longer needs to reset do_fortran_indexing. |
|
6520 * image/ind2rgb.m: Ditto. |
|
6521 * image/ind2gray.m: Ditto. |
|
6522 * general/reshape.m: Ditto. Also no longer needs to reset |
|
6523 implicit_str_to_num_ok. |
|
6524 |
3483
|
6525 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6526 |
|
6527 * miscellaneous/popen2.m: Deal with the fact that pipe now returns |
|
6528 a list of file structures, not a vector of numeric file ids. |
|
6529 |
3474
|
6530 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6531 |
3476
|
6532 * plot/__axis_label__.m: New function. |
|
6533 Undo string escapes in text twice(!) before sending to gnuplot. |
|
6534 * plot/xlabel.m: Use it. |
|
6535 * plot/ylabel.m: Ditto. |
|
6536 * plot/zlabel.m: Ditto. |
|
6537 |
3474
|
6538 * plot/mesh.m: Fix error message to reflect reality. |
|
6539 |
5095
|
6540 2000-01-24 Cyril Humbert <humbert@phobos.univ-mlv.fr> |
3473
|
6541 |
|
6542 * statistics/distributions/weibull_pdf.m: Use correct formula. |
|
6543 |
5095
|
6544 2000-01-22 Michael Reifenberger <mike@Plaut.de> |
3471
|
6545 |
|
6546 * audio/saveaudio.m: Also accept files with .ul extension. |
|
6547 * audio/loadaudio.m: Ditto. |
|
6548 * audio/playaudio.m: Ditto. |
|
6549 |
3456
|
6550 2000-01-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6551 |
|
6552 * statistics/distributions/beta_cdf.m: Texinfoize doc string. |
|
6553 * statistics/distributions/beta_inv.m: Ditto. |
|
6554 * statistics/distributions/beta_pdf.m: Ditto. |
|
6555 * statistics/distributions/beta_rnd.m: Ditto. |
|
6556 * statistics/distributions/binomial_cdf.m: Ditto. |
|
6557 * statistics/distributions/binomial_inv.m: Ditto. |
|
6558 * statistics/distributions/binomial_pdf.m: Ditto. |
|
6559 * statistics/distributions/binomial_rnd.m: Ditto. |
|
6560 * statistics/distributions/cauchy_cdf.m: Ditto. |
|
6561 * statistics/distributions/cauchy_inv.m: Ditto. |
|
6562 * statistics/distributions/cauchy_pdf.m: Ditto. |
|
6563 * statistics/distributions/cauchy_rnd.m: Ditto. |
|
6564 * statistics/distributions/chisquare_cdf.m: Ditto. |
|
6565 * statistics/distributions/chisquare_inv.m: Ditto. |
|
6566 * statistics/distributions/chisquare_pdf.m: Ditto. |
|
6567 * statistics/distributions/chisquare_rnd.m: Ditto. |
|
6568 * statistics/distributions/discrete_cdf.m: Ditto. |
|
6569 * statistics/distributions/discrete_inv.m: Ditto. |
|
6570 * statistics/distributions/discrete_pdf.m: Ditto. |
|
6571 * statistics/distributions/discrete_rnd.m: Ditto. |
|
6572 * statistics/distributions/empirical_cdf.m: Ditto. |
|
6573 * statistics/distributions/empirical_inv.m: Ditto. |
|
6574 * statistics/distributions/empirical_pdf.m: Ditto. |
|
6575 * statistics/distributions/empirical_rnd.m: Ditto. |
|
6576 * statistics/distributions/exponential_cdf.m: Ditto. |
|
6577 * statistics/distributions/exponential_inv.m: Ditto. |
|
6578 * statistics/distributions/exponential_pdf.m: Ditto. |
|
6579 * statistics/distributions/exponential_rnd.m: Ditto. |
|
6580 * statistics/distributions/f_cdf.m: Ditto. |
|
6581 * statistics/distributions/f_inv.m: Ditto. |
|
6582 * statistics/distributions/f_pdf.m: Ditto. |
|
6583 * statistics/distributions/f_rnd.m: Ditto. |
|
6584 * statistics/distributions/gamma_cdf.m: Ditto. |
|
6585 * statistics/distributions/gamma_inv.m: Ditto. |
|
6586 * statistics/distributions/gamma_pdf.m: Ditto. |
|
6587 * statistics/distributions/gamma_rnd.m: Ditto. |
|
6588 * statistics/distributions/geometric_cdf.m: Ditto. |
|
6589 * statistics/distributions/geometric_inv.m: Ditto. |
|
6590 * statistics/distributions/geometric_pdf.m: Ditto. |
|
6591 * statistics/distributions/geometric_rnd.m: Ditto. |
|
6592 * statistics/distributions/hypergeometric_cdf.m: Ditto. |
|
6593 * statistics/distributions/hypergeometric_inv.m: Ditto. |
|
6594 * statistics/distributions/hypergeometric_pdf.m: Ditto. |
|
6595 * statistics/distributions/hypergeometric_rnd.m: Ditto. |
|
6596 * statistics/distributions/kolmogorov_smirnov_cdf.m: Ditto. |
|
6597 * statistics/distributions/laplace_cdf.m: Ditto. |
|
6598 * statistics/distributions/laplace_inv.m: Ditto. |
|
6599 * statistics/distributions/laplace_pdf.m: Ditto. |
|
6600 * statistics/distributions/laplace_rnd.m: Ditto. |
|
6601 * statistics/distributions/logistic_cdf.m: Ditto. |
|
6602 * statistics/distributions/logistic_inv.m: Ditto. |
|
6603 * statistics/distributions/logistic_pdf.m: Ditto. |
|
6604 * statistics/distributions/logistic_rnd.m: Ditto. |
|
6605 * statistics/distributions/lognormal_cdf.m: Ditto. |
|
6606 * statistics/distributions/lognormal_inv.m: Ditto. |
|
6607 * statistics/distributions/lognormal_pdf.m: Ditto. |
|
6608 * statistics/distributions/lognormal_rnd.m: Ditto. |
|
6609 * statistics/distributions/normal_cdf.m: Ditto. |
|
6610 * statistics/distributions/normal_inv.m: Ditto. |
|
6611 * statistics/distributions/normal_pdf.m: Ditto. |
|
6612 * statistics/distributions/normal_rnd.m: Ditto. |
|
6613 * statistics/distributions/pascal_cdf.m: Ditto. |
|
6614 * statistics/distributions/pascal_inv.m: Ditto. |
|
6615 * statistics/distributions/pascal_pdf.m: Ditto. |
|
6616 * statistics/distributions/pascal_rnd.m: Ditto. |
|
6617 * statistics/distributions/poisson_cdf.m: Ditto. |
|
6618 * statistics/distributions/poisson_inv.m: Ditto. |
|
6619 * statistics/distributions/poisson_pdf.m: Ditto. |
|
6620 * statistics/distributions/poisson_rnd.m: Ditto. |
|
6621 * statistics/distributions/stdnormal_cdf.m: Ditto. |
|
6622 * statistics/distributions/stdnormal_inv.m: Ditto. |
|
6623 * statistics/distributions/stdnormal_pdf.m: Ditto. |
|
6624 * statistics/distributions/stdnormal_rnd.m: Ditto. |
|
6625 * statistics/distributions/t_cdf.m: Ditto. |
|
6626 * statistics/distributions/t_inv.m: Ditto. |
|
6627 * statistics/distributions/t_pdf.m: Ditto. |
|
6628 * statistics/distributions/t_rnd.m: Ditto. |
|
6629 * statistics/distributions/uniform_cdf.m: Ditto. |
|
6630 * statistics/distributions/uniform_inv.m: Ditto. |
|
6631 * statistics/distributions/uniform_pdf.m: Ditto. |
|
6632 * statistics/distributions/uniform_rnd.m: Ditto. |
|
6633 * statistics/distributions/weibull_cdf.m: Ditto. |
|
6634 * statistics/distributions/weibull_inv.m: Ditto. |
|
6635 * statistics/distributions/weibull_pdf.m: Ditto. |
|
6636 * statistics/distributions/weibull_rnd.m: Ditto. |
|
6637 * statistics/distributions/wiener_rnd.m: Ditto. |
|
6638 |
3453
|
6639 2000-01-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6640 |
|
6641 * statistics/base/values.m: Texinfoize doc string. |
|
6642 * statistics/base/var.m: Ditto. |
|
6643 * statistics/base/table.m: Ditto. |
|
6644 * statistics/base/studentize.m: Ditto. |
|
6645 * statistics/base/statistics.m: Ditto. |
|
6646 * statistics/base/spearman.m: Ditto. |
|
6647 * statistics/base/run_count.m: Ditto. |
|
6648 * statistics/base/ranks.m: Ditto. |
|
6649 * statistics/base/range.m: Ditto. |
|
6650 * statistics/base/qqplot.m: Ditto. |
|
6651 * statistics/base/probit.m: Ditto. |
|
6652 * statistics/base/ppplot.m: Ditto. |
|
6653 * statistics/base/moment.m: Ditto. |
|
6654 * statistics/base/meansq.m: Ditto. |
|
6655 * statistics/base/logit.m: Ditto. |
|
6656 * statistics/base/kendall.m: Ditto. |
|
6657 * statistics/base/iqr.m: Ditto. |
|
6658 * statistics/base/cut.m: Ditto. |
|
6659 * statistics/base/cor.m: Ditto. |
|
6660 * statistics/base/cloglog.m: Ditto. |
|
6661 * statistics/base/center.m: Ditto. |
3454
|
6662 * statistics/models/logistic_regression.m: Ditto. |
|
6663 * statistics/models/logistic_regression_derivative.m: Ditto. |
|
6664 * statistics/models/logistic_regression_likelihood.m: Ditto. |
|
6665 * statistics/tests/anova.m: Ditto. |
|
6666 * statistics/tests/bartlett_test.m: Ditto. |
|
6667 * statistics/tests/chisquare_test_homogeneity.m: Ditto. |
|
6668 * statistics/tests/chisquare_test_independence.m: Ditto. |
|
6669 * statistics/tests/cor_test.m: Ditto. |
|
6670 * statistics/tests/f_test_regression.m: Ditto. |
|
6671 * statistics/tests/hotelling_test.m: Ditto. |
|
6672 * statistics/tests/hotelling_test_2.m: Ditto. |
|
6673 * statistics/tests/kolmogorov_smirnov_test.m: Ditto. |
|
6674 * statistics/tests/kolmogorov_smirnov_test_2.m: Ditto. |
|
6675 * statistics/tests/kruskal_wallis_test.m: Ditto. |
|
6676 * statistics/tests/manova.m: Ditto. |
|
6677 * statistics/tests/mcnemar_test.m: Ditto. |
|
6678 * statistics/tests/prop_test_2.m: Ditto. |
|
6679 * statistics/tests/run_test.m: Ditto. |
|
6680 * statistics/tests/sign_test.m: Ditto. |
|
6681 * statistics/tests/t_test.m: Ditto. |
|
6682 * statistics/tests/t_test_2.m: Ditto. |
|
6683 * statistics/tests/t_test_regression.m: Ditto. |
|
6684 * statistics/tests/u_test.m: Ditto. |
|
6685 * statistics/tests/var_test.m: Ditto. |
|
6686 * statistics/tests/welch_test.m: Ditto. |
|
6687 * statistics/tests/wilcoxon_test.m: Ditto. |
|
6688 * statistics/tests/z_test.m: Ditto. |
|
6689 * statistics/tests/z_test_2.m: Ditto. |
3453
|
6690 |
3446
|
6691 2000-01-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6692 |
|
6693 * strings/bin2dec.m: Texinfoize doc string. |
3449
|
6694 * plot/__plr1__.m: Ditto. |
|
6695 * plot/__pltopt__.m: Ditto. |
|
6696 * plot/__plt__.m: Ditto. |
|
6697 * plot/__plt2vv__.m: Ditto. |
|
6698 * plot/__plr2__.m: Ditto. |
|
6699 * plot/__plr__.m: Ditto. |
|
6700 * plot/__plt1__.m: Ditto. |
|
6701 * plot/__plt2__.m: Ditto. |
|
6702 * plot/__plt2mm__.m: Ditto. |
|
6703 * plot/__plt2mv__.m: Ditto. |
|
6704 * plot/__plt2ss__.m: Ditto. |
|
6705 * miscellaneous/paren.m: Ditto. |
|
6706 * miscellaneous/comma.m: Ditto. |
|
6707 * miscellaneous/semicolon.m: Ditto. |
|
6708 * miscellaneous/path.m: Ditto. |
|
6709 * miscellaneous/list_primes.m: Ditto. |
|
6710 * miscellaneous/flops.m: Ditto. |
|
6711 * miscellaneous/dump_prefs.m: Ditto. |
|
6712 * miscellaneous/bug_report.m: Ditto. |
|
6713 * linear-algebra/dot.m: Ditto |
|
6714 * linear-algebra/dmult.m: Ditto. |
|
6715 * general/randperm.m: Ditto. |
|
6716 * general/logical.m: Ditto. |
|
6717 * general/is_duplicate_entry.m: Ditto. |
|
6718 * signal/arch_fit.m: Ditto. |
|
6719 * signal/arch_rnd.m: Ditto. |
|
6720 * signal/arch_test.m: Ditto. |
|
6721 * signal/arma_rnd.m: Ditto. |
|
6722 * signal/autocor.m: Ditto. |
|
6723 * signal/autocov.m: Ditto. |
|
6724 * signal/autoreg_matrix.m: Ditto. |
|
6725 * signal/bartlett.m: Ditto. |
|
6726 * signal/blackman.m: Ditto. |
|
6727 * signal/detrend.m: Ditto. |
|
6728 * signal/diffpara.m: Ditto. |
|
6729 * signal/durbinlevinson.m: Ditto. |
|
6730 * signal/fftconv.m: Ditto. |
|
6731 * signal/fftfilt.m: Ditto. |
|
6732 * signal/fftshift.m: Ditto. |
|
6733 * signal/fractdiff.m: Ditto. |
|
6734 * signal/freqz.m: Ditto. |
|
6735 * signal/hamming.m: Ditto. |
|
6736 * signal/hanning.m: Ditto. |
|
6737 * signal/hurst.m: Ditto. |
|
6738 * signal/periodogram.m: Ditto. |
|
6739 * signal/rectangle_lw.m: Ditto. |
|
6740 * signal/rectangle_sw.m: Ditto. |
|
6741 * signal/sinc.m: Ditto. |
|
6742 * signal/sinetone.m: Ditto. |
|
6743 * signal/sinewave.m: Ditto. |
|
6744 * signal/spectral_adf.m: Ditto. |
|
6745 * signal/spectral_xdf.m: Ditto. |
|
6746 * signal/spencer.m: Ditto. |
|
6747 * signal/stft.m: Ditto. |
|
6748 * signal/synthesis.m: Ditto. |
|
6749 * signal/triangle_lw.m: Ditto. |
|
6750 * signal/triangle_sw.m: Ditto. |
|
6751 * signal/yulewalker.m: Ditto. |
3450
|
6752 * control/util/strappend.m: Ditto. |
3451
|
6753 * control/base/nichols.m: Ditto. |
3452
|
6754 * control/system/is_signal_list.m: Ditto. |
|
6755 * control/system/listidx.m: Ditto. |
|
6756 * control/system/sysgettsam.m: Ditto. |
|
6757 * control/system/sysidx.m: Ditto. |
3446
|
6758 |
3438
|
6759 2000-01-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6760 |
|
6761 * control/system/__abcddims__.m: Rename from |
|
6762 control/system/abcddims.m, change all callers. |
|
6763 * control/base/__bodquist__.m: Likewise. |
|
6764 * control/base/__freqresp__.m: Likewise. |
|
6765 * control/util/__outlist__.m: Likewise. |
|
6766 * control/base/__stepimp__.m: Likewise. |
|
6767 * control/system/__syschnamesl__.m: Likewise. |
|
6768 * control/system/__syscont_disc__.m: Likewise. |
|
6769 * control/system/__sysdefioname__.m: Likewise. |
|
6770 * control/system/__sysdefstname__.m: Likewise. |
|
6771 * control/system/__sysgroupn__.m: Likewise. |
|
6772 * control/system/__tf2sysl__.m: Likewise. |
|
6773 * control/util/__zgpbal__.m: Likewise. |
|
6774 * control/system/__zp2ssg2__.m: Likewise. |
3495
|
6775 |
|
6776 * quaternion/demoquat.m: Add copyright notice, Texinfoize doc string. |
3452
|
6777 * quaternion/qconj.m: Ditto. |
|
6778 * quaternion/qcoordinate_plot.m: Ditto. |
|
6779 * quaternion/qderiv.m: Ditto. |
|
6780 * quaternion/qderivmat.m: Ditto. |
|
6781 * quaternion/qinv.m: Ditto. |
|
6782 * quaternion/qmult.m: Ditto. |
|
6783 * quaternion/qtrans.m: Ditto. |
|
6784 * quaternion/qtransv.m: Ditto. |
|
6785 * quaternion/qtransvmat.m: Ditto. |
|
6786 * quaternion/quaternion.m: Ditto. |
3438
|
6787 |
3436
|
6788 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6789 |
|
6790 * control/base/Makefile.in: Ditto. |
|
6791 * control/hinf/Makefile.in: New file. |
|
6792 * control/marsyas/Makefile.in: Ditto. |
|
6793 * control/obsolete/Makefile.in: Ditto. |
|
6794 * control/system/Makefile.in: Ditto. |
|
6795 * control/util/Makefile.in: Ditto. |
|
6796 |
|
6797 * strings/com2str.m: Move here from control directory. |
|
6798 |
|
6799 * control/base: New directory. |
|
6800 * control/base/DEMOcontrol.m: Move here from control directory. |
|
6801 * control/base/analdemo.m: Ditto. |
|
6802 * control/base/are.m: Ditto. |
|
6803 * control/base/bddemo.m: Ditto. |
|
6804 * control/base/bode.m: Ditto. |
|
6805 * control/base/bode_bounds.m: Ditto. |
|
6806 * control/base/bodquist.m: Ditto. |
|
6807 * control/base/controldemo.m: Ditto. |
|
6808 * control/base/ctrb.m: Ditto. |
|
6809 * control/base/damp.m: Ditto. |
|
6810 * control/base/dare.m: Ditto. |
|
6811 * control/base/dcgain.m: Ditto. |
|
6812 * control/base/dgram.m: Ditto. |
|
6813 * control/base/dlqe.m: Ditto. |
|
6814 * control/base/dlqr.m: Ditto. |
|
6815 * control/base/dlyap.m: Ditto. |
|
6816 * control/base/dre.m: Ditto. |
|
6817 * control/base/frdemo.m: Ditto. |
|
6818 * control/base/freqchkw.m: Ditto. |
|
6819 * control/base/freqresp.m: Ditto. |
|
6820 * control/base/gram.m: Ditto. |
|
6821 * control/base/impulse.m: Ditto. |
|
6822 * control/base/lqe.m: Ditto. |
|
6823 * control/base/lqg.m: Ditto. |
|
6824 * control/base/lqr.m: Ditto. |
|
6825 * control/base/lsim.m: Ditto. |
|
6826 * control/base/ltifr.m: Ditto. |
|
6827 * control/base/lyap.m: Ditto. |
|
6828 * control/base/nichols.m: Ditto. |
|
6829 * control/base/nyquist.m: Ditto. |
|
6830 * control/base/obsv.m: Ditto. |
|
6831 * control/base/place.m: Ditto. |
|
6832 * control/base/pzmap.m: Ditto. |
|
6833 * control/base/rldemo.m: Ditto. |
|
6834 * control/base/rlocus.m: Ditto. |
|
6835 * control/base/step.m: Ditto. |
|
6836 * control/base/stepimp.m: Ditto. |
|
6837 * control/base/tzero.m: Ditto. |
|
6838 * control/base/tzero2.m: Ditto. |
|
6839 |
|
6840 * control/hinf: New directory. |
|
6841 * control/hinf/dhinfdemo.m: Move here from control directory. |
|
6842 * control/hinf/h2norm.m: Ditto. |
|
6843 * control/hinf/h2syn.m: Ditto. |
|
6844 * control/hinf/hinf_ctr.m: Ditto. |
|
6845 * control/hinf/hinfdemo.m: Ditto. |
|
6846 * control/hinf/hinfnorm.m: Ditto. |
|
6847 * control/hinf/hinfsyn.m: Ditto. |
|
6848 * control/hinf/hinfsyn_chk.m: Ditto. |
|
6849 * control/hinf/hinfsyn_ric.m: Ditto. |
|
6850 * control/hinf/wgt1o.m: Ditto. |
3441
|
6851 * control/hinf/dgkfdemo.m: Ditto. |
|
6852 * control/hinf/is_dgkf.m: Ditto. |
3436
|
6853 |
|
6854 * control/marsyas: New directory. |
|
6855 * control/marsyas/demomarsyas.m: Move here from control directory. |
|
6856 * control/marsyas/susball.m: Ditto. |
|
6857 |
|
6858 * control/obsolete/dezero.m: Move here from control directory. |
|
6859 * control/obsolete/rotg.m: Ditto. |
|
6860 |
|
6861 * control/system: New directory. |
|
6862 * control/system/abcddim.m: Move here from control directory. |
|
6863 * control/system/abcddims.m: Ditto. |
|
6864 * control/system/buildssic.m: Ditto. |
|
6865 * control/system/c2d.m: Ditto. |
|
6866 * control/system/d2c.m: Ditto. |
|
6867 * control/system/dmr2d.m: Ditto. |
|
6868 * control/system/fir2sys.m: Ditto. |
|
6869 * control/system/is_abcd.m: Ditto. |
|
6870 * control/system/is_digital.m: Ditto. |
|
6871 * control/system/is_sample.m: Ditto. |
|
6872 * control/system/is_signal_list.m: Ditto. |
|
6873 * control/system/is_siso.m: Ditto. |
3441
|
6874 * control/system/is_controllable.m: Ditto. |
|
6875 * control/system/is_detectable.m: Ditto. |
|
6876 * control/system/is_observable.m: Ditto. |
|
6877 * control/system/is_stabilizable.m: Ditto. |
|
6878 * control/system/is_stable.m: Ditto. |
3436
|
6879 * control/system/jet707.m: Ditto. |
|
6880 * control/system/listidx.m: Ditto. |
|
6881 * control/system/moddemo.m: Ditto. |
|
6882 * control/system/ord2.m: Ditto. |
|
6883 * control/system/packedform.m: Ditto. |
|
6884 * control/system/parallel.m: Ditto. |
|
6885 * control/system/ss2sys.m: Ditto. |
|
6886 * control/system/ss2tf.m: Ditto. |
|
6887 * control/system/ss2zp.m: Ditto. |
|
6888 * control/system/starp.m: Ditto. |
|
6889 * control/system/sys2fir.m: Ditto. |
|
6890 * control/system/sys2ss.m: Ditto. |
|
6891 * control/system/sys2tf.m: Ditto. |
|
6892 * control/system/sys2zp.m: Ditto. |
|
6893 * control/system/sysadd.m: Ditto. |
|
6894 * control/system/sysappend.m: Ditto. |
|
6895 * control/system/syschnamesl.m: Ditto. |
|
6896 * control/system/syschtsam.m: Ditto. |
|
6897 * control/system/sysconnect.m: Ditto. |
|
6898 * control/system/syscont.m: Ditto. |
|
6899 * control/system/syscont_disc.m: Ditto. |
|
6900 * control/system/sysdefioname.m: Ditto. |
|
6901 * control/system/sysdefstname.m: Ditto. |
|
6902 * control/system/sysdimensions.m: Ditto. |
|
6903 * control/system/sysdisc.m: Ditto. |
|
6904 * control/system/sysdup.m: Ditto. |
|
6905 * control/system/sysgetsignals.m: Ditto. |
|
6906 * control/system/sysgettsam.m: Ditto. |
|
6907 * control/system/sysgettype.m: Ditto. |
|
6908 * control/system/sysgroup.m: Ditto. |
|
6909 * control/system/sysgroupn.m: Ditto. |
|
6910 * control/system/sysidx.m: Ditto. |
|
6911 * control/system/sysmin.m: Ditto. |
|
6912 * control/system/sysmult.m: Ditto. |
|
6913 * control/system/sysout.m: Ditto. |
|
6914 * control/system/sysprune.m: Ditto. |
|
6915 * control/system/sysreorder.m: Ditto. |
|
6916 * control/system/sysrepdemo.m: Ditto. |
|
6917 * control/system/sysscale.m: Ditto. |
|
6918 * control/system/syssetsignals.m: Ditto. |
|
6919 * control/system/syssub.m: Ditto. |
|
6920 * control/system/sysupdate.m: Ditto. |
|
6921 * control/system/tf2ss.m: Ditto. |
|
6922 * control/system/tf2sys.m: Ditto. |
|
6923 * control/system/tf2sysl.m: Ditto. |
|
6924 * control/system/tf2zp.m: Ditto. |
|
6925 * control/system/tfout.m: Ditto. |
|
6926 * control/system/ugain.m: Ditto. |
|
6927 * control/system/zp2ss.m: Ditto. |
|
6928 * control/system/zp2ssg2.m: Ditto. |
|
6929 * control/system/zp2sys.m: Ditto. |
|
6930 * control/system/zp2tf.m: Ditto. |
|
6931 * control/system/zpout.m: Ditto. |
|
6932 |
|
6933 * control/util: New directory. |
|
6934 * control/util/axis2dlim.m: Move here from control directory. |
|
6935 * control/util/outlist.m: Ditto. |
|
6936 * control/util/prompt.m: Ditto. |
|
6937 * control/util/run_cmd.m: Ditto. |
|
6938 * control/util/sortcom.m: Ditto. |
|
6939 * control/util/strappend.m: Ditto. |
|
6940 * control/util/swap.m: Ditto. |
|
6941 * control/util/zgfmul.m: Ditto. |
|
6942 * control/util/zgfslv.m: Ditto. |
|
6943 * control/util/zginit.m: Ditto. |
|
6944 * control/util/zgpbal.m: Ditto. |
|
6945 * control/util/zgreduce.m: Ditto. |
|
6946 * control/util/zgrownorm.m: Ditto. |
|
6947 * control/util/zgscal.m: Ditto. |
|
6948 * control/util/zgsgiv.m: Ditto. |
|
6949 * control/util/zgshsr.m: Ditto. |
|
6950 |
3427
|
6951 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6952 |
|
6953 * gethelp.cc (extract_help_text): Discard first space character |
|
6954 after consecutive comment characters. |
|
6955 |
3422
|
6956 Thu Jan 13 00:56:57 2000 John W. Eaton <jwe@bahaha.che.wisc.edu> |
|
6957 |
|
6958 * control/obsolete: New directory |
|
6959 * control/obsolete/swaprows.m: Move here from control directory. |
3436
|
6960 * control/obsolete/swapcols.m: Ditto. |
|
6961 * control/obsolete/dlqg.m: Ditto. |
|
6962 * control/obsolete/minfo.m: Ditto. |
|
6963 * control/obsolete/packsys.m: Ditto. |
|
6964 * control/obsolete/qzval.m: Ditto. |
|
6965 * control/obsolete/unpacksys.m: Ditto. |
|
6966 * control/obsolete/series.m: Ditto. |
|
6967 * control/obsolete/syschnames.m: Ditto. |
|
6968 * polynomial/polyout.m: Ditto. |
3422
|
6969 |
3420
|
6970 2000-01-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6971 |
|
6972 * general/fliplr.m: Eliminate useless copy of arg. |
|
6973 * general/flipud.m: Ditto. |
|
6974 |
3418
|
6975 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
6976 |
|
6977 * linear-algebra/cross.m: Only return a row vector if both args |
|
6978 are row vectors. |
|
6979 * polynomial/polyfit.m: Likewise. |
|
6980 |
|
6981 * signal/autocov.m: Don't reset prefer_column_vectors. |
|
6982 |
|
6983 * statistics/distributions/discrete_rnd.m: |
|
6984 Always generate a row vector. |
|
6985 * statistics/distributions/hypergeometric_rnd.m: Likewise. |
|
6986 |
5095
|
6987 2000-01-11 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3416
|
6988 |
|
6989 * strings/upper.m: Add missing `-*- texinfo -*-' tag to doc string. |
|
6990 |
|
6991 * audio/setaudio.m: Texinfoize doc string. |
|
6992 * control/com2str.m: Likewise. |
|
6993 * control/controldemo.m: Likewise. |
|
6994 * control/DEMOcontrol.m: Likewise. |
|
6995 * control/dezero.m: Likewise. |
|
6996 * control/dre.m: Likewise. |
|
6997 * control/hinfsyn_ric.m: Likewise. |
|
6998 |
5095
|
6999 2000-01-05 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3407
|
7000 |
|
7001 * io/printf.m: Add @seealso{...} to doc string. |
|
7002 * io/puts.m: Likewise. |
|
7003 * plot/semilogx.m: Likewise. |
|
7004 * plot/semilogy.m: Likewise. |
|
7005 * plot/__pltopt__.m: Likewise. |
|
7006 * plot/bar.m: Likewise. |
|
7007 * plot/xlabel.m: Likewise. |
|
7008 * plot/grid.m: Likewise. |
|
7009 * plot/shg.m: Likewise. |
|
7010 * plot/title.m: Likewise. |
|
7011 * plot/mesh.m: Likewise. |
|
7012 * plot/__pltopt1__.m: Likewise. |
|
7013 * plot/contour.m: Likewise. |
|
7014 * plot/hist.m: Likewise. |
|
7015 * plot/stairs.m: Likewise. |
|
7016 * plot/meshgrid.m: Likewise. |
|
7017 * plot/polar.m: Likewise. |
|
7018 * plot/loglog.m: Likewise. |
|
7019 * plot/plot.m: Likewise. |
|
7020 * miscellaneous/semicolon.m: Likewise. |
|
7021 * miscellaneous/menu.m: Likewise. |
|
7022 * miscellaneous/etime.m: Likewise. |
|
7023 * miscellaneous/texas_lotto.m: Likewise. |
|
7024 * miscellaneous/comma.m: Likewise. |
|
7025 * audio/lin2mu.m: Likewise. |
|
7026 * audio/playaudio.m: Likewise. |
|
7027 * audio/loadaudio.m: Likewise. |
|
7028 * audio/saveaudio.m: Likewise. |
|
7029 * audio/mu2lin.m: Likewise. |
|
7030 * audio/record.m: Likewise. |
|
7031 * strings/isletter.m: Likewise. |
|
7032 * strings/lower.m: Likewise. |
|
7033 * strings/lower.m: Likewise. |
|
7034 * strings/upper.m: Likewise. |
|
7035 * specfun/erfinv.m: Likewise. |
|
7036 * specfun/gammai.m: Likewise. |
|
7037 * specfun/log2.m: Likewise. |
|
7038 * specfun/pow2.m: Likewise. |
|
7039 * elfun/gcd.m: Likewise. |
|
7040 * elfun/lcm.m: Likewise. |
|
7041 * special-matrix/vander.m: Likewise. |
|
7042 * special-matrix/sylvester_matrix.m: Likewise. |
|
7043 * special-matrix/hilb.m: Likewise. |
|
7044 * special-matrix/hankel.m: Likewise. |
|
7045 * special-matrix/toeplitz.m: Likewise. |
|
7046 * special-matrix/invhilb.m: Likewise. |
|
7047 * statistics/base/std.m: Likewise. |
|
7048 * statistics/base/median.m: Likewise. |
|
7049 * linear-algebra/cond.m: Likewise. |
|
7050 * linear-algebra/norm.m: Likewise. |
|
7051 * finance/nper.m: Likewise. |
|
7052 * finance/pmt.m: Likewise. |
|
7053 * finance/pv.m: Likewise. |
|
7054 * finance/rate.m: Likewise. |
|
7055 * finance/npv.m: Likewise. |
|
7056 * general/fliplr.m: Likewise. |
|
7057 * general/flipud.m: Likewise. |
|
7058 * general/is_scalar.m: Likewise. |
|
7059 * general/rem.m: Likewise. |
|
7060 * general/perror.m: Likewise. |
|
7061 * general/tril.m: Likewise. |
|
7062 * general/rot90.m: Likewise. |
|
7063 * general/num2str.m: Likewise. |
|
7064 * general/int2str.m: Likewise. |
|
7065 * general/reshape.m: Likewise. |
|
7066 * general/logspace.m: Likewise. |
|
7067 * general/is_symmetric.m: Likewise. |
|
7068 * general/is_vector.m: Likewise. |
|
7069 * general/nextpow2.m: Likewise. |
|
7070 * general/columns.m: Likewise. |
|
7071 * general/is_square.m: Likewise. |
|
7072 * general/rows.m: Likewise. |
|
7073 * control/ugain.m: Likewise. |
|
7074 * control/damp.m: Likewise. |
|
7075 * control/dare.m: Likewise. |
|
7076 * control/are.m: Likewise. |
|
7077 * control/sys2fir.m: Likewise. |
|
7078 * control/abcddim.m: Likewise. |
|
7079 * control/is_abcd.m: Likewise. |
|
7080 * control/step.m: Likewise. |
|
7081 * control/is_observable.m: Likewise. |
|
7082 * control/is_controllable.m: Likewise. |
|
7083 * control/jet707.m: Likewise. |
|
7084 * control/polyout.m: Likewise. |
|
7085 * control/impulse.m: Likewise. |
|
7086 * control/lqg.m: Likewise. |
|
7087 * control/is_detectable.m: Likewise. |
|
7088 * control/sysdimensions.m: Likewise. |
|
7089 * control/sysupdate.m: Likewise. |
|
7090 * control/stepimp.m: Likewise. |
|
7091 * control/is_stable.m: Likewise. |
|
7092 * control/tfout.m: Likewise. |
|
7093 * control/zpout.m: Likewise. |
|
7094 |
3405
|
7095 2000-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7096 |
|
7097 * set/complement.m: Add @seealso{} stuff. |
|
7098 * set/create_set.m: Likewise. |
|
7099 * set/intersection.m: Likewise. |
|
7100 * set/union.m: Likewise. |
|
7101 |
3399
|
7102 1999-12-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7103 |
3400
|
7104 * control/d2c.m: Use double quotes instead of single quotes for |
|
7105 string constants. |
|
7106 * control/dgkfdemo.m: Likewise. |
|
7107 * control/fir2sys.m: Likewise. |
|
7108 * control/frdemo.m: Likewise. |
|
7109 * control/moddemo.m: Likewise. |
|
7110 * control/minfo.m: Likewise. |
|
7111 * control/is_stabilizable.m: Likewise. |
|
7112 * control/is_dgkf.m: Likewise. |
|
7113 * control/polyout.m: Likewise. |
|
7114 * control/sysconnect.m: Likewise. |
|
7115 * control/sysrepdemo.m: Likewise. |
|
7116 * control/tf2sys.m: Likewise. |
|
7117 * control/tfout.m: Likewise. |
|
7118 * control/zp2sys.m: Likewise. |
|
7119 * control/zpout.m: Likewise. |
|
7120 * control/tzero.m: Likewise. |
|
7121 |
|
7122 * control/DEMOcontrol.m: Handle moddemo case too. |
|
7123 |
|
7124 * image/loadimage.m: Use double quotes instead of single quotes |
|
7125 for string constants. Use sprintf instead of square brackets to |
|
7126 construct string. |
|
7127 |
3399
|
7128 * control/DEMOcontrol.m: Formatting tweaks. |
3400
|
7129 * control/fir2sys.m: Likewise. |
3399
|
7130 |
3390
|
7131 1999-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7132 |
|
7133 * mkdoc: Only delete spaces before @ characters at the beginning |
|
7134 of a line. |
|
7135 |
3383
|
7136 1999-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7137 |
3388
|
7138 * control/bddemo.m: Make it more likely to work with any value of |
|
7139 whitespace_in_literal_matrix. |
3386
|
7140 * control/analdemo.m: Ditto. |
|
7141 * control/dgkfdemo.m: Ditto. |
|
7142 * control/frdemo.m: Ditto. |
|
7143 * control/sysrepdemo.m: Ditto. |
|
7144 * control/moddemo.m: Ditto. |
3388
|
7145 * control/zp2ss.m: Ditto. |
3387
|
7146 * control/zp2tf.m: Ditto. |
3388
|
7147 * control/syssub.m: Ditto. |
|
7148 * finance/npv.m: Ditto. |
|
7149 * statistics/base/studentize.m: Ditto. |
|
7150 * statistics/base/values.m: Ditto. |
|
7151 * statistics/distributions/exponential_cdf.m: Ditto. |
|
7152 * statistics/distributions/poisson_cdf.m: Ditto. |
3386
|
7153 |
3384
|
7154 * control/dezero.m: Use toascii to convert string to ASCII value |
|
7155 instead of multiplying it by 1. |
|
7156 |
3383
|
7157 * control/zp2sys.m: Don't save and restore implicit_str_to_num_ok. |
|
7158 * control/zpout.m: Ditto. |
|
7159 * control/tfout.m: Ditto. |
|
7160 * control/tf2sys.m: Ditto. |
|
7161 * control/syssub.m: Ditto. |
|
7162 * control/syssetsignals.m: Ditto. |
|
7163 * control/sysout.m: Ditto. |
|
7164 * control/sysmult.m: Ditto. |
|
7165 * control/sysgroup.m: Ditto. |
|
7166 * control/sysdup.m: Ditto. |
|
7167 * control/sysdisc.m: Ditto. |
|
7168 * control/syscont.m: Ditto. |
|
7169 * control/sysconnect.m: Ditto. |
|
7170 * control/sysappend.m: Ditto. |
|
7171 * control/sysadd.m: Ditto. |
|
7172 * control/ss2sys.m: Ditto. |
|
7173 * control/nyquist.m: Ditto. |
|
7174 * control/lqg.m: Ditto. |
|
7175 * control/fir2sys.m: Ditto. |
|
7176 * control/dmr2d.m: Ditto. |
|
7177 * control/dezero.m: Ditto. |
|
7178 * control/d2c.m: Ditto. |
|
7179 * control/c2d.m: Ditto. |
|
7180 * control/bddemo.m: Ditto. |
|
7181 * control/pzmap.m: Ditto. |
|
7182 |
5095
|
7183 1999-12-08 Daniel Calvelo <dcalvelo@pharion.univ-lille2.fr> |
3374
|
7184 |
|
7185 * signal/spectral_adf.m: Fix typo. |
|
7186 |
3372
|
7187 1999-11-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7188 |
|
7189 * linear-algebra/cond.m: Texinfoize doc string. |
|
7190 * linear-algebra/kron.m: Ditto. |
|
7191 * linear-algebra/norm.m: Ditto. |
|
7192 * linear-algebra/null.m: Ditto. |
|
7193 * linear-algebra/orth.m: Ditto. |
|
7194 * linear-algebra/rank.m: Ditto. |
|
7195 * linear-algebra/trace.m: Ditto. |
|
7196 * linear-algebra/qzhess.m: Ditto. |
|
7197 * miscellaneous/menu.m: Ditto. |
3373
|
7198 * general/perror.m: Ditto. |
|
7199 * general/strerror.m: Ditto. |
|
7200 * general/columns.m: Ditto. |
|
7201 * general/rows.m: Ditto. |
|
7202 * image/colormap.m: Ditto. |
|
7203 * image/gray.m: Ditto. |
|
7204 * image/gray2ind.m: Ditto. |
|
7205 * image/image.m: Ditto. |
|
7206 * image/imagesc.m: Ditto. |
|
7207 * image/imshow.m: Ditto. |
|
7208 * image/ind2gray.m: Ditto. |
|
7209 * image/ind2rgb.m: Ditto. |
|
7210 * image/loadimage.m: Ditto. |
|
7211 * image/rgb2ntsc.m: Ditto. |
|
7212 * image/ntsc2rgb.m: Ditto. |
|
7213 * image/ocean.m: Ditto. |
|
7214 * image/rgb2ind.m: Ditto. |
|
7215 * image/saveimage.m: Ditto. |
3372
|
7216 * io/printf.m: Ditto. |
|
7217 * io/puts.m: Ditto. |
|
7218 |
3369
|
7219 1999-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7220 |
|
7221 * special-matrix/hankel.m: Texinfoize doc string. |
|
7222 * special-matrix/hilb.m: Ditto. |
|
7223 * special-matrix/invhilb.m: Ditto. |
|
7224 * special-matrix/sylvester_matrix.m: Ditto. |
|
7225 * special-matrix/toeplitz.m: Ditto. |
|
7226 * special-matrix/vander.m: Ditto. |
|
7227 * linear-algebra/vec.m: Ditto. |
|
7228 * linear-algebra/vech.m: Ditto. |
|
7229 * general/common_size.m: Ditto. |
|
7230 * general/diff.m: Ditto. |
|
7231 * general/fliplr.m: Ditto. |
|
7232 * general/flipud.m: Ditto. |
|
7233 * general/rot90.m: Ditto. |
|
7234 * general/reshape.m: Ditto. |
|
7235 * general/shift.m: Ditto. |
|
7236 * general/tril.m: Ditto. |
|
7237 * general/triu.m: Ditto. |
|
7238 * general/logspace.m: Ditto. |
3371
|
7239 * general/nargchk.m: Ditto. |
3369
|
7240 |
3367
|
7241 1999-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7242 |
|
7243 * statistics/base/mean: Texinfoize doc string. |
|
7244 * statistics/base/median: Ditto. |
|
7245 * statistics/base/std: Ditto. |
|
7246 * statistics/base/cov: Ditto. |
|
7247 * statistics/base/corrcoef: Ditto. |
|
7248 * statistics/base/kurtosis: Ditto. |
|
7249 * statistics/base/mahalanobis: Ditto. |
|
7250 * statistics/base/skewness: Ditto. |
3368
|
7251 * statistics/base/gls.m: Ditto. |
|
7252 * statistics/base/ols.m: Ditto. |
3367
|
7253 * signal/detrend.m: Ditto. |
|
7254 * signal/freqz.m: Ditto. |
|
7255 * signal/sinc.m: Ditto. |
|
7256 * signal/fftconv.m: Ditto. |
|
7257 * signal/fftfilt.m: Ditto. |
3368
|
7258 * set/create_set.m: Ditto. |
|
7259 * set/union.m: Ditto. |
|
7260 * set/intersection.m: Ditto. |
|
7261 * set/complement.m: Ditto. |
|
7262 * poly/compan.m: Ditto. |
|
7263 * poly/conv: Ditto. |
|
7264 * poly/deconv: Ditto. |
|
7265 * poly/poly: Ditto. |
|
7266 * poly/polyderiv: Ditto. |
|
7267 * poly/polyfit: Ditto. |
|
7268 * poly/polyinteg: Ditto. |
|
7269 * poly/polyreduce: Ditto. |
|
7270 * poly/polyval: Ditto. |
|
7271 * poly/polyvalm: Ditto. |
|
7272 * poly/residue: Ditto. |
|
7273 * poly/roots: Ditto. |
|
7274 * plot/top_title.m: Ditto |
|
7275 * plot/subwindow.m: Ditto |
|
7276 * plot/subplot.m: Ditto |
|
7277 * plot/plot_border.m: Ditto |
|
7278 * plot/oneplot.m: Ditto |
|
7279 * plot/multiplot.m: Ditto |
|
7280 * plot/mplot.m: Ditto |
|
7281 * plot/xlabel.m: Ditto |
|
7282 * plot/figure.m: Ditto |
|
7283 * plot/meshdom.m: Ditto |
|
7284 * plot/mesh.m: Ditto |
|
7285 * plot/stairs.m: Ditto |
|
7286 * plot/polar.m: Ditto |
|
7287 * plot/loglog.m: Ditto |
|
7288 * plot/hist.m: Ditto |
|
7289 * plot/contour.m: Ditto |
|
7290 * plot/bar.m: Ditto |
|
7291 * plot/axis.m: Ditto |
|
7292 * plot/plot.m: Ditto. |
3367
|
7293 |
3361
|
7294 1999-11-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7295 |
3365
|
7296 * control/pinv.m: Delete. |
|
7297 |
3364
|
7298 * Makefile.in (DOCSTRINGS): Don't echo $(ALL_M_FILES). |
|
7299 |
3361
|
7300 * strings/blanks.m: Texinfoize doc string. |
|
7301 * strings/strcat.m: Ditto. |
|
7302 * strings/str2mat.m: Ditto. |
|
7303 * strings/deblank.m: Ditto. |
|
7304 * strings/findstr.m: Ditto. |
|
7305 * strings/index.m: Ditto. |
|
7306 * strings/rindex.m: Ditto. |
|
7307 * strings/split.m: Ditto. |
|
7308 * strings/strcmp.m: Ditto. |
|
7309 * strings/strrep.m: Ditto. |
|
7310 * strings/substr.m: Ditto. |
|
7311 * general/int2str.m: Ditto. |
|
7312 * general/num2str.m: Ditto. |
|
7313 * strings/dec2bin.m: Ditto. |
|
7314 * strings/bin2dec: Ditto. |
|
7315 * strings/dec2bin: Ditto. |
|
7316 * strings/dec2hex: Ditto. |
|
7317 * strings/hex2dec: Ditto. |
|
7318 * strings/str2num: Ditto. |
|
7319 |
3347
|
7320 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7321 |
|
7322 * Makefile.in (DISTFILES): Include DOCSTRINGS. |
|
7323 |
5095
|
7324 1999-11-09 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3361
|
7325 |
|
7326 * control/DEMOcontrol.m: Texinfoize doc string. |
|
7327 * control/abcddim.m: Ditto. |
|
7328 * control/abcddims.m: Ditto. |
|
7329 * control/analdemo.m: Ditto. |
|
7330 * control/are.m: Ditto. |
|
7331 * control/axis2dlim.m: Ditto. |
|
7332 * control/bddemo.m: Ditto. |
|
7333 * control/bode.m: Ditto. |
|
7334 * control/bode_bounds.m: Ditto. |
|
7335 * control/bodquist.m: Ditto. |
|
7336 * control/buildssic.m: Ditto. |
|
7337 * control/c2d.m: Ditto. |
|
7338 * control/ctrb.m: Ditto. |
|
7339 * control/d2c.m: Ditto. |
|
7340 * control/damp.m: Ditto. |
|
7341 * control/dare.m: Ditto. |
|
7342 * control/dcgain.m: Ditto. |
|
7343 * control/dgkfdemo.m: Ditto. |
|
7344 * control/dgram.m: Ditto. |
|
7345 * control/dlqe.m: Ditto. |
|
7346 * control/dlqr.m: Ditto. |
|
7347 * control/dlyap.m: Ditto. |
|
7348 * control/dmr2d.m: Ditto. |
|
7349 * control/fir2sys.m: Ditto. |
|
7350 * control/frdemo.m: Ditto. |
|
7351 * control/freqchkw.m: Ditto. |
|
7352 * control/freqresp.m: Ditto. |
|
7353 * control/gram.m: Ditto. |
|
7354 * control/h2norm.m: Ditto. |
|
7355 * control/h2syn.m: Ditto. |
|
7356 * control/hinf_ctr.m: Ditto. |
|
7357 * control/hinfdemo.m: Ditto. |
|
7358 * control/hinfnorm.m: Ditto. |
|
7359 * control/hinfsyn.m: Ditto. |
|
7360 * control/hinfsyn_chk.m: Ditto. |
|
7361 * control/impulse.m: Ditto. |
|
7362 * control/is_abcd.m: Ditto. |
|
7363 * control/is_controllable.m: Ditto. |
|
7364 * control/is_detectable.m: Ditto. |
|
7365 * control/is_dgkf.m: Ditto. |
|
7366 * control/is_digital.m: Ditto. |
|
7367 * control/is_observable.m: Ditto. |
|
7368 * control/is_sample.m: Ditto. |
|
7369 * control/is_signal_list.m: Ditto. |
|
7370 * control/is_siso.m: Ditto. |
|
7371 * control/is_stabilizable.m: Ditto. |
|
7372 * control/is_stable.m: Ditto. |
|
7373 * control/jet707.m: Ditto. |
|
7374 * control/lqe.m: Ditto. |
|
7375 * control/lqg.m: Ditto. |
|
7376 * control/lqr.m: Ditto. |
|
7377 * control/lsim.m: Ditto. |
|
7378 * control/ltifr.m: Ditto. |
|
7379 * control/lyap.m: Ditto. |
|
7380 * control/moddemo.m: Ditto. |
|
7381 * control/nyquist.m: Ditto. |
|
7382 * control/obsv.m: Ditto. |
|
7383 * control/ord2.m: Ditto. |
|
7384 * control/outlist.m: Ditto. |
|
7385 * control/pinv.m: Ditto. |
|
7386 * control/place.m: Ditto. |
|
7387 * control/polyout.m: Ditto. |
|
7388 * control/prompt.m: Ditto. |
|
7389 * control/pzmap.m: Ditto. |
|
7390 * control/qzval.m: Ditto. |
|
7391 * control/rldemo.m: Ditto. |
|
7392 * control/rlocus.m: Ditto. |
|
7393 * control/sortcom.m: Ditto. |
|
7394 * control/ss2sys.m: Ditto. |
|
7395 * control/ss2tf.m: Ditto. |
|
7396 * control/ss2zp.m: Ditto. |
|
7397 * control/starp.m: Ditto. |
|
7398 * control/step.m: Ditto. |
|
7399 * control/stepimp.m: Ditto. |
|
7400 * control/susball.m: Ditto. |
|
7401 * control/sys2fir.m: Ditto. |
|
7402 * control/sys2ss.m: Ditto. |
|
7403 * control/sys2tf.m: Ditto. |
|
7404 * control/sys2zp.m: Ditto. |
|
7405 * control/sysadd.m: Ditto. |
|
7406 * control/sysappend.m: Ditto. |
|
7407 * control/syschnames.m: Ditto. |
|
7408 * control/syschnamesl.m: Ditto. |
|
7409 * control/syschtsam.m: Ditto. |
|
7410 * control/sysconnect.m: Ditto. |
|
7411 * control/syscont.m: Ditto. |
|
7412 * control/syscont_disc.m: Ditto. |
|
7413 * control/sysdefioname.m: Ditto. |
|
7414 * control/sysdefstname.m: Ditto. |
|
7415 * control/sysdimensions.m: Ditto. |
|
7416 * control/sysdisc.m: Ditto. |
|
7417 * control/sysdup.m: Ditto. |
|
7418 * control/sysgetsignals.m: Ditto. |
|
7419 * control/sysgettype.m: Ditto. |
|
7420 * control/sysgroup.m: Ditto. |
|
7421 * control/sysgroupn.m: Ditto. |
|
7422 * control/sysmult.m: Ditto. |
|
7423 * control/sysout.m: Ditto. |
|
7424 * control/sysprune.m: Ditto. |
|
7425 * control/sysreorder.m: Ditto. |
|
7426 * control/sysrepdemo.m: Ditto. |
|
7427 * control/sysscale.m: Ditto. |
|
7428 * control/syssetsignals.m: Ditto. |
|
7429 * control/syssub.m: Ditto. |
|
7430 * control/sysupdate.m: Ditto. |
|
7431 * control/tf2ss.m: Ditto. |
|
7432 * control/tf2sys.m: Ditto. |
|
7433 * control/tf2sysl.m: Ditto. |
|
7434 * control/tf2zp.m: Ditto. |
|
7435 * control/tfout.m: Ditto. |
|
7436 * control/tzero.m: Ditto. |
|
7437 * control/tzero2.m: Ditto. |
|
7438 * control/ugain.m: Ditto. |
|
7439 * control/wgt1o.m: Ditto. |
|
7440 * control/zgfmul.m: Ditto. |
|
7441 * control/zgfslv.m: Ditto. |
|
7442 * control/zginit.m: Ditto. |
|
7443 * control/zgpbal.m: Ditto. |
|
7444 * control/zgreduce.m: Ditto. |
|
7445 * control/zgrownorm.m: Ditto. |
|
7446 * control/zgscal.m: Ditto. |
|
7447 * control/zgsgiv.m: Ditto. |
|
7448 * control/zgshsr.m: Ditto. |
|
7449 * control/zp2ss.m: Ditto. |
|
7450 * control/zp2ssg2.m: Ditto. |
|
7451 * control/zp2sys.m: Ditto. |
|
7452 * control/zp2tf.m: Ditto. |
|
7453 * control/zpout.m: Ditto. |
|
7454 |
5095
|
7455 1999-11-02 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3332
|
7456 |
5378
|
7457 * audio/lin2mu.m: Texinfoize doc string. |
|
7458 * audio/loadaudio.m: Ditto. |
|
7459 * audio/mu2lin.m: Ditto. |
|
7460 * audio/playaudio.m: Ditto. |
|
7461 * audio/record.m: Ditto. |
|
7462 * audio/saveaudio.m: Ditto. |
3332
|
7463 |
5095
|
7464 1999-10-26 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321
|
7465 |
|
7466 * elfun/acot.m: Texinfoize doc string. |
|
7467 * elfun/acsc.m: Ditto. |
|
7468 * elfun/acsch.m: Ditto. |
|
7469 * elfun/asec.m: Ditto. |
|
7470 * elfun/asech.m: Ditto. |
|
7471 * elfun/cot.m: Ditto. |
|
7472 * elfun/coth.m: Ditto. |
|
7473 * elfun/csc.m: Ditto. |
|
7474 * elfun/csch.m: Ditto. |
|
7475 * elfun/gcd.m: Ditto. |
|
7476 * elfun/lcm.m: Ditto. |
|
7477 * elfun/sec.m: Ditto. |
|
7478 * elfun/sech.m: Ditto. |
|
7479 * general/nextpow2.m: Ditto. |
|
7480 * general/rem.m: Ditto. |
|
7481 * linear-algebra/commutation_matrix.m: Ditto. |
|
7482 * linear-algebra/cross.m: Ditto. |
|
7483 * linear-algebra/duplication_matrix.m: Ditto. |
|
7484 * miscellaneous/bincoeff.m: Ditto. |
|
7485 * miscellaneous/xor.m: Ditto. |
|
7486 * specfun/bessel.m: Ditto. |
|
7487 * specfun/beta.m: Ditto. |
|
7488 * specfun/betai.m: Ditto. |
|
7489 * specfun/erfinv.m: Ditto. |
|
7490 * specfun/gammai.m: Ditto. |
|
7491 * specfun/log2.m: Ditto. |
|
7492 * specfun/pow2.m: Ditto. |
|
7493 |
5095
|
7494 1999-10-23 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3321
|
7495 |
|
7496 * general/is_scalar.m: Texinfoize help text. |
|
7497 * general/is_square.m: Ditto. |
|
7498 * general/is_symmetric.m: Ditto. |
|
7499 |
3320
|
7500 1999-10-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7501 |
|
7502 * strings/split.m: If the string to be split is empty, just return |
|
7503 an empty string. |
|
7504 |
3319
|
7505 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7506 |
|
7507 * Makefile.in (ALL_M_FILES): New macro. |
|
7508 (DOCSTRINGS): No longer .PHONY; depend on $(ALL_M_FILES). |
|
7509 |
3306
|
7510 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7511 |
|
7512 * control/bode.m: Don't return anything if nargout == 0. |
|
7513 |
|
7514 1999-10-20 James B. Rawlings <jbraw@bevo.che.wisc.edu> |
|
7515 |
|
7516 * control/bode.m: Don't do axis scaling for magnitude plots. |
|
7517 |
3305
|
7518 1999-10-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7519 |
|
7520 * Makefile.in (DISTFILES): Add move-if-change, mkdoc, and |
|
7521 gethelp.cc to the list. |
|
7522 |
3296
|
7523 1999-10-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7524 |
3301
|
7525 * time/asctime.m: Texinfoize help text. |
|
7526 * time/clock.m: Ditto. |
|
7527 * time/date.m: Ditto. |
|
7528 * miscellaneous/cputime.m: Ditto. |
|
7529 * miscellaneous/etime.m: Ditto. |
|
7530 * miscellaneous/is_leap_year.m: Ditto. |
|
7531 * miscellaneous/popen2.m: Ditto. |
|
7532 * miscellaneous/version.m: Ditto. |
|
7533 * miscellaneous/tic.m: Ditto. |
|
7534 * miscellaneous/toc.m: Just refer to tic.m. |
|
7535 |
3297
|
7536 * Makefile.in (dist, bin-dist): Use `$(MAKE) -C dir' instead of |
|
7537 `cd dir; $(MAKE); cd ..'. |
|
7538 ($(SUBDIRS)): Likewise. |
|
7539 |
|
7540 * statistics/Makefile.in ($(SUBDIRS)): Likewise. |
|
7541 |
|
7542 * statistics/Makefile.in (bin-dist): Use `$(MAKE) -C dir' instead |
|
7543 of `cd dir; $(MAKE)'. |
|
7544 |
3296
|
7545 * gethelp.cc, mkdoc: New files. |
|
7546 * Makefile.in: Use them to create DOCSTRINGS file from .m file |
|
7547 sources. |
|
7548 |
3291
|
7549 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7550 |
|
7551 * linear-algebra/kron.m: Fix typo in previous change |
|
7552 |
3282
|
7553 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7554 |
|
7555 * control/bode.m: Allow optional 5th arg to specify plot style. |
|
7556 |
5095
|
7557 Wed Sep 22 22:12:03 1999 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3273
|
7558 |
|
7559 * linear-algebra/krylov.m: Correctly handle case of V having full |
|
7560 rank when V has more columns than rows. |
|
7561 |
|
7562 Mon Sep 20 23:04:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7563 |
|
7564 * general/linspace.m, linear-algebra/pinv.m: Delete. |
|
7565 |
|
7566 * statistics/tests/manova.m: Avoid problems if |
|
7567 whitespace_in_literal_matrix is set to "traditional". |
|
7568 * statistics/tests/t_test_regression.m: Likewise. |
|
7569 * statistics/tests/u_test.m: Likewise. |
|
7570 * statistics/tests/chisquare_test_homogeneity.m: Likewise. |
|
7571 * statistics/tests/anova.m: Likewise. |
|
7572 * statistics/tests/kruskal_wallis_test.m: Likewise. |
|
7573 * statistics/base/statistics.m: Likewise. |
|
7574 * image/saveimage.m: Likewise. |
|
7575 * signal/arch_fit.m: Likewise. |
|
7576 * signal/autoreg_matrix.m: Likewise. |
|
7577 * signal/triangle_lw.m: Likewise. |
|
7578 * strings/dec2hex.m: Likewise. |
|
7579 |
3268
|
7580 Thu Sep 9 19:31:58 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7581 |
|
7582 * image/saveimage.m: Initialize scale. |
|
7583 |
|
7584 Sun Sep 5 22:13:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7585 |
|
7586 * general/reshape.m: Allow reshape (a, size (b)). |
|
7587 |
3266
|
7588 Fri Sep 3 00:01:38 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7589 |
|
7590 * specfun/erfinv.m: Improve stopping criterion. |
|
7591 Add iteration count as second return value. |
|
7592 |
3265
|
7593 Mon Aug 30 12:07:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7594 |
|
7595 * statistics/base/mean.m: Use .', not ' to reorient row vectors. |
|
7596 |
3263
|
7597 Tue Aug 17 11:11:27 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7598 |
|
7599 * miscellaneous/pack.m: New function. |
|
7600 |
|
7601 Mon Aug 16 07:46:57 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7602 |
|
7603 * plot/figure.m: Always return figure number. With no args, |
|
7604 figure now creates a new figure window and returns its number. |
|
7605 Accept figure (property, value) syntax, but do nothing. |
|
7606 |
5095
|
7607 Thu Aug 12 09:28:01 PDT 1999 Tom Poage <tfpoage@ucdavis.edu> |
3263
|
7608 |
|
7609 * general/shift.m: Avoid printing temporary value for backward shift. |
|
7610 |
3260
|
7611 Mon Aug 2 16:39:04 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7612 |
|
7613 * plot/bar.m: Compute bar widths correctly when x-values are not |
|
7614 evenly spaced. |
|
7615 |
3250
|
7616 Mon Jul 12 22:48:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7617 |
|
7618 * linear-algebra/cond.m: Avoid returning NaN for matrices that |
|
7619 contain only zeros. |
|
7620 |
5095
|
7621 Sun Jun 20 22:24:27 1999 Eduardo Gallestey <eduardo@faceng.anu.edu.au> |
3250
|
7622 |
|
7623 * linear-algebra/kron.m: Create result matrix and insert blocks |
|
7624 instead of appending them. |
|
7625 |
|
7626 Sat Jun 19 01:52:18 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7627 |
|
7628 * control/bodquist.m, control/buildssic.m, control/is_digital.m, |
|
7629 control/stepimp.m, control/sysmin.m, control/syssetsignals.m: |
|
7630 Update from A. S. Hodel. |
|
7631 |
3246
|
7632 Fri Jun 18 12:19:22 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7633 |
|
7634 * polynomial/polyfit.m: Correct previous change. |
|
7635 |
3243
|
7636 Wed Apr 7 13:57:26 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7637 |
|
7638 * linear-algebra/qrhouse.m, linear-algebra/krygetq.m: Delete. |
|
7639 |
5095
|
7640 Wed Apr 7 13:22:43 1999 A. S. Hodel <a.s.hodel@eng.auburn.edu> |
3240
|
7641 |
|
7642 * control/is_controllable.m, control/zgscal.m: Accomodate new |
|
7643 version of krylov and krylovb. |
|
7644 |
|
7645 * control/outlist.m, control/sysout.m: Fix typos. |
|
7646 |
|
7647 * control/sysdimensions.m: Add option for total number of states. |
|
7648 |
|
7649 * linear-algebra/krylov.m: Improve robustness by row-pivoting. |
|
7650 * linear-algebra/krylovb.m: Just call krylov with appropriate |
|
7651 arguments. |
|
7652 |
|
7653 Tue Mar 30 00:43:09 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7654 |
|
7655 * strings/index.m: Fail with meaningful error message if either |
|
7656 arg is a string array. |
|
7657 |
3238
|
7658 Wed Mar 24 20:34:48 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7659 |
|
7660 * linear-algebra/norm.m: Do the right thing for 1- and |
|
7661 infinity-norms of complex matrices. From Sven Khatri |
|
7662 <khatri@saturn.vocalpoint.com>. |
|
7663 |
5095
|
7664 Tue Mar 16 13:36:36 1999 A. Scottedward Hodel" <scotte@eng.auburn.edu> |
3238
|
7665 |
|
7666 * linear-algebra/qrhouse.m: Handle default args correctly. |
|
7667 |
|
7668 Thu Mar 11 12:52:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7669 |
|
7670 * strings/split.m: Avoid problems when splitting strings that have |
|
7671 \ in them. |
|
7672 |
5095
|
7673 Thu Mar 11 12:36:13 1999 Massimo Lorenzin <maxlorenzin@tin.it> |
3238
|
7674 |
|
7675 * image/colormap.m: Do better arg checking, handle string args |
|
7676 that name the colormap function to call (e.g., colormap ("ocean")). |
|
7677 |
5095
|
7678 Mon Mar 8 22:23:24 1999 Rolf Fabian <fabian@TU-Cottbus.De> |
3238
|
7679 |
|
7680 * polynomial/polyfit.m: Use .' transpose operator, not '. |
|
7681 * linear-algebra/dot.m: Likewise. |
|
7682 * linear-algebra/cross.m: Likewise. |
|
7683 * general/rot90.m: Likewise. |
|
7684 |
5095
|
7685 Sat Mar 6 01:45:00 1999 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3238
|
7686 |
|
7687 * linear-algebra/qrhouse.m: Permute columns at each iteration so |
|
7688 that the leading column is not all zeros. |
|
7689 |
|
7690 Fri Mar 5 00:37:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7691 |
|
7692 * general/shift.m: Fix potential problems with |
|
7693 whitespace_in_literal_matrix. |
|
7694 * signal/arch_rnd.m: Ditto. |
|
7695 * signal/autocov.m: Ditto. |
|
7696 * signal/diffpara.m: Ditto. |
|
7697 * signal/hurst.m: Ditto. |
|
7698 * signal/periodogram.m: Ditto. |
|
7699 * signal/spectral_adf.m: Ditto. |
|
7700 * signal/spectral_xdf.m: Ditto. |
|
7701 * signal/spencer.m: Ditto. |
|
7702 * signal/synthesis.m: Ditto. |
|
7703 * statistics/distributions/wiener_rnd.m: Ditto. |
|
7704 * statistics/models/logistic_regression_likelihood.m: Ditto. |
|
7705 * statistics/models/logistic_regression.m: Ditto. |
|
7706 * statistics/models/logistic_regression_derivatives.m: Ditto. |
|
7707 * statistics/tests/run_test.m: Ditto. |
|
7708 * statistics/tests/chisquare_test_independence.m: Ditto. |
|
7709 |
5095
|
7710 Wed Mar 3 02:25:00 1999 Joao Cardoso <jcardoso@inescn.pt> |
3238
|
7711 |
|
7712 * plot/__plr2__.m: Fix typo. |
|
7713 |
3233
|
7714 Tue Jan 12 10:31:15 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7715 |
|
7716 * plot/__pltopt1__.m: Accept "k" to mean black. |
|
7717 |
5095
|
7718 Fri Dec 11 10:43:19 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233
|
7719 |
|
7720 * linear-algebra/krylov.m: Force empty_list_elements_ok for this |
|
7721 function. |
|
7722 |
5095
|
7723 Thu Dec 10 11:07:00 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3233
|
7724 |
|
7725 * control/ss2sys.m: Fix typo. |
|
7726 |
|
7727 Wed Dec 9 12:42:19 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7728 |
|
7729 * plot/subplot.m, plot/oneplot.m: Don't call clearplot. |
|
7730 |
|
7731 * control: Update from A. S. Hodel <a.s.hodel@eng.auburn.edu> for |
|
7732 signal names as lists of strings instead of string arrays. |
|
7733 |
3225
|
7734 Fri Dec 4 16:08:42 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7735 |
3233
|
7736 * quaternion: New directory of functions from A. S. Hodel |
3225
|
7737 <a.s.hodel@eng.auburn.edu>. |
|
7738 * Makefile.in (SUBDIRS): Add it to the list. |
3226
|
7739 * quaternion/Makefile.in: New file. |
|
7740 * configure.in (AC_OUTPUT): Add quaternion/Makefile. |
3225
|
7741 |
|
7742 Tue Nov 24 21:41:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7743 |
|
7744 * image/saveimage.m: Make it work again for black and white colormaps. |
|
7745 |
|
7746 * image/imagesc.m: Use rows (colormap), not length (colormap), |
|
7747 since there can be fewer rows than columns. Round values to |
|
7748 nearest position in colormap instead of truncating. Correct usage |
|
7749 message. |
|
7750 |
5095
|
7751 Tue Nov 24 14:50:52 1998 A Scott Hodel <hodel@edalf1.msfc.nasa.gov> |
3225
|
7752 |
|
7753 * linear-algebra/krylov.m: New arg pflg. If nonzero, avoid using |
|
7754 zero rows of [A,v] as householder pivots; this avoids spurious |
|
7755 non-zero entries in returned orthogonal matrix U, but destroys the |
|
7756 Householder matrix structure of H. |
|
7757 |
|
7758 Fri Nov 20 12:46:46 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7759 |
|
7760 * general/logical.m: Just copy input to output if argument is |
|
7761 already a logical object. |
|
7762 |
3215
|
7763 Fri Nov 6 10:17:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7764 |
|
7765 * New files from OCST, in control subdiretory: |
|
7766 |
|
7767 DEMOcontrol.m is_siso.m syschnames.m |
|
7768 abcddim.m is_stabilizable.m syschnamesl.m |
|
7769 abcddims.m is_stable.m syschtsam.m |
|
7770 analdemo.m jet707.m sysconnect.m |
|
7771 are.m lqe.m syscont.m |
|
7772 axis2dlim.m lqg.m syscont_disc.m |
|
7773 bddemo.m lqr.m sysdefioname.m |
|
7774 bode.m lsim.m sysdefstname.m |
|
7775 bode_bounds.m ltifr.m sysdimensions.m |
|
7776 bodquist.m lyap.m sysdisc.m |
|
7777 buildssic.m mb.m sysdup.m |
|
7778 c2d.m minfo.m sysgetsignals.m |
6302
|
7779 com2str.m moddemo.m sysgettsam.m |
3215
|
7780 controldemo.m nichols.m sysgettype.m |
|
7781 ctrb.m nyquist.m sysgroup.m |
|
7782 d2c.m obsv.m sysgroupn.m |
|
7783 damp.m ord2.m sysmult.m |
|
7784 dare.m outlist.m sysout.m |
|
7785 dcgain.m packedform.m sysprune.m |
|
7786 demomarsyas.m packsys.m sysreorder.m |
|
7787 dezero.m; parallel.m sysrepdemo.m |
|
7788 dgkfdemo.m place.m sysscale.m |
|
7789 dgram.m polyout.m syssub.m |
|
7790 dhinfdemo.m prompt.m sysupdate.m |
|
7791 dlqe.m pzmap.m tf2ss.m |
|
7792 dlqg.m qzval.m tf2sys.m |
|
7793 dlqr.m rldemo.m tf2sysl.m |
|
7794 dlyap.m rlocus.m tf2zp.m |
|
7795 dmr2d.m rotg.m tfout.m |
|
7796 fir2sys.m run_cmd.m; tzero.m |
|
7797 frdemo.m series.m tzero2.m |
|
7798 freqchkw.m sortcom.m ugain.m |
|
7799 freqresp.m ss2sys.m unpacksys.m |
|
7800 gram.m ss2tf.m wgt1o.m |
|
7801 h2norm.m ss2zp.m zgfmul.m |
|
7802 h2syn.m starp.m zgfslv.m |
|
7803 hinf_ctr.m step.m zginit.m |
|
7804 hinfdemo.m stepimp.m zgpbal.m |
|
7805 hinfnorm.m strappend.m; zgreduce.m |
|
7806 hinfsyn.m susball.m zgrownorm.m |
|
7807 hinfsyn_chk.m swap.m zgscal.m |
|
7808 impulse.m swapcols.m zgsgiv.m |
|
7809 is_abcd.m swaprows.m zgshsr.m |
|
7810 is_controllable.m sys2fir.m zp2ss.m |
|
7811 is_detectable.m sys2ss.m zp2ssg2.m |
|
7812 is_dgkf.m sys2tf.m zp2sys.m |
|
7813 is_digital.m sys2zp.m zp2tf.m |
|
7814 is_observable.m sysadd.m zpout.m |
|
7815 is_sample.m sysappend.m |
|
7816 |
|
7817 Thu Nov 5 13:28:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7818 |
|
7819 * configure.in (AC_OUTPUT): Escape newlinew in macro call with \. |
|
7820 |
|
7821 * strings/deblank.m: Make it work for string arrays too. |
|
7822 |
3211
|
7823 Wed Nov 4 21:51:13 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7824 |
|
7825 * linear-algebra/housh.m: New file from the OCST. |
|
7826 * linear-algebra/krygetq.m: Ditto. |
|
7827 * linear-algebra/krylov.m: Ditto. |
|
7828 * linear-algebra/krylovb.m: Ditto. |
|
7829 * linear-algebra/qrhouse.m: Ditto. |
|
7830 * general/is_duplicate_entry.m: Ditto. |
|
7831 |
|
7832 * general/is_symmetric.m: Call is_square instead of doing that |
|
7833 check in line. |
|
7834 |
3196
|
7835 Wed Oct 28 11:51:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7836 |
3202
|
7837 * general/is_square.m: |
|
7838 |
|
7839 * general/isempty.m, general/is_matrix.m: Delete. |
|
7840 |
|
7841 * general/is_symmetric: Delete special case for strings. Whether |
|
7842 the conversion is valid should depend on implicit_str_to_num_ok. |
|
7843 |
|
7844 * general/is_square.m: If arg is not a matrix, don't check size, |
|
7845 just return 0. |
|
7846 * general/is_symmetric: Likewise. |
|
7847 * general/is_vector.m: Likewise. |
|
7848 * general/is_scalar.m: Likewise. |
|
7849 |
3196
|
7850 * general/length.m: Delete. |
|
7851 |
3191
|
7852 Fri Oct 23 00:21:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7853 |
|
7854 * configure.in: Add finance/Makefile, statistics/base/Makefile, |
|
7855 statistics/distributions/Makefile, statistics/models/Makefile, |
|
7856 and statistics/tests/Makefile to the list of files to create. |
|
7857 |
|
7858 * finance/Makefile.in, statistics/base/Makefile.in, |
|
7859 statistics/distributions/Makefile.in, statistics/models/Makefile.in, |
|
7860 statistics/tests/Makefile.in: New files. |
|
7861 * statistics/Makefile.in: Delete file lists. Now only handle |
|
7862 subdirectories. |
|
7863 * Makefile.in (SUBDIRS): Add finance. |
|
7864 |
|
7865 * Move the following files from statistics to statistics/base: |
|
7866 |
|
7867 corrcoef.m |
|
7868 kurtosis.m |
|
7869 mahalanobis.m |
|
7870 median.m |
|
7871 ols.m |
|
7872 skewness.m |
|
7873 std.m |
|
7874 |
|
7875 New files, from Kurt Hornik's octave-ci package: |
|
7876 |
|
7877 * finance (new directory): |
|
7878 |
|
7879 fv.m |
|
7880 fvl.m |
|
7881 irr.m |
|
7882 nper.m |
|
7883 npv.m |
|
7884 pmt.m |
|
7885 pv.m |
|
7886 pvl.m |
|
7887 rate.m |
|
7888 vol.m |
|
7889 |
|
7890 * linear-algebra/dmult.m |
|
7891 |
|
7892 * signal: |
|
7893 |
|
7894 arch_fit.m |
|
7895 arch_rnd.m |
|
7896 arch_test.m |
|
7897 arma_rnd.m |
|
7898 autocor.m |
|
7899 autocov.m |
|
7900 autoreg_matrix.m |
|
7901 bartlett.m |
|
7902 blackman.m |
|
7903 diffpara.m |
|
7904 durbinlevinson.m |
|
7905 fractdiff.m |
|
7906 hamming.m |
|
7907 hanning.m |
|
7908 hurst.m |
|
7909 periodogram.m |
|
7910 rectangle_lw.m |
|
7911 rectangle_sw.m |
|
7912 sinetone.m |
|
7913 sinewave.m |
|
7914 spectral_adf.m |
|
7915 spectral_xdf.m |
|
7916 spencer.m |
|
7917 stft.m |
|
7918 synthesis.m |
|
7919 triangle_lw.m |
|
7920 triangle_sw.m |
|
7921 yulewalker.m |
|
7922 |
|
7923 * statistics/base (new directory): |
|
7924 |
|
7925 center.m |
|
7926 cloglog.m |
|
7927 cor.m |
|
7928 cov.m |
|
7929 cut.m |
|
7930 iqr.m |
|
7931 kendall.m |
|
7932 logit.m |
|
7933 mean.m |
|
7934 meansq.m |
|
7935 moment.m |
|
7936 ppplot.m |
|
7937 probit.m |
|
7938 qqplot.m |
|
7939 range.m |
|
7940 ranks.m |
|
7941 run_count.m |
|
7942 spearman.m |
|
7943 statistics.m |
|
7944 studentize.m |
|
7945 table.m |
|
7946 values.m |
|
7947 var.m |
|
7948 |
|
7949 (Replaces cov.m and mean.m with new versions.) |
|
7950 |
|
7951 * statistics/distributions (new directory): |
|
7952 |
|
7953 beta_cdf.m |
|
7954 beta_inv.m |
|
7955 beta_pdf.m |
|
7956 beta_rnd.m |
|
7957 binomial_cdf.m |
|
7958 binomial_inv.m |
|
7959 binomial_pdf.m |
|
7960 binomial_rnd.m |
|
7961 cauchy_cdf.m |
|
7962 cauchy_inv.m |
|
7963 cauchy_pdf.m |
|
7964 cauchy_rnd.m |
|
7965 chisquare_cdf.m |
|
7966 chisquare_inv.m |
|
7967 chisquare_pdf.m |
|
7968 chisquare_rnd.m |
|
7969 discrete_cdf.m |
|
7970 discrete_inv.m |
|
7971 discrete_pdf.m |
|
7972 discrete_rnd.m |
|
7973 empirical_cdf.m |
|
7974 empirical_inv.m |
|
7975 empirical_pdf.m |
|
7976 empirical_rnd.m |
|
7977 exponential_cdf.m |
|
7978 exponential_inv.m |
|
7979 exponential_pdf.m |
|
7980 exponential_rnd.m |
|
7981 f_cdf.m |
|
7982 f_inv.m |
|
7983 f_pdf.m |
|
7984 f_rnd.m |
|
7985 gamma_cdf.m |
|
7986 gamma_inv.m |
|
7987 gamma_pdf.m |
|
7988 gamma_rnd.m |
|
7989 geometric_cdf.m |
|
7990 geometric_inv.m |
|
7991 geometric_pdf.m |
|
7992 geometric_rnd.m |
|
7993 hypergeometric_cdf.m |
|
7994 hypergeometric_inv.m |
|
7995 hypergeometric_pdf.m |
|
7996 hypergeometric_rnd.m |
|
7997 kolmogorov_smirnov_cdf.m |
|
7998 laplace_cdf.m |
|
7999 laplace_inv.m |
|
8000 laplace_pdf.m |
|
8001 laplace_rnd.m |
|
8002 logistic_cdf.m |
|
8003 logistic_inv.m |
|
8004 logistic_pdf.m |
|
8005 logistic_rnd.m |
|
8006 lognormal_cdf.m |
|
8007 lognormal_inv.m |
|
8008 lognormal_pdf.m |
|
8009 lognormal_rnd.m |
|
8010 normal_cdf.m |
|
8011 normal_inv.m |
|
8012 normal_pdf.m |
|
8013 normal_rnd.m |
|
8014 pascal_cdf.m |
|
8015 pascal_inv.m |
|
8016 pascal_pdf.m |
|
8017 pascal_rnd.m |
|
8018 poisson_cdf.m |
|
8019 poisson_inv.m |
|
8020 poisson_pdf.m |
|
8021 poisson_rnd.m |
|
8022 stdnormal_cdf.m |
|
8023 stdnormal_inv.m |
|
8024 stdnormal_pdf.m |
|
8025 stdnormal_rnd.m |
|
8026 t_cdf.m |
|
8027 t_inv.m |
|
8028 t_pdf.m |
|
8029 t_rnd.m |
|
8030 uniform_cdf.m |
|
8031 uniform_inv.m |
|
8032 uniform_pdf.m |
|
8033 uniform_rnd.m |
|
8034 weibull_cdf.m |
|
8035 weibull_inv.m |
|
8036 weibull_pdf.m |
|
8037 weibull_rnd.m |
|
8038 wiener_rnd.m |
|
8039 |
|
8040 * statistics/models (new directory): |
|
8041 |
|
8042 logistic_regression.m |
|
8043 logistic_regression_derivatives.m |
|
8044 logistic_regression_likelihood.m |
|
8045 |
|
8046 * statistics/tests (new directory): |
|
8047 |
|
8048 anova.m |
|
8049 bartlett_test.m |
|
8050 chisquare_test_homogeneity.m |
|
8051 chisquare_test_independence.m |
|
8052 cor_test.m |
|
8053 f_test_regression.m |
|
8054 hotelling_test.m |
|
8055 hotelling_test_2.m |
|
8056 kolmogorov_smirnov_test.m |
|
8057 kolmogorov_smirnov_test_2.m |
|
8058 kruskal_wallis_test.m |
|
8059 manova.m |
|
8060 mcnemar_test.m |
|
8061 prop_test_2.m |
|
8062 run_test.m |
|
8063 sign_test.m |
|
8064 t_test.m |
|
8065 t_test_2.m |
|
8066 t_test_regression.m |
|
8067 u_test.m |
|
8068 var_test.m |
|
8069 welch_test.m |
|
8070 wilcoxon_test.m |
|
8071 z_test.m |
|
8072 z_test_2.m |
|
8073 |
|
8074 Thu Oct 22 12:25:55 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8075 |
|
8076 * time/date.m: Use %Y, not %y in format string, for Matlab 5 |
|
8077 compatibility and to avoid Y2K problems. |
|
8078 |
3190
|
8079 Mon Oct 19 17:26:35 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8080 |
|
8081 * polynomial/polyfit.m: Just use the \ operator to handle the |
|
8082 least-squares solution. |
|
8083 |
3180
|
8084 Thu Sep 3 12:40:47 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8085 |
|
8086 * strings/str2num.m: If eval returns a string, return an empty matrix. |
|
8087 |
|
8088 * strings/strrep.m: Don't convert args to numeric values. |
|
8089 Prevent warnings for empty string args. |
|
8090 From Georg Thimm <thimm@idiap.ch>. |
|
8091 |
|
8092 * strings/strcat.m: Prevent warnings for empty string args. |
|
8093 |
|
8094 Wed Sep 2 17:20:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8095 |
|
8096 * miscellaneous/menu.m: Remove special case for empty string |
|
8097 returned from input(). Add second arg to eval() to catch errors. |
|
8098 |
3178
|
8099 Thu Jun 18 16:32:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8100 |
|
8101 * plot/__plt__.m: Don't call usleep. |
|
8102 |
3175
|
8103 Mon May 18 11:42:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8104 |
|
8105 * linear-algebra/dot.m: New function. |
|
8106 |
|
8107 * strings/lower.m, strings/upper.m: New functions, for Matlab |
|
8108 compatibility. |
|
8109 |
|
8110 Fri May 15 01:16:53 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8111 |
|
8112 * plot/hist.m: Also allow just one output argument. |
|
8113 |
|
8114 Sun May 10 23:00:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8115 |
|
8116 * strings/deblank.m: Make it work if the string is only blanks. |
|
8117 |
|
8118 Tue May 5 00:53:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8119 |
|
8120 * plot/__plt2mv__.m: Delete calls to keyboard. |
|
8121 |
|
8122 Mon May 4 11:43:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8123 |
|
8124 * plot/oneplot.m: Fix typo. |
|
8125 |
3174
|
8126 Wed Apr 22 12:11:27 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8127 |
|
8128 * miscellaneous/flops.m: Allow a single argument too. |
|
8129 |
|
8130 Tue Apr 21 10:18:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8131 |
|
8132 * strings/str2mat.m: Also handle case when there are no empty |
|
8133 strings correctly. |
|
8134 |
|
8135 Mon Apr 20 22:14:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8136 |
|
8137 * strings/isletter.m: New function, for Matlab compatibility. |
|
8138 |
3168
|
8139 Fri Apr 17 10:53:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8140 |
|
8141 * strings/str2mat.m: Handle string matrices too. |
|
8142 |
3167
|
8143 Wed Apr 15 11:16:01 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8144 |
|
8145 * audio/loadaudio.m: Accept "pcm" as another file extension for |
|
8146 linear encoding. |
|
8147 |
|
8148 * audio/saveaudio.m, audio/loadaudio.m, audio/playaudio.m, |
|
8149 audio/record.m: Open files in binary mode. |
|
8150 |
3164
|
8151 Fri Apr 10 10:46:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8152 |
|
8153 * miscellaneous/dump_prefs.m: Use string array for list of values. |
|
8154 Move functionality of dump_1_pref here, but use built-in function |
|
8155 type to extract value, and put it inside try/catch block. |
|
8156 * miscellaneous/dump_1_pref.m: Delete unused function. |
|
8157 |
3162
|
8158 Wed Apr 8 13:17:58 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8159 |
|
8160 * plot/__pltopt1.m__: New file. |
|
8161 * plot/__pltopt.m__: Handle opt as a string array by calling |
|
8162 __pltopt1__ multiple times and returning a string array with rows |
|
8163 corresponding to the rows of opt. |
|
8164 * plot/__plt2ss__.m, plot/__plt2vv__.m, plot/__plt2vm__.m, |
|
8165 plot/__plt2mv__.m, plot/__plt2mm__.m: Handle fmt as a string |
|
8166 array. |
|
8167 |
|
8168 Fri Mar 27 03:00:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8169 |
|
8170 * plot/mplot.m: Fix misspellings of global variables. |
|
8171 Don't call clearplot. |
|
8172 |
|
8173 Tue Mar 17 17:45:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8174 |
|
8175 * plot/subplot.m, plot/multiplot.m: Set gnuplot_command_replot to |
|
8176 "cle;rep" when going in ot multiplot mode. |
|
8177 * plot/oneplot.m: Reset gnuplot_command_replot to "rep" when |
|
8178 switching out of multiplot mode. |
|
8179 |
3156
|
8180 Fri Feb 20 01:31:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
3148
|
8181 |
3156
|
8182 * plot/mplot.m, plot/subplot.m, plot/oneplot.m, plot/multiplot.m, |
|
8183 plot/subwindow.m: Call clearplot after setting up multiplot mode. |
3148
|
8184 |
3141
|
8185 Tue Feb 3 00:18:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8186 |
|
8187 * special-matrix/sylvester_matrix.m: Rename from hadamard.m |
|
8188 |
|
8189 * miscellaneous/bug_report.m: Don't try to get smart with |
|
8190 OCTAVE_HOME. Assume octave-bug can be found in EXEC_PATH. |
|
8191 |
|
8192 * Makefile.in (install): Create separate ls-R files for |
|
8193 $(datadir) and $(libexecdir). |
|
8194 (uninstall): Remove both ls-R files. |
|
8195 |
3136
|
8196 Sat Jan 31 01:09:32 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8197 |
|
8198 * signal/fftshift.m: New file. |
|
8199 |
|
8200 * plot/contour.m: Fix for non-square case. |
|
8201 |
|
8202 * general/randperm.m: New file. |
|
8203 |
|
8204 Fri Jan 30 15:20:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8205 |
|
8206 * specfun/betai.m: Restore file for compatibility with previous |
|
8207 versions. Call betainc with reordered args. |
|
8208 * specfun/gammai.m: Likewise, call gammainc with reordered args. |
|
8209 |
3131
|
8210 Wed Jan 28 22:44:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8211 |
|
8212 * plot/contour.m: Handle discrete contour levels. |
|
8213 |
|
8214 Tue Jan 27 04:31:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8215 |
|
8216 * control/lyap.m: For compatibility with Matlab, solve |
|
8217 A*X + X*A' + C = 0 instead of A'*X + X*A + C = 0. |
|
8218 |
3124
|
8219 Wed Dec 10 00:14:29 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8220 |
|
8221 * specfun/bessel.m: New file. |
|
8222 |
|
8223 * specfun/betai.m, specfun/betainc.m, specfun/gammai.m, |
|
8224 specfun/gammainc.m: Delete. |
|
8225 |
3106
|
8226 Wed Nov 19 00:19:18 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8227 |
|
8228 * image/colormap.m: Initialize __current_color_map__ in global |
|
8229 statement. |
|
8230 * miscellaneous/toc.m: Initialize __tic_toc_timestamp__ in global |
|
8231 statement. |
|
8232 * plot/axis.m: Initialize __current_axis__ in global statement. |
|
8233 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, |
|
8234 plot/subwindow.m: Initialize __multiplot_mode__ in global statement. |
|
8235 |
3103
|
8236 Tue Nov 18 01:35:50 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8237 |
|
8238 * time/tic.m: Rename _time_tic_called to __tic_toc_timestamp__. |
|
8239 * time/toc.m: Likewise. |
|
8240 |
|
8241 * image/colormap.m: Rename CURRENT_COLOR_MAP to __current_color_map__. |
|
8242 |
|
8243 * plot/mplot.m, plot/multiplot.m, plot/subplot.m: Don't do |
|
8244 anything special for automatic_replot when in multiplot mode -- |
|
8245 recent 3.6beta releases handle this correctly. |
|
8246 |
|
8247 * plot/figure.m: Ensure that we are not in multiplot mode before |
|
8248 setting the terminal type. |
|
8249 |
|
8250 * plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/subplot.m, |
|
8251 plot/subwindow.m: Use leading and trailing underscores for |
|
8252 `private' globals. |
|
8253 |
|
8254 * plot/oneplot.m: Don't do anything if gnuplot_has_multiplot is false. |
|
8255 |
3101
|
8256 Fri Nov 14 10:53:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8257 |
|
8258 * plot/__pltopt__.m: Use sprintf instead of strcat when adding TITLE. |
|
8259 |
3091
|
8260 Fri Oct 10 11:18:10 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8261 |
3092
|
8262 * specfun/gammai.m: Avoid problems with whitespace when |
|
8263 constructing matrices. |
|
8264 |
3091
|
8265 * polynomial/polyfit.m: Compute yf correctly. From Seung Lee |
|
8266 <SJL@nrc.gov>. Also return yf in the same orientation as the |
|
8267 original y vector. |
|
8268 |
3085
|
8269 Fri Sep 19 17:04:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8270 |
|
8271 * linear-algebra/cross.m: Use direct formula instead of calling |
|
8272 det three times in a loop. If both args are column (row) vectors, |
|
8273 return a column (row) vector. If they don't match, pay attention |
|
8274 to the value of prefer_column_vectors. |
|
8275 |
5095
|
8276 Thu Aug 28 15:31:20 1997 Rolf Fabian <fabian@olymp.Umwelt.TU-Cottbus.de> |
3085
|
8277 |
|
8278 * polynomial/polyvalm.m: Don't assume orthogonal eigenvectors for |
|
8279 nonsymmetric matrices. |
|
8280 |
|
8281 * general/tril.m: Fix usage message. |
|
8282 |
|
8283 * polynomial/polyvalm.m: Fix error messages. |
|
8284 * polynomial/polyderiv.m: Likewise. |
|
8285 * polynomial/polyval.m: Likewise. |
|
8286 |
3081
|
8287 Wed Aug 13 14:14:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8288 |
|
8289 * strings/blanks.m: Allow blanks(0) to return empty string. |
|
8290 Allow negative arguments if treat_neg_dim_as_zero is true. |
|
8291 |
3063
|
8292 Wed Jun 25 21:26:24 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8293 |
|
8294 * plot/mesh.m: Set noparametric plot mode after plotting. |
|
8295 |
5095
|
8296 Wed Jun 25 21:06:10 1997 Rick Niles <niles@axp745.gsfc.nasa.gov> |
3062
|
8297 |
|
8298 * plot/__pltopt__.m: Handle key/legend names. |
|
8299 Correctly set colors, line styles, and point styles. |
|
8300 |
3061
|
8301 Wed Jun 25 13:34:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8302 |
|
8303 * polynomial/polyfit.m: Return fit y values as second output. |
|
8304 Don't use QR factorization to solve least squares problem. |
|
8305 |
|
8306 Wed Jun 18 10:24:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8307 |
|
8308 * control/dlqr.m: Use ao, not a, to compute k. |
|
8309 |
3024
|
8310 Tue Jun 3 12:16:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8311 |
|
8312 * miscellaneous/path.m: New file. |
|
8313 |
2993
|
8314 Wed May 21 11:45:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8315 |
|
8316 * miscellaneous/bug_report.m: Pass file id to dump_prefs, not file |
|
8317 name. |
|
8318 |
2968
|
8319 Mon May 12 02:04:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8320 |
|
8321 * specfun/erfinv.m: Add missing semicolon. |
|
8322 |
2870
|
8323 Wed Apr 2 22:04:03 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8324 |
|
8325 * miscellaneous/xor.m: Make type of return value logical. |
|
8326 |
2853
|
8327 Fri Mar 28 16:19:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8328 |
|
8329 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
|
8330 warn_comma_in_global_decl. |
|
8331 |
2831
|
8332 Tue Mar 25 22:00:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8333 |
|
8334 * miscellaneous/bug_report.m: Use __OCTAVE_HOME__ to find |
|
8335 octave-bug script. |
|
8336 |
2823
|
8337 Mon Mar 24 16:49:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8338 |
2824
|
8339 * miscellaneous/dump_prefs.m: Delete call to dump_1_pref for |
|
8340 prefer_zero_one_indexing. |
|
8341 |
2823
|
8342 * general/logical.m: New file. |
|
8343 |
2816
|
8344 Sat Mar 15 15:07:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8345 |
|
8346 * general/nextpow2.m: Correctly handle new meaning of is_scalar() |
|
8347 and is_vector(). |
|
8348 |
5095
|
8349 Thu Mar 13 16:36:35 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
2813
|
8350 |
|
8351 * specfun/erfinv.m: Scale update by sqrt (pi) / 2. |
|
8352 Use tolerance of 2 * eps. |
|
8353 |
2811
|
8354 Wed Mar 12 16:57:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8355 |
|
8356 * Makefile.in (install-strip): New target. |
|
8357 * audio/Makefile.in: Ditto. |
|
8358 * control/Makefile.in: Ditto. |
|
8359 * elfun/Makefile.in: Ditto. |
|
8360 * general/Makefile.in: Ditto. |
|
8361 * image/Makefile.in: Ditto. |
|
8362 * io/Makefile.in: Ditto. |
|
8363 * linear-algebra/Makefile.in: Ditto. |
|
8364 * miscellaneous/Makefile.in: Ditto. |
|
8365 * plot/Makefile.in: Ditto. |
|
8366 * polynomial/Makefile.in: Ditto. |
|
8367 * set/Makefile.in: Ditto. |
|
8368 * signal/Makefile.in: Ditto. |
|
8369 * specfun/Makefile.in: Ditto. |
|
8370 * special-matrix/Makefile.in: Ditto. |
|
8371 * startup/Makefile.in: Ditto. |
|
8372 * statistics/Makefile.in: Ditto. |
|
8373 * strings/Makefile.in: Ditto. |
|
8374 |
2809
|
8375 Tue Mar 11 10:14:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8376 |
|
8377 * elfun/coth.m: Write as cosh(x) ./ sinh(x) instead of 1 ./ tanh(x). |
|
8378 |
2798
|
8379 Fri Mar 7 23:06:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8380 |
|
8381 * statistics/corrcoef.m: Make it actually work. |
|
8382 |
2795
|
8383 Thu Mar 6 12:36:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8384 |
2798
|
8385 * statistics/corrcoef.m: Don't fail if single argument is a matrix. |
2795
|
8386 |
2779
|
8387 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775
|
8388 |
|
8389 * Version 2.0.5 released. |
|
8390 |
2745
|
8391 Wed Feb 26 01:48:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8392 |
2749
|
8393 * Makefile.in (maintainer-clean): Also remove configure. |
|
8394 |
2746
|
8395 * signal/fftconv.m: Check inputs with is_vector(), not is_matrix(). |
|
8396 |
2745
|
8397 * general/is_matrix.m: Return zero for empty matrices. |
|
8398 |
|
8399 Tue Feb 25 15:16:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8400 |
|
8401 * linear-algebra/vech.m: Size result just once. |
|
8402 |
2726
|
8403 Sun Feb 23 00:15:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8404 |
|
8405 * general/is_square.m: Handle empty matrices correctly. |
|
8406 * general/is_symmetric.m: Handle empty matrices and strings. |
|
8407 |
2716
|
8408 Sat Feb 22 01:06:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8409 |
|
8410 * polynomial/conv.m: Check inputs with is_vector(), not is_matrix(). |
|
8411 * polynomial/deconv.m: Likewise. |
|
8412 * polynomial/polyderiv.m: Likewise. |
|
8413 * polynomial/polyinteg.m: Likewise. |
|
8414 * polynomial/polyreduce.m: Likewise. |
|
8415 * polynomial/polyval.m: Likewise. |
|
8416 * polynomial/polyvalm.m: Likewise. |
|
8417 * general/postpad.m: Likewise. |
|
8418 * general/prepad.m: Likewise. |
|
8419 |
|
8420 * polynomial/compan.m: Check input with is_vector(), not |
|
8421 is_matrix(). Handle scalar case. |
|
8422 |
2711
|
8423 Fri Feb 21 13:36:58 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8424 |
2715
|
8425 * plot/contour.m: Order data so that it is consistent with |
|
8426 meshgrid and mesh. |
|
8427 |
2711
|
8428 * plot/meshdom.m, plot/meshgrid.m: Change help message. |
|
8429 * plot/sombrero.m: Use meshgrid, not meshdom. |
|
8430 |
2709
|
8431 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702
|
8432 |
|
8433 * Version 2.0.4 released. |
|
8434 |
2706
|
8435 Wed Feb 19 10:30:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8436 |
2702
|
8437 * miscellaneous/paren.m: New file. |
|
8438 |
2693
|
8439 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690
|
8440 |
|
8441 * Version 2.0.3 released. |
|
8442 |
2676
|
8443 Thu Feb 13 19:06:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8444 |
|
8445 * image/saveimage.m: Only clip image data that is actually out of |
|
8446 range. |
|
8447 |
2667
|
8448 Sun Feb 9 19:52:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8449 |
|
8450 * general/is_matrix.m: Scalars, vectors, and empty matrices may |
|
8451 also be considered to be matrices. |
|
8452 |
|
8453 * general/is_vector.m: Scalars may also be considered to be vectors. |
|
8454 |
|
8455 * general/isempty.m: Use size(), not rows() and columns(). |
|
8456 |
|
8457 * plot/contour.m: Convert set to gset. |
|
8458 Set view to 0, 0, 1, 1, not 0, 0, 1.9, 1. |
|
8459 |
2663
|
8460 Fri Feb 7 12:55:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8461 |
|
8462 * specfun/erfinv.m: Fix typo in last change. |
|
8463 |
2650
|
8464 Fri Jan 31 09:30:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8465 |
|
8466 * image/loadimage.m: Make it possible to load files with image |
|
8467 data named X or img. |
|
8468 |
|
8469 * image/default.img: Change name of image from X to img to match |
|
8470 what saveimage does now. |
|
8471 |
|
8472 * image/loadimage.m: Rename X to be img, to match what saveimage |
|
8473 does now. |
|
8474 |
2632
|
8475 Mon Jan 27 13:48:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8476 |
2634
|
8477 * Version 2.0.2 released. |
|
8478 |
2632
|
8479 * plot/__plt__.m: Use usleep() instead of replot to try to avoid |
|
8480 weird missing-lines bug without creating extra plots unecessarily. |
|
8481 |
2624
|
8482 Sat Jan 25 22:37:07 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8483 |
|
8484 * Makefile.in, audio/Makefile.in, control/Makefile.in, |
|
8485 elfun/Makefile.in, general/Makefile.in, image/Makefile.in, |
|
8486 io/Makefile.in, linear-algebra/Makefile.in, |
|
8487 miscellaneous/Makefile.in, plot/Makefile.in, |
|
8488 polynomial/Makefile.in, set/Makefile.in, signal/Makefile.in, |
|
8489 specfun/Makefile.in, special-matrix/Makefile.in, |
|
8490 startup/Makefile.in, statistics/Makefile.in, strings/Makefile.in, |
|
8491 time/Makefile.in (bin-dist): New target. |
|
8492 |
2621
|
8493 Wed Jan 22 11:28:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8494 |
|
8495 * specfun/erfinv.m: Avoid A([]) = X, X != [] error. |
|
8496 |
|
8497 Tue Jan 21 11:16:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8498 |
|
8499 * miscellaneous/xor.m: Make it work. |
|
8500 |
2613
|
8501 Mon Jan 20 12:28:34 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8502 |
|
8503 * plot/sombrero.m: Doc fix. |
|
8504 |
2602
|
8505 Tue Jan 7 00:16:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8506 |
|
8507 * Version 2.0.1 released. |
|
8508 |
2601
|
8509 Thu Dec 19 22:16:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8510 |
|
8511 * elfun/lcm.m: Replace missing if statement. |
|
8512 |
|
8513 * elfun/gcd.m: Report error if no input args. |
|
8514 * elfun/lcm.m: Likewise. |
|
8515 |
2597
|
8516 Mon Dec 16 15:23:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8517 |
|
8518 * Makefile.in (install): Use ls -LR to create ls-R database. |
|
8519 Also list contents of $libexecdir/octave in ls-R database. |
|
8520 |
2583
|
8521 Tue Dec 10 01:43:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8522 |
|
8523 * Version 2.0 released. |
|
8524 |
2575
|
8525 Fri Dec 6 15:23:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8526 |
|
8527 * Version 1.94. |
|
8528 |
2558
|
8529 Sun Dec 1 20:55:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8530 |
|
8531 * strings/str2num.m: New file. |
|
8532 |
2554
|
8533 Wed Nov 20 01:00:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8534 |
|
8535 * Version 1.93. |
|
8536 |
2540
|
8537 Tue Nov 19 15:13:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8538 |
|
8539 * linear-algebra/commutation_matrix.m, linear-algebra/cross.m, |
|
8540 linear-algebra/duplication_matrix.m, linear-algebra/vec.m, |
|
8541 linear-algebra/vech.m: New files from Kurt Hornik. |
|
8542 |
|
8543 * general/nextpow2.m, general/shift.m, general/diff.m, |
|
8544 general/common_size.m: New files from Kurt Hornik. |
|
8545 |
|
8546 * miscellaneous/bincoeff.m, miscellaneous/xor.m: |
|
8547 New files from Kurt Hornik. |
|
8548 |
|
8549 * signal/detrend.m: New file from Kurt Hornik. |
|
8550 |
|
8551 * specfun/betai.m, specfun/gammai.m, specfun/erfinv.m, |
|
8552 specfun/pow2.m, specfun/log2.m: |
|
8553 New files and updates from Kurt Hornik. |
|
8554 |
2523
|
8555 Fri Nov 15 18:13:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8556 |
|
8557 * plot/__plt__.m: Add explicit replot after last command is |
|
8558 issued, to force all lines to be displayed. Hmm. |
|
8559 |
2512
|
8560 Thu Nov 14 00:06:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8561 |
2520
|
8562 * plot/axis.m, plot/bottom_title.m, plot/contour.m, |
|
8563 plot/figure.m, plot/grid.m, plot/loglog.m, plot/mesh.m, |
|
8564 plot/mplot.m, plot/multiplot.m, plot/oneplot.m, plot/plot.m, |
|
8565 plot/plot_border.m, plot/polar.m, plot/semilogx.m, |
|
8566 plot/semilogy.m, plot/subplot.m, plot/subwindow.m, plot/title.m, |
|
8567 plot/top_title.m, plot/xlabel.m, plot/ylabel.m, plot/zlabel.m: |
|
8568 Uset gset, not set. |
|
8569 |
2512
|
8570 * Version 1.92. |
|
8571 |
2482
|
8572 Thu Nov 7 12:43:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8573 |
2486
|
8574 * image/saveimage.m: When writing PostScript, name Octave as the |
|
8575 almighty Creator. Use single call to fprintf instead of looping. |
|
8576 |
|
8577 * image/Makefile.in: Delete references to octtopnm. |
|
8578 |
|
8579 * general/logspace.m: Doc fix. |
|
8580 |
2482
|
8581 * Version 1.91. |
|
8582 |
2458
|
8583 Sat Nov 2 21:06:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8584 |
|
8585 * image/image.m: Use tmpnam() instead of home-brew scheme. |
|
8586 |
|
8587 * audio/record.m, audio/playaudio.m: Use tmpnam() instead of |
|
8588 octave_tmp_file_name(). Use unwind_protect to ensure tmp file is |
|
8589 deleted. |
|
8590 * miscellaneous/bug_report.m: Likewise. Also use unlink() instead |
|
8591 of a system() command to delete the tmp file. |
|
8592 |
2452
|
8593 Wed Oct 30 17:19:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8594 |
|
8595 * Version 1.90. |
|
8596 |
|
8597 * Makefile.in (DISTFILES): Add ChangeLog. |
|
8598 |
2360
|
8599 Thu Oct 10 17:31:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8600 |
|
8601 * plot/subplot.m, plot/multiplot.m, plot/mplot.m: |
|
8602 Don't check for string value of automatic_replot. |
|
8603 |
|
8604 * image/ind2ind.m, image/ind2rgb.m, image/ind2gray.m: |
|
8605 Temporarily set do_fortran_indexing to 1, not "true". |
|
8606 |
|
8607 * miscellaneous/menu.m: Temporarily set page_screen_output to 0, |
|
8608 not "false". |
|
8609 |
|
8610 * linear-algebra/cond.m: Don't compare propagate_empty_matrices to |
|
8611 "false". |
|
8612 |
2355
|
8613 Tue Aug 20 18:27:36 1996 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
|
8614 |
|
8615 * strings/substr.m: Allow negative OFFSET. LEN is now optional. |
|
8616 |
2330
|
8617 Mon Jul 15 16:15:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8618 |
|
8619 * miscellaneous/bug_report.m: Don't redirect output to /dev/tty in |
|
8620 system command. |
|
8621 |
|
8622 Fri Jul 12 12:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8623 |
|
8624 * __plr1__.m: Renamed from polar_int_1.m. |
|
8625 * __plr2__.m: Renamed from polar_int_2.m. |
|
8626 * __plr__.m: Renamed from polar_int.m. |
|
8627 * __plt1__.m: Renamed from plot_int_1.m. |
|
8628 * __plt2__.m: Renamed from plot_int_2.m. |
|
8629 * __plt2mm__.m: Renamed from plot_2_m_m_.m. |
|
8630 * __plt2mv__.m: Renamed from plot_2_m_v_.m. |
|
8631 * __plt2ss__.m: Renamed from plot_2_s_s_.m. |
|
8632 * __plt2vm__.m: Renamed from plot_2_v_m_.m. |
|
8633 * __plt2vv__.m: Renamed from plot_2_v_v_.m. |
|
8634 * __plt__.m: Renamed from plot_int.m. |
|
8635 * __pltopt__.m: Renamed from plot_opt.m. |
|
8636 Change all callers. |
|
8637 |
|
8638 Thu Jul 11 17:24:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8639 |
|
8640 * All .m files: Add regular Author:, Created:, and Adapted-By: |
|
8641 comments like those found in Emacs lisp files. |
|
8642 |
|
8643 Mon Jun 24 04:16:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8644 |
|
8645 * All .m files: Change comment style. |
|
8646 |
|
8647 Fri Jun 14 01:42:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8648 |
|
8649 * bottom_title.m, mplot.m, multiplot.m, oneplot.m, plot_border.m, |
|
8650 subplot.m, subwindow.m, top_title.m: |
|
8651 Print error message if gnuplot_has_multiplot is not true. |
|
8652 |
|
8653 Thu Jun 6 00:18:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8654 |
|
8655 * plot/figure.m: New function. |
|
8656 |
|
8657 Wed Jun 5 18:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8658 |
|
8659 * strings/strrep.m: New function. |
|
8660 |
|
8661 Thu May 23 15:04:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8662 |
|
8663 * strings/bin2dec.m, strings/blanks.m, strings/deblank.m, |
|
8664 strings/dec2bin.m, strings/dec2hex.m, strings/findstr.m, |
|
8665 strings/hex2dec.m, strings/index.m, strings/rindex.m, |
|
8666 strings/split.m, strings/str2mat.m, strings/substr.m: |
|
8667 New functions from Kurt Hornik, heavily modified by jwe. |
|
8668 |
|
8669 * general/reshape.m: Allow strings to be reshaped too. |
|
8670 |
|
8671 * strings/strcmp.m: No longer need to set implicit_str_to_num_ok. |
|
8672 Always return a scalar. |
|
8673 |
|
8674 Wed May 22 19:52:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8675 |
|
8676 * polynomial/polyfit.m: Make orientation of result compatible with |
|
8677 Matlab. |
|
8678 |
|
8679 Sat May 18 17:32:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8680 |
|
8681 * polynomial/polyfit.m: Add missing close paren. |
|
8682 |
|
8683 Thu May 16 10:23:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8684 |
|
8685 * plot/plot_opt.m: Set compatibility arg in call to sscanf. |
|
8686 |
|
8687 * io/scanf.m: Delete. |
|
8688 |
|
8689 Mon May 13 09:37:38 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8690 |
|
8691 * statistics/median.m: Fix typo in usage message. |
|
8692 |
|
8693 Wed Apr 24 02:45:52 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8694 |
|
8695 * miscellaneous/popen2.m: New file. |
|
8696 |
|
8697 Wed Apr 17 18:34:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8698 |
|
8699 * configure.in (AC_OUTPUT): Add io/Makefile. |
|
8700 |
|
8701 * io: New directory. |
|
8702 * Makefile.in (SUBDIRS): Add it to the list. |
|
8703 |
|
8704 * miscellaneous/flops.m: New file. |
|
8705 |
|
8706 Fri Mar 22 04:40:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8707 |
|
8708 * miscellaneous/cputime.m: Return three arguments instead of a |
|
8709 vector, for compatibility with previous versions and with Matlab |
|
8710 (which only returns one scalar value). |
|
8711 |
|
8712 Wed Mar 20 05:09:48 1996 Kurt Hornik <Kurt.Hornik@tuwien.ac.at> |
|
8713 |
|
8714 * general/triu.m: Compute lower bound on loop index correctly. |
|
8715 * general/tril.m: Likewise, for upper bound. |
|
8716 |
|
8717 Tue Feb 6 09:29:43 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8718 |
|
8719 * image/saveimage.m: For color images, make sure indices into |
|
8720 temporary colormap and result matrix have proper orientation. |
|
8721 Set grey flag correctly. |
|
8722 |
|
8723 Tue Jan 9 00:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8724 |
|
8725 * statistics/std.m: Use better formula (from Jim Van Zandt |
|
8726 jrv@vanzandt.mv.com). |
|
8727 |
|
8728 Sun Jan 7 20:12:14 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8729 |
|
8730 * meshgrid.m: New file (from Jim Van Zandt jrv@vanzandt.mv.com). |
|
8731 * mesh.m: Transpose Z if only one arg. |
|
8732 Handle case of all three args being matrices (from Jim Van Zandt |
|
8733 jrv@vanzandt.mv.com). |
|
8734 * meshdom.m: Undo previous change. |
|
8735 |
|
8736 Wed Dec 20 13:48:12 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
8737 |
|
8738 * configure.in (AC_OUTPUT): Add audio/Makefile |
|
8739 |
|
8740 Thu Nov 16 13:07:07 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8741 |
|
8742 * audio: New directory of files from Kurt Hornik and Andreas |
|
8743 Weingessel. |
|
8744 * audio/Makefile.in: New file. |
|
8745 * Makefile.in (SUBDIRS): Add audio to the list. |
|
8746 |
|
8747 Mon Nov 6 07:29:35 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8748 |
|
8749 * polynomial/polyfit.m: Use `economy-stle' QR factorization. |
|
8750 |
|
8751 Fri Nov 3 00:38:46 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8752 |
|
8753 * plot/mesh.m: Require, length (y) == rows (z) and length (x) == |
|
8754 columns (z), not the other way around. |
|
8755 * plot/meshdom.m: Don't reverse order of elements in y. |
|
8756 |
|
8757 Thu Nov 2 23:56:53 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8758 |
|
8759 * plot/axis.m: Return current axis if nargin == 0. |
|
8760 |
|
8761 Tue Oct 31 04:11:28 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8762 |
|
8763 * polynomial/roots.m: Updates from Kurt Hornik. |
|
8764 |
|
8765 * polynomial/polyder.m: New file. |
|
8766 |
|
8767 * polynomial/polyderiv.m: Give return value and arg different names. |
|
8768 |
|
8769 Mon Oct 30 23:27:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8770 |
|
8771 * specfun/betainc.m: New file. |
|
8772 * specfun/gammainc.m: New file. |
|
8773 |
|
8774 Wed Oct 18 23:45:52 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8775 |
|
8776 * general/strerror.m: New file. |
|
8777 * general/perror.m: Implement using strerror(). |
|
8778 |
|
8779 Thu Oct 5 03:21:36 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8780 |
|
8781 * plot/bottom_title.m plot/mplot.m plot/multiplot.m plot/oneplot.m |
|
8782 plot/plot_border.m plot/subplot.m plot/subwindow.m |
|
8783 plot/top_title.m plot/zlabel.m: New files, from Vinayak Dutt. |
|
8784 |
|
8785 * image/saveimage.m: Round img values first. |
|
8786 |
|
8787 Tue Oct 3 03:55:18 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8788 |
|
8789 * control/abcddim.m control/are.m general/tril.m general/triu.m |
|
8790 image/saveimage.m linear-algebra/kron.m linear-algebra/norm.m |
|
8791 linear-algebra/null.m miscellaneous/etime.m plot/contour.m |
|
8792 plot/mesh.m plot/plot_int.m plot/polar_int.m |
|
8793 special-matrix/hankel.m special-matrix/toeplitz.m |
|
8794 tuwien/strfun/split.m: Add missing semicolons. |
|
8795 |
|
8796 * plot/polar_int.m: Use .', not ' to make vectors conform. |
|
8797 |
|
8798 * image/Makefile.in: Don't build or install octtoppm. |
|
8799 |
|
8800 * image/saveimage.m: Rewrite to avoid using octoppm and pbm |
6653
|
8801 routines so that people who don't have the pbm stuff installed |
2330
|
8802 can still use this function. |
|
8803 |
|
8804 Mon Oct 2 05:10:44 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8805 |
|
8806 * image/saveimage.m: Better error checking, clean up a bit. |
|
8807 |
|
8808 Tue Sep 26 00:04:56 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8809 |
|
8810 * plot/plot_opt.m: Change more to more_opts as a temporary fix to |
|
8811 avoid conflict with new built-in text-style function more. |
|
8812 |
|
8813 * linear-algebra/norm.m: Also allow 2nd arg == "inf". |
|
8814 |
|
8815 * startup/Makefile.in (install): Also install octaverc in |
|
8816 $localfcnfiledir/startup/octavrc. |
|
8817 |
|
8818 Wed Sep 20 00:01:30 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8819 |
|
8820 * mkinstalldirs: New file. |
|
8821 * Makefile.in (DISTFILES): Add it to the list. |
|
8822 |
|
8823 * Makefile.in (DISTFILES): Distribute configure.in and configure. |
|
8824 |
|
8825 Thu Sep 14 03:56:19 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8826 |
|
8827 * special-matrix/hankel.m: Compatibility fix. Complain if |
|
8828 r(1) != c(nr), not if r(1) != c(1). |
|
8829 |
|
8830 * signal/filter.m: Doc fix. |
|
8831 |
|
8832 Wed Sep 13 03:19:05 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8833 |
|
8834 * miscellaneous/cputime.m: Use new resource structure names (no |
|
8835 ru_ or tv_ prefixes). |
|
8836 |
|
8837 Tue Sep 12 02:20:44 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8838 |
|
8839 * time/ctime.m: Fix doc string and usage message. |
|
8840 |
|
8841 Mon Sep 11 18:43:46 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8842 |
|
8843 * time/clock.m: Use new time structure names (no tm_ prefix). |
|
8844 |
|
8845 Thu Aug 24 20:53:08 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
8846 |
|
8847 * control/c2d.m: Make function work for any value of |
|
8848 whitespace_in_literal_matrix. |
|
8849 * control/dare.m: Likewise. |
|
8850 * control/tzero.m: Likewise. |
|
8851 * elfun/gcd.m: Likewise. |
|
8852 * elfun/lcm.m: Likewise. |
|
8853 * general/postpad.m: Likewise. |
|
8854 * general/prepad.m: Likewise. |
|
8855 * linear-algebra/kron.m: Likewise. |
|
8856 * miscellaneous/etime.m: Likewise. |
|
8857 * polynomial/conv.m: Likewise. |
|
8858 * polynomial/deconv.m: Likewise. |
|
8859 * polynomial/poly.m: Likewise. |
|
8860 * polynomial/roots.m: Likewise. |
|
8861 * signal/filter.m: Likewise. |
|
8862 * signal/freqz.m: Likewise. |
|
8863 * signal/fftfilt.m: Likewise. |
|
8864 |
|
8865 Tue Jun 6 22:34:04 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8866 |
|
8867 * miscellaneous/is_leap_year.m: Make work for vector args. |
|
8868 |
|
8869 Tue May 2 16:18:33 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8870 |
|
8871 * plot/polar_int_2.m: Add missing semicolons. |
|
8872 Set theta = theta', not rho'. |
|
8873 |
|
8874 Sun Apr 30 11:19:11 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8875 |
|
8876 * polynomial/roots.m: Make it work for any value of |
|
8877 whitespace_in_literal_matrix. |
|
8878 |
|
8879 Mon Apr 10 09:37:17 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8880 |
|
8881 * configure.in: New file. |
|
8882 |
|
8883 Thu Mar 30 13:29:35 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8884 |
|
8885 * control/lyap.m: Add missing semicolon. |
|
8886 |
|
8887 * miscellaneous/cputime.m: New function file. |
|
8888 |
|
8889 Wed Mar 29 22:50:49 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8890 |
|
8891 * time: New directory. |
|
8892 * time/asctime.m, time/clock.m, time/ctime.m, time/date.m: |
|
8893 New function files. |
|
8894 * time/Makefile.in: New file. |
|
8895 * Makefile.in (SUBDIRS): Add time. |
|
8896 |
|
8897 Thu Mar 23 15:42:26 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8898 |
|
8899 * polynomial/polyreduce.m: Make sure initial index is not empty. |
|
8900 |
|
8901 Tue Mar 14 23:38:24 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8902 |
|
8903 * plot/plot_int_1.m: Transpose data with .', not '. |
|
8904 |
|
8905 Fri Mar 10 10:40:13 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8906 |
|
8907 * Makefile.in (install uninstall clean mostlyclean distclean |
|
8908 realclean): Use SUBDIR_FOR_COMMAND. Combine actions. |
|
8909 |
|
8910 Sun Feb 26 22:18:22 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8911 |
|
8912 * Makefile.in (install): Create ls-R database file. |
|
8913 (uninstall): Delete it. |
|
8914 |
|
8915 Fri Feb 24 10:36:01 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
8916 |
5378
|
8917 * image/saveimage.m: Fix typo. |
2330
|
8918 |
|
8919 See ChangeLog.1 in the top level directory for earlier changes. |