3887
|
1 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
|
2 |
|
3 * f2c-main.c (MAIN_, MAIN__): Delete. Use F77_DUMMY_MAIN instead. |
|
4 * file-stat.cc (file_stat::update_internal, file_stat::copy): |
|
5 Use HAVE_STRUCT_STAT_ST_RDEV instead of HAVE_ST_RDEV. |
|
6 Use HAVE_STRUCT_STAT_ST_BLKSIZE instead of HAVE_ST_BLKSIZE. |
|
7 Use HAVE_STRUCT_STAT_ST_BLOCKS instead of HAVE_ST_BLOCKS. |
|
8 * file-stat.h: Likewise. |
|
9 * oct-time.cc (octave_time::octave_time, octave_base_tm::strftime, |
|
10 octave_base_tm::init, octave_strptime::init): Use HAVE_TM_ZONE |
|
11 instead of HAVE_STRUCT_TM_TM_ZONE. |
|
12 * strftime.c: Likewise. |
|
13 * lo-specfun.cc, mach-info.cc, CColVector.cc, CMatrix.cc, |
|
14 CRowVector.cc, CmplxAEPBAL.cc, CmplxCHOL.cc, CmplxHESS.cc, |
|
15 CmplxLU.cc, CmplxQR.cc, CmplxQRP.cc, CmplxSCHUR.cc, CmplxSVD.cc, |
|
16 CollocWt.cc, DASSL.cc, EIG.cc, LSODE.cc, NLEqn.cc, Quad.cc, |
|
17 dColVector.cc, dMatrix.cc, dRowVector.cc, dbleAEPBAL.cc, |
|
18 dbleCHOL.cc, dbleHESS.cc, dbleLU.cc, dbleQR.cc, dbleQRP.cc, |
|
19 dbleSCHUR.cc, dbleSVD.cc: Use F77_FUNC instead of F77_FCN. |
|
20 |
3883
|
21 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
|
22 |
|
23 * CmplxQR.cc (ComplexQR::init): Use economy QR decomposition |
|
24 internally when the user requests it. |
|
25 * CmplxQRP.cc (ComplexQRP::init): Ditto. |
|
26 * dbleQR.cc (QR::init): Ditto. |
|
27 * dbleQRP.cc (QRP::init): Ditto. |
|
28 |
3874
|
29 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
30 |
|
31 * oct-fftw.cc (octave_fftw::fft2d): Avoid having to find a |
|
32 definition for NULL by passing 0 as the last arg to fftwnd_one. |
|
33 (octave_fftw::ifft2d): Likewise. |
|
34 |
3873
|
35 2002-02-22 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
|
36 |
|
37 * lo-mappers.cc (arg): Simply call atan2 (0.0, x). |
|
38 |
3867
|
39 2001-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
40 |
|
41 * data-conv.cc (LS_DO_READ): Don't do anything unless len > 0. |
|
42 (LS_DO_WRITE): Likewise. |
|
43 |
3864
|
44 2001-11-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
45 |
|
46 * mx-inlines.cc (MX_CUMMULATIVE_OP): New macro. |
|
47 * CMatrix.cc (ComplexMatrix::cumprod, ComplexMatrix::cumsum): Use it. |
|
48 * dMatrix.cc (Matrix::cumprod, Matrix::cumsum): Likewise. |
|
49 |
|
50 * mx-inlines.cc (MX_REDUCTION_OP, MX_REDUCTION_OP_COL_EXPR, |
|
51 MX_REDUCTION_OP_ROW_EXPR): New macros. |
|
52 * dMatrix.cc (Matrix::prod, Matrix::sum): Use MX_REDUCTION_OP. |
|
53 * CMatrix.cc (ComplexMatrix::prod, ComplexMatrix::sum): Likewise. |
|
54 |
|
55 * mx-inlines.cc (MX_BASE_REDUCTION_OP): New macro. |
|
56 DIM == -1 now means no orientation for vector sums. |
|
57 * dMatrix.cc (ComplexMatrix::sumsq): Use it. |
|
58 * CMatrix.cc (ComplexMatrix::sumsq): Likewise. |
|
59 |
3858
|
60 2001-11-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
61 |
|
62 * Range.cc (Range::nelem_internal): Special case ranges that must |
|
63 have zero elements. |
|
64 |
3854
|
65 2001-11-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
66 |
3857
|
67 * Makefile.in: Split out readline and pathsearch functionality |
|
68 into separate liboct-readline and liboct-pathsearch libraries. |
|
69 |
3854
|
70 * oct-rl-edit.c (octave_rl_clear_screen): Call rl_clear_screen, |
3857
|
71 not _rl_clear_screen. Temporarily redefine rl_redisplay_function |
|
72 to do nothing for this call to rl_clear_screen. |
3854
|
73 |
3849
|
74 2001-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
75 |
|
76 * DASSL.cc (ddassl_f): Handle IRES returned from user supplied |
|
77 function. |
|
78 * DAEFunc.h (DAERHSFunc): Add IRES to prototype. |
|
79 |
3838
|
80 2001-06-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
81 |
|
82 * dMatrix.cc (Matrix::inverse, Matrix::solve, Matrix::determinant, |
|
83 Matrix::inverse): Handle the case of rcond being a NaN the same as |
|
84 a signular matrix. From "Jianming" <caijianming@yahoo.co.uk>. |
|
85 * CMatrix.cc (ComplexMatrix::inverse, ComplexMatrix::solve, |
|
86 ComplexMatrix::determinant, ComplexMatrix::inverse): Likewise. |
|
87 |
3836
|
88 2001-05-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
89 |
|
90 * chMatrix.cc (charMatrix::row_as_string): New parameter, raw. |
|
91 |
|
92 * Array-i.cc, Array-s.cc, Array-d.cc, Array-ch.cc, Array-C.cc, |
|
93 Array-b.cc: Instantiate three arg assign functions. |
|
94 |
|
95 * ArrayN.cc (assign (ArrayN<LT>&, const ArrayN<RT>&, const LT&)): |
|
96 New arg, resize_fill_value. |
|
97 * ArrayN.h: Provide declaration. |
|
98 (assign (ArrayN<LT>&, const ArrayN<RT>&): Define here by calling |
|
99 three arg version. |
|
100 |
|
101 * Array3.cc (assign (Array3<LT>&, const Array3<RT>&, const LT&)): |
|
102 New arg, resize_fill_value. |
|
103 * Array3.h: Provide declaration. |
|
104 (assign (Array3<LT>&, const Array3<RT>&): Define here by calling |
|
105 three arg version. |
|
106 |
|
107 * Array2.cc (assign (Array2<LT>&, const Array2<RT>&, const LT&)): |
|
108 New arg, resize_fill_value. |
|
109 * Array2.h: Provide declaration. |
|
110 (assign (Array2<LT>&, const Array2<RT>&): Define here by calling |
|
111 three arg version. |
|
112 |
|
113 * Array.cc (assign (Array<LT>&, const Array<RT>&, const LT&)): |
|
114 New arg, resize_fill_value. |
|
115 * Array.h: Provide declaration. |
|
116 (assign (Array<LT>&, const Array<RT>&): Define here by calling |
|
117 three arg version. |
|
118 |
3833
|
119 2001-05-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
120 |
|
121 * pathsearch.cc (dir_path::set_program_name): Set the environment |
|
122 variables SELFAUTOLOC, SELFAUTODIR, SELFAUTOPARENT, and TEXMFDBS |
|
123 to the empty string. |
|
124 |
3832
|
125 2001-05-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
126 |
|
127 * Array2.h (Array2<T>::operator = (const Array2<T>&)): |
|
128 Don't check for rep != a.rep. |
|
129 |
3827
|
130 2001-05-02 Mumit Khan <khan@nanotech.wisc.edu> |
|
131 |
|
132 * oct-fftw.h, oct-fftw.cc: New files. |
|
133 * Makefile.in (INCLUDES, SOURCES): Add new files. |
|
134 * CMatrix.cc (ComplexMatrix::{fourier, ifourier, fourier2d, |
|
135 ifourier2d}): Use fftw if available. |
|
136 * dMatrix.cc (Matrix::{fourier, ifourier, fourier2d, ifourier2d}): |
|
137 Likewise. |
|
138 |
3821
|
139 2001-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
140 |
|
141 * Makefile.in (install-lib): Don't use mk-libdir-link. |
|
142 (install-inc): Don't use mk-includedir-link. |
|
143 |
3803
|
144 2001-02-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
145 |
|
146 * lo-cutils.c (octave_gethostname): New function. |
|
147 * lo-utils.h: Provide declaration. |
|
148 * oct-env.cc (octave_env::do_get_host_name): |
|
149 Call octave_gethostname, instead of gethostname. |
|
150 |
|
151 * lo-cutils.c (gethostname): Define here. |
|
152 * lo-sysdep.cc: Not here. |
|
153 |
3786
|
154 2001-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
155 |
|
156 * lo-cutils.c: Don't declare strptime. |
|
157 (oct_strptime): Cast return type of strptime to char*. |
|
158 |
3777
|
159 2001-02-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
160 |
3779
|
161 * oct-rl-edit.c (octave_rl_newline): Call rl_newline with two args. |
|
162 (octave_rl_set_name): call rl_re_read_init_file with two args. |
|
163 (octave_rl_read_init_file): Ditto. |
|
164 (octave_rl_clear_undo_list): Call rl_free_undo_list, not |
|
165 free_undo_list. |
|
166 (octave_rl_completion_matches): Call rl_completion_matches, not |
|
167 completion_matches. |
|
168 (octave_rl_enable_paren_matching): New function. |
|
169 (octave_rl_set_blink_matching_paren_flag): Delete. |
|
170 (octave_rl_get_blink_matching_paren_flag): Delete. |
|
171 |
3777
|
172 * lo-mappers.h, lo-mappers.cc (log10 (const Complex&), |
|
173 tanh (const Complex&)): Declare and define if not |
|
174 CXX_ISO_COMPLIANT_LIBRARY. |
|
175 |
3776
|
176 2001-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
177 |
|
178 * lo-mappers.h (tanh (const Complex&)): Only declare if not |
|
179 CXX_ISO_COMPLIANT_LIBRARY. |
|
180 |
3775
|
181 2001-02-05 Mumit Khan <khan@nanotech.wisc.edu> |
|
182 |
3776
|
183 * lo-mappers.cc (tanh (const Complex&)): Only define if not |
|
184 CXX_ISO_COMPLIANT_LIBRARY. |
|
185 |
3775
|
186 * Makefile.in (TEMPLATE_AR, TEMPLATE_ARFLAGS): Use to create |
|
187 archive libraries containing templates. |
|
188 |
|
189 * ArrayN-idx.h (freeze, all_ok, any_orig_empty, any_zero_len, |
|
190 get_zero_len_size, all_colon_equiv): Inline. |
|
191 (ArrayN<T>::index): Rename idx to arr_idx. |
|
192 * ArrayN.cc (ArrayN<T>::index, ArrayN<T>::compute_index, |
|
193 ArrayN<T>::get_size, ArrayN<T>::range_error, ArrayN<T>::range_error, |
|
194 increment_index, ArrayN<T>::resize, ArrayN<T>::insert): Likewise. |
|
195 |
|
196 2001-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
197 |
|
198 * lo-mappers.h, lo-mappers.cc (tan (const Complex&), |
|
199 log10 (const Complex&)): Delete. |
|
200 |
|
201 * oct-cmplx.h: Define forwarding functions for real, imag, abs, |
|
202 arg, norm, conj, polar, cos, cosh, exp, log, log10, pow, sin, |
|
203 sinh, sqrt, tan, and tanh. |
|
204 |
3769
|
205 2001-01-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
206 |
|
207 * file-ops.cc, help.cc, load-save.cc, pr-output.cc, utils.cc: |
|
208 Add std:: namespace qualifier as needed. |
|
209 |
|
210 * mx-inlines.cc: Rename all functions with mx_inline_ prefix. |
|
211 Change all uses to match. |
|
212 |
3767
|
213 2001-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
214 |
|
215 * lo-cutils.c: Don't delcare strptime. |
|
216 |
3760
|
217 2001-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
218 |
|
219 * CMatrix.cc (operator * (const ComplexMatrix&, const ComplexMatrix&): |
|
220 Return correct size result for empty matrix case. |
|
221 |
3757
|
222 2000-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
223 |
|
224 * lo-mappers.cc (xmin (const Complex&, const Complex& y): |
|
225 If args are equal in magnitude, return first arg instead of |
|
226 second. |
|
227 |
3752
|
228 2000-12-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
229 |
3755
|
230 * Range.cc (Range::nelem_internal): Call tfloor, not round, but |
|
231 then try harder to compute correct number of elements. |
3753
|
232 |
3752
|
233 * dMatrix.cc (Matrix::lssolve): Ask DGELSS for size of work vector. |
|
234 * CMatrix.cc (ComplexMatrix::lssolve): Likewise, for ZGELSS. |
|
235 |
3750
|
236 2000-12-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
237 |
3751
|
238 * Range.cc (Range::nelem_internal): Call round here, not tfloor. |
|
239 Rename n_intervals to be n_elt. |
|
240 |
3750
|
241 * strptime.c: Surround everything after including config.h in |
|
242 #ifndef HAVE_STRPTIME ... #endif. |
|
243 |
3742
|
244 2000-11-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
245 |
|
246 * Array-idx.h (assign): When resizing, cast fill value to LT. |
|
247 * Array2-idx.h (MAYBE_RESIZE_LHS): Likewise. |
|
248 |
3741
|
249 2000-11-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
250 |
|
251 * MArray-defs.h: Protect against multiple inclusion. |
|
252 |
3739
|
253 2000-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
254 |
|
255 * data-conv.h (enum save_type): Move LS_U_LONG and LS_LONG to the |
|
256 end of the list, to be compatible with previous versions of Octave. |
|
257 |
3736
|
258 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
259 |
|
260 * oct-time.cc (DEFINE_SET_INT_FIELD_FCN): Don't check limits here, |
|
261 since mktime is supposed to `normalize' the results for us. |
|
262 |
3731
|
263 2000-10-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
264 |
|
265 * Array2.cc (Array2<T>::transpose): Avoid copy for empty matrices |
3732
|
266 and vectors. Use xelem for faster access to elements when copying. |
3731
|
267 |
3726
|
268 2000-10-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
269 |
|
270 * CMatrix.cc (ComplexMatrix::cumsum, ComplexMatrix::cumprod): |
|
271 Correct indexing for operation across rows. |
|
272 * dMatrix.cc (Matrix::cumsum, Matrix::cumprod): Likewise. |
|
273 |
3725
|
274 2000-10-12 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
275 |
|
276 * Array2-idx.h (Array2<T>::index (idx_vector&)): Avoid copying |
|
277 elements if arg is a colon. |
|
278 |
3723
|
279 2000-10-12 Cai Jianming <caijianming@yahoo.co.uk> |
|
280 |
3795
|
281 * dMatrix.cc (Matrix::cumprod (int) const): New arg, DIM. |
3723
|
282 (Matrix::cumsum (int) const): Likewise. |
|
283 (Matrix::prod (int) const): Likewise. |
|
284 (Matrix::sum (int) const): Likewise. |
|
285 (Matrix::sumsq (int) const): Likewise. |
|
286 * CMatrix.cc (ComplexMatrix::cumprod (int dim) const): Likewise. |
|
287 (ComplexMatrix::cumsum (int) const): Likewise. |
|
288 (ComplexMatrix::prod (int) const): Likewise. |
|
289 (ComplexMatrix::sum (int) const): Likewise. |
|
290 (ComplexMatrix::sumsq (int) const): Likewise. |
|
291 |
3722
|
292 2000-10-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
293 |
|
294 * Array2-idx.h (Array2<T>::index (idx_vector&)): Correctly set |
|
295 size if Array<T>::index returns an empty array. |
|
296 |
3710
|
297 2000-08-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
298 |
|
299 * file-ops.cc (file_ops::link, file_ops::symlink, |
|
300 file_ops::readlink): New functions. |
|
301 |
3709
|
302 2000-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
303 |
|
304 * Array2-idx.h (Array2<T>::index (idx_vector&)): If a scalar is |
|
305 indexed, always return an object the same size as the index arg. |
|
306 |
|
307 * oct-time.cc (octave_base_tm::strftime): Return empty string for |
|
308 empty format. |
|
309 |
3706
|
310 2000-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
311 |
|
312 * lo-cutils.c (oct_strptime): New function. |
|
313 * oct-time.cc (octave_strptime::init): Call it instead of strptime. |
|
314 Don't declare strptime. Don't define _XOPEN_SOURCE or _BSD_SOURCE. |
|
315 |
3702
|
316 2000-07-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
317 |
3703
|
318 * oct-time.cc: Comment out _BSD_SOURCE and _XOPEN_SOURCE definitions. |
|
319 |
3702
|
320 * Makefile.in (MATRIX_INC): Add ArrayN-idx.h to the list. |
|
321 |
3689
|
322 2000-06-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
323 |
|
324 * dMatrix.h (read_int): Provide declaration. |
|
325 |
3688
|
326 2000-06-29 James R. Van Zandt <jrv@vanzandt.mv.com> |
|
327 |
|
328 * data-conv.cc (read_doubles): Handle EIGHT_BYTE_INT cases. |
|
329 (write_doubles): Ditto. |
|
330 * data-conv.h: Ditto. |
|
331 (enum save_type): New values, LS_U_LONG and LS_LONG. |
|
332 |
3685
|
333 2000-06-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
334 |
|
335 * boolMatrix.h: Declare MM_CMP_OPS here. |
|
336 * boolMatrix.cc: Define them here. |
|
337 |
3680
|
338 2000-06-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
339 |
|
340 * Array2-idx.h (assign): Allow x(bool) = RHS to succeed if x is |
|
341 previously undefined and set size of x to size of bool index. |
|
342 * idx-vector.cc (IDX_VEC_REP::maybe_convert_one_zero_to_idx): |
|
343 Allow z_len to be zero. |
|
344 (IDX_VEC_REP::freeze): If z_len is zero, set frozen_at_z_len to len. |
|
345 If frozen, don't assert that frozen_at_z_len == z_len. |
|
346 |
3670
|
347 2000-05-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
348 |
|
349 * oct-rl-edit.c (octave_rl_clear_screen): Call _rl_clear_screen |
|
350 instead of rl_clear_screen. |
|
351 |
3665
|
352 2000-05-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
353 |
|
354 * Array-d.cc: Instantiate ArrayN<double> here too. |
|
355 * Array-idx-vec.cc, ArrayN-idx.h, ArrayN.cc, ArrayN.h: New files. |
|
356 * Makefile.in: Add them to the appropriate lists. |
|
357 |
3657
|
358 2000-04-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
359 |
|
360 * Array.cc (Array<T>::operator =): Don't set max_indices to 1 here. |
|
361 |
3635
|
362 2000-03-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
363 |
|
364 * lo-sysdep.h: octave_chdir returns int, not bool. |
|
365 |
3615
|
366 2000-03-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
367 |
|
368 * Makefile.in (liboctave.$(SHLEXT)): Delete target |
|
369 before rebuilding. |
|
370 |
|
371 2000-03-21 Ben Sapp <bsapp@nua.lampf.lanl.gov>: |
|
372 |
|
373 * liboctave/Makefile.in (liboctave.$(LIBEXT)): New target. |
|
374 (libraries): Depend only on library targets, not archive members. |
|
375 |
3613
|
376 2000-03-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
377 |
|
378 * Makefile.in: (objects): New target. |
|
379 |
|
380 * lo-cutils.c: New file. |
|
381 * Makefile.in (SOURCES): Add it to the list. |
|
382 * lo-utils.h: Declare octave_qsort here. |
|
383 * Array.h (Array::qsort): Use it here. |
|
384 |
3607
|
385 2000-03-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
386 |
|
387 * oct-time.cc: Include <sys/types.h> and <unistd.h>, if available. |
|
388 |
3598
|
389 2000-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
390 |
|
391 * oct-rl-hist.c (octave_history_list): Do something when not |
|
392 printing line numbers. Fix reallocation of retval. |
|
393 |
3597
|
394 2000-02-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
395 |
|
396 * Makefile.in (install-inc): Install files in |
|
397 $(octincludedir)/octave. |
|
398 (uninstall): Remove them from the correct directory too. |
|
399 |
|
400 * oct-time.cc: Temporarily define _BSD_SOURCE and _XOPEN_SOURCE if |
|
401 they are not already defined. |
|
402 |
3588
|
403 2000-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
404 |
|
405 * CRowVector.cc, CRowVector.h, CColVector.cc, CColVector.h: |
|
406 Delete declarations and definitions of mixed-type vector-vector ops. |
|
407 |
3585
|
408 2000-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
409 |
|
410 * CMatrix.h, CMatrix.cc: Add lssolve methods for real-valued RHS |
|
411 matrix and vector objects. |
|
412 |
|
413 * mx-op-defs.h (DMM_BIN_OP): Explicitly request conversion to |
|
414 return type from second arg type. |
|
415 (MDM_BIN_OP): Likewise, for first arg type. |
|
416 |
|
417 * dMatrix.cc (Matrix::fourier, Matrix::ifourier, |
|
418 Matrix::fourier2d, Matrix::ifourier2d): Likewise. |
|
419 |
|
420 * EIG.cc (EIG::symmetric_init, EIG::hermitian_init): Explicitly |
|
421 request ColumnVector to ComplexColumnVector, and Matrix to |
|
422 ComplexMatrix conversions. |
|
423 |
|
424 * CmplxAEPBAL.cc (ComplexAEPBALANCE::init): Give balancing_mat its |
|
425 initial value using ComplexMatrix constructor. |
|
426 |
|
427 * CColVector.cc (product, quotient, |
|
428 operator * (const DiagMatrix&, const ComplexColumnVetor&)): |
|
429 Fix type of returned value. |
|
430 * CDiagMatrix.cc (ComplexDiagMatrix::row, |
|
431 ComplexDiagMatrix::column, ComplexDiagMatrix::inverse): Likewise. |
|
432 |
|
433 * Array.h, CColVector.h, CDiagMatrix.h, CMatrix.h, CRowVector.h, |
|
434 MArray.h, MDiagArray2.h, dColVector.h, dDiagMatrix.h, dMatrix.h, |
|
435 dRowVector.h: Declare some constructors explicit, to disallow |
|
436 potentially problematic automatic type conversions. |
|
437 |
3580
|
438 2000-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
439 |
3582
|
440 * vx-rv-crv.h, vx-cv-ccv.h, vx-crv-rv.h, vx-ccv-cv.h, |
|
441 vx-rv-crv.cc, vx-cv-ccv.cc, vx-crv-rv.cc, vx-ccv-cv.cc: |
|
442 More new files. |
|
443 * Makefile.in: Add them to the appropriate lists. |
|
444 |
|
445 * vx-ccv-s.h, vx-crv-s.h, vx-cs-cv.h, vx-cs-rv.h, vx-cv-cs.h, |
|
446 vx-rv-cs.h, vx-s-ccv.h, vx-s-crv.h, vx-ccv-s.cc, vx-crv-s.cc, |
|
447 vx-cs-cv.cc, vx-cs-rv.cc, vx-cv-cs.cc, vx-rv-cs.cc, vx-s-ccv.cc, |
|
448 vx-s-crv.cc:, New files. |
|
449 * Makefile.in: Add them to the appropriate lists. |
|
450 |
|
451 * CRowVector.h, CRowVector.cc, CColVector.h, CColVector.cc: |
|
452 Delete scalar by vector and vector by scalar binary ops. |
|
453 |
3580
|
454 * MArray-defs.h: More new macros to handle MDiagArray operators. |
|
455 * dDiagMatrix.h, CDiagMatrix.h: Use the op-forwarding macros. |
|
456 |
3573
|
457 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
458 |
3578
|
459 * oct-rl-edit.c (octave_rl_set_event_hook): Take address of |
|
460 rl_event_hook before casting to void **. |
|
461 (octave_rl_set_startup_hook): Likewise, for rl_startup_hook. |
|
462 |
3574
|
463 * MArray-defs.h: Many new macros to make declaration and |
|
464 definition of operators more consistent. |
|
465 |
|
466 * MArray.h, MArray2.h, dColVector.h, dRowVector.h, CColVector.h, |
|
467 CRowVector.h, dMatrix.h, CMatrix.h: Use them. |
3573
|
468 |
3569
|
469 2000-02-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
470 |
3572
|
471 * dMatrix.cc (Matrix::ifourier): Cast divisor to double. |
|
472 (Matrix::ifourier2d): Likewise. |
|
473 * CMatrix.cc (ComplexMatrix::ifourier): Likewise. |
|
474 (ComplexMatrix::ifourier2d): Likewise. |
|
475 |
3569
|
476 * Array.h (Array::ArrayRep::qsort): Cast len to size_t. |
|
477 |
3504
|
478 2000-02-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
479 |
3519
|
480 * oct-rl-edit.c, oct-rl-edit.h: New files for interface to GNU |
|
481 readline library. |
|
482 * Makefile.in: Add them to the appropriate lists. |
|
483 |
|
484 * oct-rl-hist.c, oct-rl-hist.h: New files for interface to GNU |
|
485 readline history library. |
|
486 * Makefile.in: Add them to the appropriate lists. |
|
487 |
3517
|
488 * data-conv.cc (LS_DO_WRITE): Cast arg to ostream::write to char*. |
|
489 (LS_DO_READ): Likewise, for istream::read. |
3518
|
490 (write_doubles): Likewise. |
|
491 (read_doubles): Likewise. |
3517
|
492 |
3516
|
493 * oct-env.cc (octave_env::do_polite_directory_format): |
|
494 Use operator== and substr method to do limited-length string |
|
495 comparison. |
|
496 |
3513
|
497 * Array2-idx.h, Array-idx.h: Avoid shadowing warnings for idx. |
3512
|
498 |
3511
|
499 * Quad.h: Use do_integrate as name of pure virtual function. |
|
500 |
3508
|
501 * base-de.h: Use tt instead of t as arg names. |
3511
|
502 Add method with tcrit arg. |
|
503 |
3509
|
504 * DAE.h, DAE.cc: Likewise, also xx for x. |
3508
|
505 |
3507
|
506 * DASSL.cc (dassl_fcn_ptr, dassl_jac_ptr): New typedefs. |
|
507 * LSODE.cc: lsode_fcn_ptr, lsode_jac_ptr): Ditto. |
|
508 * Quad.cc (quad_fcn_ptr): Ditto. |
|
509 * NLEqn.cc (hybrd1_fcn_ptr, hybrj1_fcn_ptr): Ditto. |
|
510 |
3505
|
511 * oct-getopt.h, oct-getopt.c: New files for interface to getopt. |
3519
|
512 * Makefile.in: Add them to the appropriate lists. |
3505
|
513 |
|
514 * oct-kpse.h, oct-kpse.c: New files for interface to kpathsearch. |
3519
|
515 * Makefile.in: Add them to the appropriate lists. |
3505
|
516 |
3504
|
517 * dMatrix.cc (write_int, read_int): No longer declared static. |
|
518 |
|
519 * CDiagMatrix.h: Delete decls for friend operators that are |
|
520 handled by MDiagArray2 class. Move others outside class decl and |
|
521 strip friend status. |
|
522 * dDiagMatrix.h: Likewise. |
|
523 |
|
524 * MArray.h: Delete decls for friend operators inside class decl. |
|
525 * MArray2.h: Ditto. |
|
526 * MDiagArray2.h: Ditto. |
|
527 |
|
528 * MArray-defs.h (DO_VS_OP,, DO_SV_OP, DO_VV_OP, NEGV): Pass all |
|
529 necessary parameters. Don't allocate memory in the macro. Change |
|
530 all uses. |
|
531 |
|
532 * dMatrix.h (class Matrix): Delete `friend class' decls. |
|
533 * CMatrix.h (class ComplexMatrix): Ditto. |
|
534 |
|
535 * mx-op-defs (MS_BOOL_OP, MS_BOOL_OPS, SM_BOOL_OP, SM_BOOL_OPS, |
|
536 MM_BOOL_OP, MM_BOOL_OPS, MDM_MULTIPLY_OP, MDM_BIN_OPS, |
|
537 DMM_MULTIPLY_OP, DMM_BIN_OPS): Pass zero constant as final arg, to |
|
538 avoid type conflicts. Change all uses. |
|
539 |
|
540 * strptime.c (__mon_yday): Fix size of array decl. |
|
541 |
|
542 * mx-inlines.cc: Use `xnot' instead of `not' for function name. |
|
543 |
|
544 * chMatrix.cc (charMatrix::row_as_string): Delete extraneous |
|
545 default value for second arg. |
|
546 |
|
547 * Array2.cc (Array2<T>::resize): Add Array<T>:: qulaifier to |
|
548 references to ArrayRep. |
|
549 |
3503
|
550 2000-01-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
551 |
3504
|
552 * Array.h (Array::ArrayRep): Now protected, not private. |
3503
|
553 |
|
554 * All source files: Include iostream, fstream, strstream, |
|
555 etc. as needed instead of using forward declarations for these |
3504
|
556 classes. Add std:: qualifier as needed. |
3503
|
557 |
3498
|
558 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
559 |
|
560 * oct-time.cc: Declare strptime extern "C". |
|
561 |
3496
|
562 2000-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
563 |
|
564 * oct-time.cc [! HAVE_STRPTIME]: Provide declaration. |
|
565 |
3488
|
566 2000-01-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
567 |
3492
|
568 * Array2.h (Array2<T>::get_size): Now protected instead of private. |
|
569 * Array3.h, Array3.cc: Use it in constructors and resize methods |
|
570 to get total size to be allocated. |
|
571 |
3488
|
572 * DASSL.cc (DASSL::integrate): Declare do_restart and save_output |
|
573 as bool, not int. |
|
574 |
3482
|
575 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
576 |
|
577 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
578 Allow A(idx) = RHS if idx is a boolean index with the same shape |
|
579 as A, even when do_fortran_indexing is not enabled. |
|
580 (Array2<T>::index (idx_vector& idx) const): Likewise, for A(idx). |
|
581 |
3473
|
582 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
583 |
3480
|
584 * dMatrix.cc (Matrix::solve (...)): Add new variant with |
|
585 function pointer as final arg. Passed function (if any) will be |
|
586 called for singularity errors. |
|
587 * CMatrix.cc (ComplexMatrix::solve (...)): Likewise. |
|
588 |
|
589 * dMatrix.cc (Matrix::pseudo_inverse): Use economy SVD. |
|
590 * CMatrix.cc (ComplexMatrix::pseudo_inverse): Likewise. |
|
591 |
3475
|
592 * lo-ieee.cc (octave_ieee_init): Don't include sunmath.h. |
|
593 No longer bother with infinity or quiet_nan. |
|
594 |
3473
|
595 * Array2.cc (Array2<T>::get_size): New function. |
|
596 (Array2<T>::Array2, Array2<T>::resize): Use it. |
|
597 |
3472
|
598 2000-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
599 |
|
600 * Array2-idx.h (Array2<T>::maybe_delete_elements (idx_vector&)): |
|
601 New function. |
|
602 (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
603 Use it when indexing with one arg instead of faking a second one. |
|
604 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): |
|
605 Return empty matrices with the correct dimensions for A(:,:) = [] |
|
606 and also A(:,idx) = [], and A(idx,:) = [] when idx enumerates all |
|
607 rows or columns. |
|
608 |
|
609 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Recognize a bool |
|
610 vector that is all true values with a length equal to n as colon |
|
611 equivalent. |
|
612 |
3470
|
613 2000-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
614 |
|
615 * strptime.c: Only include langinfo.h if _LIBC is defined. |
|
616 |
|
617 2000-01-21 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3468
|
618 |
|
619 * CMatrix.cc (ComplexMatrix::expm): Apply permutation and scaling |
|
620 operations directly in step 2 and reverse step 2. |
|
621 * dMatrix.cc (Matrix::expm): Apply permutation and scaling |
|
622 operations directly in step 2 and reverse step 2. |
|
623 |
3465
|
624 2000-01-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
625 |
|
626 * oct-time.h, oct-time.cc (octave_strptime): New class. |
|
627 |
|
628 * strptime.c: New file, from glibc 2.1.2. |
|
629 * Makefile.in (SOURCES): Add strptime.c to the list. |
|
630 |
3419
|
631 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
632 |
|
633 * MArray.h (MArray <const Array<T>&)): New constructor. |
|
634 |
3415
|
635 2000-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
636 |
|
637 * pathsearch.cc (dir_path::all_directories): Avoid dereferencing |
|
638 NULL directory list returned from kpse_element_dirs |
|
639 |
3375
|
640 1999-12-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
641 |
|
642 * dbleLU.cc (LU::LU): Call DGETRF directly instead of calling DGESV. |
|
643 * CmplxLU.cc (ComplexLU::ComplexLU): Likewise, call ZGETRF |
|
644 directly, instead of calling ZGESV. |
|
645 |
3358
|
646 1999-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
647 |
|
648 * data-conv.cc (init_sized_type_lookup_table): New function. |
|
649 (string_to_data_type): Use it to improve lookup of data types. |
|
650 |
3354
|
651 1999-11-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
652 |
|
653 * dMatrix.cc (is_symmetric): Move here from Array2.cc. |
|
654 * Array2.h (is_symmetric): Delete declaration. |
|
655 |
3347
|
656 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
657 |
|
658 * oct-env.cc (do_get_user_name): Reverse sense of test. |
|
659 |
3344
|
660 1999-11-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
661 |
|
662 * oct-time.cc (Fstrftime): Undo previous change. |
|
663 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
664 |
3334
|
665 1999-11-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
666 |
3336
|
667 * dbleSVD.cc (SVD::init): Let DGESVD determine work space requirement. |
|
668 * CmplxSVD.cc (ComplexSVD::init): Likewise, for complex version. |
|
669 |
3334
|
670 * dbleSCHUR.cc (SCHUR::init): IWORK is always referenced by dgeesx. |
|
671 Don't forget to pass length of third string argument to dgeesx. |
|
672 |
|
673 * CmplxSCHUR.cc (ComplexSCHUR::init): Don't forget to pass length |
|
674 of third string argument to zgeesx. |
|
675 |
3333
|
676 1999-11-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
677 |
|
678 * DiagArray2.cc (DiagArray2<T>::operator () (int, int)): |
|
679 On errors, simply return `T ()'. |
|
680 (DiagArray2<T>::checkelem (int, int)): Likewise. |
|
681 |
3331
|
682 1999-11-02 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
|
683 |
|
684 * dMatrix.cc (Matrix::expm): Do balancing here instead of using |
|
685 AEPBALANCE class. |
|
686 * CMatrix.cc (ComplexMatrix::expm): Likewise. |
|
687 |
3325
|
688 1999-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
689 |
|
690 * oct-shlib.cc, oct-shlib.h: New files. |
|
691 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
692 |
3322
|
693 1999-10-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
694 |
|
695 * CRowVector.cc (linspace): Allow npoints == 1 if x1 == x2. |
|
696 * dRowVector.cc (linspace): Ditto. |
|
697 |
|
698 * oct-time.cc (Fstrftime): Don't save or delete tm_zone. |
|
699 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
700 |
3312
|
701 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
702 |
|
703 * DASSL.cc (DASSL::do_integrate (double)): If we have a function |
|
704 to evaluate the Jacobian, set info(4), not iwork(4). |
|
705 Set rwork(1) to the maximum step size, not rwork(2). |
|
706 |
3290
|
707 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
708 |
|
709 * oct-time.cc: Include <climits>. |
|
710 |
3281
|
711 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
712 |
|
713 * cmd-edit.h (command_editor::do_resize_terminal): New function. |
|
714 * cmd-edit.cc (command_editor::resize_terminal): New function. |
|
715 (gnu_readline::do_resize_terminal): New function. |
|
716 |
3268
|
717 Fri Sep 3 12:39:17 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
718 |
|
719 * lo-mappers.cc: Include ieeefp.h and sunmath.h if we have them. |
|
720 * lo-ieee.c: Likewise. |
|
721 Delete extern "C" declarations for infinity and quiet_nan. |
|
722 |
3262
|
723 Fri Aug 20 07:58:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
724 |
3263
|
725 * mx-inlines.cc (VS_OP, SV_OP, VV_OP): Delete `extern template' decls. |
|
726 (VS_OP_FCN, SV_OP_FCN, VV_OP_FCN): Declare template functions |
|
727 `inline', not `static inline'. |
|
728 |
3262
|
729 * idx-vector.cc (intcmp): Declare args as const void *, not int *, |
|
730 then cast to const int * to compare. |
|
731 |
3257
|
732 Fri Jul 16 11:23:51 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
733 |
|
734 * DAEFunc.h: Remove useless preprocessor conditional. |
|
735 |
3255
|
736 Thu Jul 15 14:10:33 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
737 |
3257
|
738 * cmd-edit.cc (command_editor::do_decode_prompt_string): |
|
739 Use octave_time object instead of time_t. |
|
740 |
|
741 * file-stat.h (file_stat::fs_atime, file_stat::fs_mtime, |
|
742 file_stat::fs_ctime): Now octave_time objects. |
|
743 (file_stat::atime, file_stat::mtime, file_stat::ctime): |
|
744 Return octave_time objects. |
|
745 (file_stat::is_newer): Args are now octave_time objects instead of |
|
746 time_t. |
|
747 |
3255
|
748 * oct-time.h (octave_time::as_double): Delete. |
|
749 (octave_time::operator double ()): New function. |
|
750 (octave_time::operator time_t ()): New function. |
|
751 (octave_time::ctime): New function. |
|
752 (octave_base_tm::strftime): Renamed from format_as_string. |
|
753 (octave_base_tm::asctime): New function. |
|
754 (operator == (const octave_time&, const octave_time&), |
|
755 operator != (const octave_time&, const octave_time&), |
|
756 operator < (const octave_time&, const octave_time&), |
|
757 operator <= (const octave_time&, const octave_time&), |
|
758 operator > (const octave_time&, const octave_time&), |
|
759 operator >= (const octave_time&, const octave_time&)): |
|
760 New comparison functions. |
|
761 |
|
762 * strftime.c: Move here from src directory. |
|
763 * Makefile.in (SOURCES): Add it to the list. |
|
764 |
|
765 * oct-time.h (octave_time::octave_time (time_t)): New constructor. |
|
766 |
3253
|
767 Wed Jul 14 17:38:07 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
768 |
|
769 * oct-time.h, oct-time.cc: New files. |
|
770 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
771 |
|
772 * systime.h: Move here from src directory. |
|
773 * Makefile.in (INCLUDES): Add it to the list. |
|
774 |
3248
|
775 Mon Jul 12 22:34:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
776 |
|
777 * mx-defs.h (b_d_Mapper, b_c_Mapper): New typedefs. |
|
778 * dMatrix.cc (Matrix::map (b_d_Mapper)): New function. |
|
779 * CMatrix.cc (ComplexMatrix::map (b_c_Mapper)): New function. |
|
780 * lo-mappers.cc (xisinf, xisnan, xfinite): Return bool, not double. |
|
781 |
|
782 * lo-mappers.cc (xmin, xmax): New functions to correctly handle NaNs. |
|
783 |
3243
|
784 Mon May 10 07:45:11 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
785 |
|
786 * MArray-defs.h (DO_VV_OP2): Fix macro definition to use arg. |
|
787 |
|
788 Wed May 5 20:06:10 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
789 |
|
790 * Array2-idx.h (Array2<T>index (idx_vector& idx)): Always return a |
|
791 column vector for A(:), for compatibility with Matlab. |
|
792 |
|
793 Fri Apr 23 11:52:23 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
794 |
|
795 * LSODE.cc (LSODE::do_integrate (double)): Don't forget to set |
|
796 iopt when there are optional inputs in rwork or iwork. |
|
797 |
3238
|
798 Fri Mar 26 11:26:32 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
799 |
|
800 * Makefile.in (libraries): Use the libfoo.a(objects) method of |
|
801 creating static libs. |
|
802 |
|
803 Thu Mar 4 02:17:04 1999 James Macnicol <jamesm@evans.ee.adfa.oz.au> |
|
804 |
|
805 * data-conv.cc (oct_data_conv::string_to_data_type): Handle uint16 |
|
806 and uint32 data types. |
|
807 |
|
808 Thu Mar 4 01:51:37 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
809 |
|
810 * lo-ieee.cc (octave_ieee_init): Don't use __alpha__-specific code |
|
811 for Linux. Remove old Linux-specific code. |
|
812 |
3233
|
813 Tue Jan 19 09:34:55 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
814 |
|
815 * dMatrix.cc (operator * (const ColumnVector& v, const RowVector& a)): |
|
816 Don't require lengths to be equal. |
|
817 * CMatrix.cc (operator * (const ComplexColumnVector& v, const |
|
818 ComplexRowVector& a)): Likewise |
|
819 |
3225
|
820 Tue Nov 24 23:38:19 1998 Eric Norum <eric@skatter.USask.Ca> |
|
821 |
|
822 * statdefs.h: Only define mode_t if not already defined. |
|
823 |
|
824 Tue Nov 24 17:24:52 1998 john <john@arrows.demon.co.uk> |
|
825 |
|
826 * lo-specfun.cc (airy, biry): Set imaginary part of result to zero |
|
827 when appropriate. |
|
828 |
|
829 Mon Nov 23 09:57:05 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
830 |
|
831 * cmd-edit.cc (gnu_readline::gnu_readline): Set terminal name |
|
832 before calling rl_initialize. |
|
833 |
3220
|
834 Tue Nov 17 23:47:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
835 |
|
836 * lo-specfun.cc (besselh, airy, biry): New functions. |
|
837 Update Bessel function support to use library by D. E. Amos. |
|
838 |
3219
|
839 Thu Nov 12 17:44:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
840 |
|
841 * cmd-edit.h (command_editor::readline): Add new variation that |
|
842 allows EOF information to be passed back to caller. |
|
843 |
|
844 * dMatrix.cc (Matrix::read): Do the right thing for EOF when |
|
845 amount of data to read is unspecified. |
|
846 |
3215
|
847 Tue Nov 10 07:53:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
848 |
3219
|
849 * oct-alloc.h (DECLARE_OCTAVE_ALLOCATOR): New macro. |
|
850 (DEFINE_OCTAVE_ALLOCATOR): Ditto. |
|
851 |
3215
|
852 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, swap_8_bytes): |
|
853 Add volatile qualifier to void* arg. |
|
854 Cast volatile void* arg to volatile char*. |
|
855 |
|
856 Mon Nov 9 08:28:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
857 |
|
858 * cmd-edit.h (command_editor::do_set_event_hook): New function. |
|
859 (command_editor::do_restore_event_hook): Ditto. |
|
860 * cmd-edit.cc (command_editor::set_event_hook): Ditto. |
|
861 (command_editor::restore_event_hook): Ditto. |
|
862 (gnu_readline::do_set_event_hook): Ditto. |
|
863 (gnu_readline::do_restore_event_hook): Ditto. |
|
864 (gnu_readline::previous_event_hook): New data member. |
|
865 (gnu_readline::gnu_readline): Initialize previous_event_hook. |
|
866 |
3206
|
867 Mon Nov 2 13:36:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
868 |
|
869 * Makefile.in (BINDISTLIBS): Don't include .$(SHLEXT_VER) in name. |
|
870 |
|
871 * Makefile.in (stmp-pic): New target. |
|
872 ($(PICOBJ)): Depend on stmp-pic, not pic. |
|
873 (clean): Remove stmp-pic |
|
874 |
|
875 * Makefile.in: Undo previous change to avoid optmization when |
|
876 compiling lo-ieee.cc. |
|
877 |
|
878 Sun Nov 1 10:10:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
879 |
|
880 * lo-mappers.cc (xfinite): Define in terms of xfinite for real and |
|
881 imaginary parts. |
|
882 (xisinf): Define in terms of xisinf for real and imaginary parts. |
|
883 |
3203
|
884 Thu Oct 29 18:57:50 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
885 |
|
886 * boolMatrix.cc (boolMatrix::operator !): New function. |
|
887 |
3196
|
888 Fri Oct 23 21:46:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
889 |
|
890 * pathsearch.h (dir_path::default_path): New data member. |
|
891 * pathsearch.cc (dir_path::init): Use it. |
|
892 |
|
893 * Makefile.in: Avoid optmization when compiling lo-ieee.cc. |
|
894 |
3189
|
895 Fri Oct 16 01:08:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
896 |
|
897 * chMatrix.cc (charMatrix::extract): New function. |
|
898 (charMatrix::charMatrix (char c)): New constructor. |
|
899 |
|
900 Tue Oct 13 22:11:08 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
901 |
|
902 * cmd-edit.h: (command_editor::do_read_init_file): New function. |
|
903 * cmd-edit.cc (command_editor::read_init_file): New function. |
|
904 (gnu_readline::do_read_init_file): Likewise. |
|
905 |
3185
|
906 Fri Sep 25 14:26:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
907 |
|
908 * oct-env.cc (octave_env::do_get_home_directory): |
|
909 If HOME can't be found, set it to "/". |
|
910 (octave_env::do_get_user_name) |
|
911 If user name can't be found, set it to "unknown". |
|
912 (octave_env::do_get_host_name) |
|
913 If host name can't be found, set it to "unknown". |
|
914 |
|
915 * pathsearch.h (dir_path::rehash): New function. |
|
916 * pathsearch.cc (dir_path::init): Clear kpathsea's internal |
|
917 diretcory cache before doing initialization. |
|
918 |
3180
|
919 Thu Sep 24 13:23:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
920 |
3185
|
921 * dMatrix.cc (Qzval): Delete. |
|
922 (qzhes, qzit, qzval): Delete F77_FCN declarations. |
|
923 * dMatrix.h (Qzval): Delete declaration. |
|
924 |
|
925 * dbleGEPBAL.h, dbleGEPBAL.cc: Delete. |
|
926 * Makefile.in (MATRIX_INC, MATRIX_SRC): Delete them from the lists. |
|
927 * mx-ext.h: Don't include dbleGEPBAL. |
|
928 |
3180
|
929 * lo-ieee.cc (octave_ieee_init): For now, use X_CAST instead of |
|
930 static_cast. |
|
931 |
|
932 Fri Sep 4 10:58:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
933 |
|
934 * dMatrix.cc (Matrix::read): Skip after reading, not before. |
|
935 From: Dr.-Ing. Torsten Finke <fi@igh-essen.com>. |
|
936 |
|
937 Wed Sep 2 09:50:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
938 |
|
939 * lo-ieee.cc (octave_ieee_init): For Linux on arm, don't rely on |
|
940 HUGE_VAL and NAN. |
|
941 |
|
942 Wed Aug 26 15:04:57 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
943 |
|
944 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
945 Handle x(i) = scalar for do_fortran_indexing == 1. |
|
946 |
|
947 Thu Jul 30 00:34:10 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
948 |
|
949 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const charMatrix&)): |
|
950 Alloctate space before attempting to use it. |
|
951 (ComplexMatrix::ComplexMatrix (const boolMatrix&)): Likewise. |
|
952 |
3178
|
953 Mon Jun 22 17:04:27 1998 Tomislav Goles <tom@ait-tech.com> |
|
954 |
|
955 * EIG.cc (EIG::init): Move invariant code outside loop. |
|
956 |
|
957 Thu Jun 18 11:08:23 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
958 |
|
959 * MArray2.cc (MARRAY_A2A2_OP): If operands are empty, make result |
|
960 have the same size as the operands. |
|
961 |
|
962 Thu May 28 10:41:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
963 |
|
964 * DASSL.cc (DASSL::do_integrate): If an exception occurs in the |
|
965 call to ddassl, set integration_error to 1 before calling the |
|
966 error handler and returning. |
|
967 * LSODE.cc (LSODE::do_integrate): Likewise. |
|
968 |
3177
|
969 Wed May 27 13:46:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
970 |
|
971 * Array2-idx.h (assign): Allow A([],[]) = scalar and, if |
|
972 do_fortran_indexing is set, A([]) = scalar. |
|
973 * Array-idx.h (assign): Allow A([]) = scalar. |
|
974 |
3176
|
975 Thu May 14 11:50:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
976 |
|
977 * mx-op-defs.h (MDM_MULTIPLY_OP): Compute result if dm_nc > 0, not |
|
978 if dm_nc == 0. |
|
979 |
3174
|
980 Thu Apr 23 16:15:37 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
981 |
|
982 * pathsearch.h (dir_path::p_orig): New field. |
|
983 * pathsearch.cc (dir_path::init): Perform variable and tilde |
|
984 expansion on the original path here. |
|
985 (dir_path::find_all): Don't do anything if not initialized. |
|
986 |
3164
|
987 Tue Apr 14 14:41:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
988 |
|
989 * Array2-idx.h (index): Allow x(:) even when do_fortran_indexing |
|
990 is not set. |
|
991 (index): Allow x = zeros (2, 0); x(1,:) to work. |
|
992 |
|
993 * lo-specfun.cc (gammainc): Use dgamit to compute |
|
994 (\int_0^x exp(-t) t^(a-1) dt)/gamma(a), not just |
|
995 \int_0^x exp(-t) t^(a-1) dt. |
|
996 |
|
997 Wed Apr 8 22:50:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
998 |
|
999 * Array-C.cc, Array-b.cc, Array-ch.cc, Array-i.cc, Array-d.cc, |
|
1000 Array-s.cc: Change return types of all `assign' explicit |
|
1001 instantiations to be int, not void, to match the template decl in |
|
1002 Array.h. |
|
1003 |
3162
|
1004 Mon Apr 6 00:27:06 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1005 |
|
1006 * lo-specfun.cc (gammainc): Reorder args in call to xdgami. |
|
1007 |
3156
|
1008 Thu Feb 19 01:16:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1009 |
|
1010 * lo-specfun.cc (xgamma, xlgamma): Define here. |
|
1011 * lo-mappers.cc: Not here. |
|
1012 |
|
1013 * lo-specfun.h: Declare xgamma and xlgamma here. |
|
1014 * lo-mappers.h: Not here. |
|
1015 |
|
1016 * lo-specfun.h: Never declare gamma or lgamma. |
|
1017 |
3154
|
1018 Tue Feb 10 16:14:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1019 |
|
1020 * Array-idx.h (assign): Allow A([]) = X to succeed if X is an |
|
1021 empty matrix of any dimension. |
|
1022 |
3145
|
1023 Thu Feb 5 02:12:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1024 |
3147
|
1025 * oct-syscalls.cc (octave_syscalls::vfork): New function. |
|
1026 |
3146
|
1027 * lo-specfun.cc: Don't include dbleBessel.h. |
|
1028 |
|
1029 * Makefile.in (INCLUDES): Delete oct-math.h from the list. |
|
1030 |
3145
|
1031 * dir-ops.h (dir_entry::operator bool ()): Return bool, not void*. |
|
1032 * file-stat.h (file_stat::operator bool ()): Likewise. |
|
1033 * idx-vector.h (idx_vector::operator bool ()): Likewise. |
|
1034 * oct-group.h (octave_group::operator bool ()): Likewise. |
|
1035 * oct-passwd.h (octave_passwd::operator bool ()): Likewise. |
|
1036 |
|
1037 * data-conv.cc (IEEE_little_double_to_IEEE_big_double): |
|
1038 Don't cast arg in call to swap_8_bytes. |
|
1039 (IEEE_big_double_to_IEEE_little_double): Ditto |
|
1040 (IEEE_big_float_to_IEEE_little_float): Don't cast arg in call to |
|
1041 swap_4_bytes. |
|
1042 (IEEE_little_float_to_IEEE_big_float): Ditto |
|
1043 |
|
1044 * oct-alloc.cc (grow): Use X_CAST, not static_cast. |
|
1045 * prog-args.cc (prog_args::getopt): Likewise. |
|
1046 * dMatrix.cc (read_int, do_read, write_int, do_write): Likewise. |
|
1047 * cmd-edit.cc (gnu_readline::do_set_completion_function): Likewise. |
|
1048 * data-conv.cc (LS_DO_READ, LS_DO_WRITE, read_doubles, write_doubles): |
|
1049 Likewise. |
|
1050 |
|
1051 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, |
|
1052 swap_8_bytes): Declare ptr arg as void*, then use cast. |
|
1053 |
3141
|
1054 Mon Feb 2 01:42:56 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1055 |
|
1056 * Makefile.in (install, uninstall): Use $(octlibdir), not $(libdir). |
|
1057 Use $(mk-libdir-link). |
|
1058 |
|
1059 * file-stat.cc (file_stat::update_internal): Use stat and lstat, |
|
1060 not SAFE_STAT and SAFE_LSTAT. |
|
1061 (lstat): New function, defined if HAVE_LSTAT is not defined. |
|
1062 * safe-xstat.hin, safe-xstat.cin: Delete. |
|
1063 * Makefile.in: Delete rules for safe-stat.h, safe-stat.c, |
|
1064 safe-lstat.h, and safe-lstat.cc. |
|
1065 |
3136
|
1066 Fri Jan 30 23:48:43 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1067 |
|
1068 * chMatrix.cc (charMatrix::all, charMatrix::any): New functions. |
|
1069 |
3130
|
1070 Tue Jan 20 16:30:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1071 |
|
1072 * dMatrix.cc (Matrix::expm): Skip trace normalization step if the |
|
1073 trace is negative. |
|
1074 * CMatrix.cc (ComplexMatrix::expm): Skip trace normalization if |
|
1075 the real part of the trace is negative. |
|
1076 |
|
1077 Mon Jan 19 16:01:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1078 |
|
1079 * dMatrix.cc (Matrix::expm): Call xdlange instead of dlange. |
|
1080 * CMatrix.cc (ComplexMatrix::expm): Call xzlange instead of zlange. |
|
1081 |
|
1082 * Array2-idx.h (assign): Allow operations like a = 1; a(2:3) = [1;2] |
|
1083 to succeed. |
|
1084 |
3125
|
1085 Thu Dec 18 14:53:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1086 |
|
1087 * idx-vector.cc (IDX_VEC_REP::sort): Don't do anything unless len > 1. |
|
1088 (make_uniq): Likewise. |
|
1089 |
|
1090 Fri Dec 12 10:58:33 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1091 |
|
1092 * lo-ieee.cc (octave_ieee_init): Check for linux before __alpha__. |
|
1093 |
3119
|
1094 Sun Nov 30 14:59:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1095 |
3121
|
1096 * lo-mappers.cc: Include cmath and lo-specfun.h, not oct-math.h. |
|
1097 |
|
1098 * lo-specfun.h, lo-specfun.cc: New files. |
3119
|
1099 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
1100 |
3121
|
1101 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c, |
|
1102 oct-math.h: Delete. |
|
1103 * Makefile.in (SOURCES): Delete them from the list. |
|
1104 |
3112
|
1105 Wed Nov 26 20:02:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1106 |
|
1107 * lo-sysdep.cc (octave_getcwd): Prefer getcwd over getwd. |
|
1108 |
3107
|
1109 Wed Nov 19 02:30:04 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
1110 |
|
1111 Changes to make support egcs snapshots that implement explicit |
|
1112 specification of template functions according to CD2. |
|
1113 |
|
1114 * MArray.h: If NEED_TEMPLATE_FCN_SPECS is defined, add explicit |
|
1115 template function specs for template friends. |
|
1116 * MArray2.h: Likewise. |
|
1117 * MDiagArray2.h: Likewise. |
|
1118 |
3095
|
1119 Thu Nov 13 21:57:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1120 |
|
1121 * CMatrix.cc (sumsq): Compute equivalent of sum (x .* conj (x)) |
|
1122 |
3092
|
1123 Thu Oct 2 17:13:02 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
1124 |
|
1125 * CRowVector.cc (linspace): Removed attempt for implicit conversion |
|
1126 to complex<double>(int) instead of complex<double>(double). |
|
1127 |
|
1128 * lo-mappers.cc (atanh): Ditto. |
|
1129 |
3079
|
1130 Thu Jul 31 22:13:54 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1131 |
|
1132 * idx-vector.cc (IDX_VEC_REP::sort): New function. |
|
1133 * idx-vector.h (idx_vector::sort): Ditto. |
|
1134 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use it before |
|
1135 trying to delete elements specified by the index vectors. |
|
1136 |
3075
|
1137 Fri Jul 25 17:31:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1138 |
|
1139 * dMatrix.cc (Matrix::lssolve): Increase lwork by factor of 16. |
|
1140 * CMatrix.cc (ComplexMatrix::lssolve): Ditto. |
|
1141 |
3074
|
1142 Thu Jul 24 14:32:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1143 |
|
1144 * file-ops.cc (tilde_expand_word): Fix off-by-one error. |
|
1145 |
3069
|
1146 Wed Jul 9 19:40:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1147 |
|
1148 * lo-sysdep.cc (octave_getcwd): If getwd is available, use it. |
|
1149 Call error handler if we can't find the current directory. |
|
1150 |
3068
|
1151 Mon Jul 7 21:14:41 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1152 |
3069
|
1153 * lo-mappers.cc (xisnan (double)): Return only 1 or 0. |
|
1154 (xfinite (double)): Ditto. |
|
1155 |
3068
|
1156 * dbleQR.cc (QR::init): Don't forget to initialize Q when type is raw. |
|
1157 * CmplxQR.cc (ComplexQR::init): Ditto. |
|
1158 |
3056
|
1159 Sun Jun 15 21:06:37 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1160 |
|
1161 * lo-mappers.cc (acos (const Complex&)): Select branch that is |
|
1162 compatible with Matlab. |
|
1163 |
3050
|
1164 Tue Jun 10 10:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1165 |
|
1166 * Array2-idx.h: Correctly handle empty matrices indexed by a |
|
1167 single colon. |
|
1168 |
3040
|
1169 Fri Jun 6 04:27:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1170 |
3049
|
1171 * lo-mappers.cc (xlgamma): Use F77_XFCN function to call dlgams. |
|
1172 (xgamma): Likewise, for calling xdgamma. |
|
1173 |
3042
|
1174 * FSQP.h, NPSOL.h, QPSOL.h, FSQP.cc, NPSOL.cc, QPSOL.cc: Delete |
|
1175 * Makefile.in (INCLUDES, SOURCES): Remove them from the lists. |
|
1176 |
3040
|
1177 * file-ops.cc (file_ops::tilde_expand): Steal more code from bash |
|
1178 to do better job expanding tildes. |
|
1179 |
|
1180 * str-vec.cc (string_vector::string_vector (const char * const *): |
|
1181 Use temporary variable to compute length. |
|
1182 |
3029
|
1183 Thu Jun 5 01:44:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1184 |
3034
|
1185 * Makefile.in: Make building of static library optional. |
3036
|
1186 (liboctave.$(SHLEXT_VER)): Add $(SONAME_FLAGS) to command. |
3034
|
1187 |
3029
|
1188 * Makefile.in (stamp-picdir): Delete. |
|
1189 (pic): New target. Don't worry so much about creating pic |
|
1190 directory only when it is really needed. |
|
1191 (stamp-interp): Delete. |
|
1192 (libraries): New target. Depend on shared library directly. |
|
1193 |
3024
|
1194 Wed Jun 4 00:08:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1195 |
|
1196 * pathsearch.h, pathsearch.cc (dir_pat::set_program_name): |
|
1197 New static function. |
|
1198 |
3012
|
1199 Mon Jun 2 12:44:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1200 |
|
1201 * lo-mappers.cc (fix): Use floor and ceil instead of casting to int. |
|
1202 |
3004
|
1203 Thu May 22 16:20:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1204 |
|
1205 * cmd-edit.h, cmd-edit.cc: Rename set_paren_string_delimiters to |
|
1206 set_basic_quote_characters, to match new version of readline. |
|
1207 |
|
1208 * cmd-edit.cc (do_restore_terminal_state): Call readline function |
|
1209 for restoring terminal state through rl_deprep_term_function, now |
|
1210 declared in readline.h |
|
1211 (rl_deprep_terminal): Delete declaration. |
|
1212 |
2993
|
1213 Wed May 21 16:30:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1214 |
|
1215 * Makefile.in (install-in): Use new mk-includedir-link macro. |
|
1216 (install-lib): Install in $octlibdir. Use new mk-libdir-link macro. |
|
1217 |
2968
|
1218 Thu May 15 11:46:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1219 |
|
1220 * cmd-edit.cc (command_editor::increment_current_command_number): |
|
1221 New static function. |
|
1222 |
2964
|
1223 Mon May 12 02:14:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1224 |
2966
|
1225 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Make it work when |
|
1226 the vector is not sorted. |
|
1227 |
2964
|
1228 * CMatrix.cc (ComplexMatrix::operator !): Return boolMatrix. |
|
1229 * dMatrix.cc (Matrix::operator !): Likewise |
|
1230 |
2941
|
1231 Wed May 7 21:14:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1232 |
|
1233 * oct-syscalls.h, oct-syscalls.cc: New files. |
|
1234 |
|
1235 * cmd-edit.h, cmd-edit.cc: Handle completion function. |
|
1236 |
|
1237 * str-vec.h, str-vec.cc (string_vector::uniq): New function. |
|
1238 |
2938
|
1239 Tue May 6 00:52:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1240 |
2941
|
1241 * Makefile.in (INCLUDES_FOR_INSTALL): New variable. |
|
1242 (install-inc): Use it. |
|
1243 |
2938
|
1244 * file-ops.h, file-ops.cc (tempnam): Add DIR and PREFIX args. |
|
1245 Handle errors and missing functions consistently. |
|
1246 |
|
1247 * oct-group.h, oct-group.cc: New files. |
|
1248 |
|
1249 * oct-passwd.cc: Handle errors and missing functions consistently. |
|
1250 |
|
1251 * str-vec.h, str-vec.cc (c_str_vec, delete_c_str_vec): New functions. |
|
1252 |
2934
|
1253 Mon May 5 17:53:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1254 |
|
1255 * file-ops.cc: (file_ops::tilde_expand): Use new octave_passwd class. |
|
1256 * oct-env.cc (octave_env::do_get_user_name): Likewise. |
|
1257 |
|
1258 * oct-passwd.h, oct-passwd.cc: New files. |
|
1259 |
2926
|
1260 Sun May 4 22:17:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1261 |
|
1262 * statdefs.h: Only include sys/types.h if HAVE_SYS_STAT_H is defined. |
|
1263 |
|
1264 * mach-info.h, mach-info.cc: Add missing const qualifiers. |
|
1265 (instance_ok ()): New function. |
|
1266 |
|
1267 * glob-match.h, glob-match.cc: Rename from oct-glob.h, oct-glob.cc. |
|
1268 |
|
1269 * cmd-hist.h, cmd-hist.cc: Make it work without GNU readline. |
|
1270 |
|
1271 * lo-utils.h, lo-utils.cc (strsave, octave_putenv): Move here from |
|
1272 src/utils.h and src/utils.cc. |
|
1273 (octave_fgets): New function, extracted from src/input.cc. |
|
1274 |
|
1275 * cmd-edit.h, cmd-edit.cc: New files. Provide wrapper class for |
|
1276 GNU readline, and allow Octave to work without GNU readline. |
|
1277 |
|
1278 * lo-sysdep.h, lo-sysdep.cc: New files for miscellaneous |
|
1279 system-dependent functions. |
|
1280 |
|
1281 * oct-env.h, oct-env.cc: New files for process environment stuff. |
|
1282 |
|
1283 * file-stat.h, file-stat.cc: New files. Extract file_stat class |
|
1284 from file-ops.h and file-ops.cc and move here. |
|
1285 |
|
1286 * file-ops.h, file-ops.cc: Wrap functions in struct. Move |
|
1287 tilde_expand functions here from src/dirfns.cc. |
|
1288 |
|
1289 Fri May 2 19:50:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1290 |
|
1291 * pathlen.h: New file, from ../src. |
|
1292 |
2917
|
1293 Tue Apr 29 04:39:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1294 |
|
1295 * Array2-idx.h (Array2<T>::maybe_delete_elements): Prevent |
|
1296 out-of-bounds indexing of the index array. |
|
1297 * Array-idx.h (Array<T>::maybe_delete_elements): Likewise. |
|
1298 |
2850
|
1299 Fri Mar 28 15:37:09 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1300 |
|
1301 * LSODE.h (x_step_limit): New field. |
|
1302 (LSODE_options::init): Initialize it. |
|
1303 (LSODE_options::copy): Copy it. |
|
1304 (LSODE_options::set_step_limit, LSODE_options::step_limit): |
|
1305 New functions. |
|
1306 (LSODE::working_too_hard): Delete. |
|
1307 * LSODE.cc (LSODE::do_integrate): Handle step limit. |
|
1308 |
2844
|
1309 Wed Mar 26 15:31:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1310 |
|
1311 * MArray-b.cc: Delete. |
|
1312 * Makefile.in: Delete it from the lists. |
|
1313 |
|
1314 * boolMatrix.h (class bboolMatrix): Derive from Array2, not |
|
1315 MArray2, since most of the numeric ops don't really make sense. |
|
1316 |
2829
|
1317 Tue Mar 25 17:37:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1318 |
2832
|
1319 * boolMatrix.cc (boolMatrix::all, boolMatrix::any): New functions. |
|
1320 |
|
1321 * dMatrix.cc (Matrix::all, Matrix::any): Return boolMatrix. |
|
1322 * CMatrix.cc (ComplexMatrix::all, ComplexMatrix::any): Likewise. |
|
1323 |
2830
|
1324 * idx-vector.h (idx_vector::idx_vector_rep::freeze, |
|
1325 idx_vector::freeze): Delete prefer_zero_one arg. |
|
1326 * Array-idx.h, Array2-idx.h: Change all callers. |
|
1327 |
|
1328 * Array-flags.h, Array-flags.cc (liboctave_pzo_flag): Delete. |
|
1329 |
2829
|
1330 * mx-op-defs.h: New file for operator definitions. |
|
1331 * mx-cdm-cm.h, mx-cdm-cs.h, mx-cdm-dm.h, mx-cdm-m.h, mx-cdm-s.h, |
|
1332 mx-cm-cdm.h, mx-cm-dm.h, mx-cm-m.h, mx-cm-s.h, mx-cs-cdm.h, |
|
1333 mx-cs-dm.h, mx-cs-m.h, mx-dm-cdm.h, mx-dm-cm.h, mx-dm-cs.h, |
|
1334 mx-dm-m.h, mx-dm-s.h, mx-m-cdm.h, mx-m-cm.h, mx-m-cs.h, mx-m-dm.h, |
|
1335 mx-s-cdm.h, mx-s-cm.h, mx-s-dm.h, mx-cdm-cm.cc, mx-cdm-cs.cc, |
|
1336 mx-cdm-dm.cc, mx-cdm-m.cc, mx-cdm-s.cc, mx-cm-cdm.cc, mx-cm-dm.cc, |
|
1337 mx-cm-m.cc, mx-cm-s.cc, mx-cs-cdm.cc, mx-cs-dm.cc, mx-cs-m.cc, |
|
1338 mx-dm-cdm.cc, mx-dm-cm.cc, mx-dm-cs.cc, mx-dm-m.cc, mx-dm-s.cc, |
|
1339 mx-m-cdm.cc, mx-m-cm.cc, mx-m-cs.cc, mx-m-dm.cc, mx-s-cdm.cc, |
|
1340 mx-s-cm.cc, mx-s-dm.cc: |
|
1341 New files for mixed-type operations. |
|
1342 * Makefiles.in: Add them to the appropriate lists. |
|
1343 |
|
1344 * mx-inlines.cc: Add bool by bool EQ ops. |
|
1345 |
|
1346 * idx-vector.h, idx-vector.cc: Add constructors for bool and |
|
1347 boolMatrix types. |
|
1348 (idx_vector::maybe_convert_one_zero_to_idx, |
|
1349 idx_vector::idx_vector_rep::maybe_convert_one_zero_to_idx): |
|
1350 Delete second arg, prefer_zero_one. Change all callers. |
|
1351 |
|
1352 * boolMatrix.h, boolMatrix.cc: New files. |
|
1353 * mx-base.h: Include boolMatrix.h here. |
|
1354 * mx-defs.h: Provide forward declaration for boolMatrix here. |
|
1355 |
|
1356 * chMatrix.h, chMatrix.cc: Delete unused junk. |
|
1357 |
|
1358 * dMatrix.h, CMatrix.h: Delete friend declarations for operator+, |
|
1359 operator-, operator*, product, and quotient functions. |
|
1360 Add constructor for boolMatrix type. |
|
1361 * dMatrix.cc, CMatrix.cc: Delete operator+, operator-, operator*, |
|
1362 product, and quotient functions. |
|
1363 |
|
1364 * CDiagMatrix.h: Delete friend declarations for operator+, |
|
1365 operator-, and product functions. |
|
1366 * CDiagMatrix.h: Delete operator+, operator-, and product functions. |
|
1367 |
|
1368 * Array-b.cc: Also instantiate 2d and 2d diagonal arrays. |
|
1369 |
2815
|
1370 Fri Mar 14 00:29:46 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1371 |
|
1372 * EIG.cc (EIG::hermitian_init (const ComplexMatrix&)): New function. |
|
1373 (EIG::init (const ComplexMatrix&)): Call it if arg is hermitian. |
|
1374 (EIG::symmetric_init (const Matrix&)): New function. |
|
1375 (EIG::init (const Matrix&)): Call it if arg is symmetric. |
|
1376 |
|
1377 * CMatrix.cc (ComplexMatrix::is_hermitian): New function. |
|
1378 |
|
1379 Thu Mar 13 17:04:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1380 |
|
1381 * Array2.cc (is_symmetric): New function. |
|
1382 * Array2.h (is_square): New function. |
|
1383 |
2811
|
1384 Wed Mar 12 16:59:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1385 |
|
1386 * Makefile.in (install-strip): New target. |
|
1387 |
2804
|
1388 Mon Mar 10 22:34:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1389 |
|
1390 * CmplxCHOL.cc, CmplxHESS.cc, CmplxLU.cc, CmplxQR.cc, |
|
1391 CmplxQRP.cc, CmplxSCHUR.cc, CmplxSVD.cc, EIG.cc, dbleCHOL.cc, |
|
1392 dbleHESS.cc, dbleLU.cc, dbleQR.cc, dbleQRP.cc, dbleSCHUR.cc, |
|
1393 dbleSVD.cc: Don't include mx-inlines.cc. |
|
1394 |
|
1395 * mx-inlines.cc: Abuse the preprocessor to eliminate lots of |
|
1396 duplicate code. |
|
1397 |
2800
|
1398 Sun Mar 9 03:44:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1399 |
2804
|
1400 * dbleQR.h (QR): Delete extra comma at end of list. |
|
1401 |
|
1402 * prog-args.cc (prog_args::getopt): Add missing const in cast. |
|
1403 |
|
1404 * dbleSVD.h (SVD::type): Delete extra comma at end of list. |
|
1405 |
|
1406 * idx-vector.h (idx_vector): Delete unnecessary idx_vector:: and |
|
1407 idx_vecotr_rep:: qualifiers. |
|
1408 |
|
1409 * Array.h (class Array): Delete unnecessary Array<T>:: qualifiers. |
|
1410 |
|
1411 * data-conv.h (save_type): Delete extra comma at end of list. |
|
1412 |
2800
|
1413 * CMatrix.cc, FEGrid.cc, Range.cc, dMatrix.cc, data-conv.cc, |
|
1414 dir-ops.cc, file-ops.h, idx-vector.cc, idx-vector.h, lo-ieee.cc, |
|
1415 lo-mappers.cc, oct-alloc.cc: Use `static_cast<T> (val)' instead of |
|
1416 old C-style `(T) val' casts. |
|
1417 |
2795
|
1418 Thu Mar 6 20:20:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1419 |
|
1420 * dMatrix.cc (operator >>): Return if an error occurs instead of |
|
1421 just breaking out of the innermost loop. |
|
1422 * CMatrix.cc (operator >>): Likewise. |
|
1423 |
2779
|
1424 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775
|
1425 |
|
1426 * Version 2.0.5 released. |
|
1427 |
2767
|
1428 Fri Feb 28 20:11:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1429 |
|
1430 * CmplxQR.cc (ComplexQR::init): New function. |
|
1431 (ComplexQR::ComplexQR): Use it. Use initializer list too. |
|
1432 * CmplxQRP.cc (ComplexQRP::init): New function. |
|
1433 Get sizes right in all cases. |
|
1434 (ComplexQR::ComplexQRP): Use it. Use initializer list too. |
|
1435 |
|
1436 * dbleQR.cc (QR::init): New function. |
|
1437 (QR::QR): Use it. Use initializer list too. |
|
1438 * dbleQRP.cc (QRP::init): New function. |
|
1439 Get sizes right in all cases. |
|
1440 (QR::QRP): Use it. Use initializer list too. |
|
1441 |
2759
|
1442 Wed Feb 26 15:46:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1443 |
|
1444 * mach-info.cc (oct_mach_info::string_to_float_format): |
|
1445 Recognize "vaxg", not "vax_g". |
|
1446 |
2713
|
1447 Fri Feb 21 16:07:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1448 |
2714
|
1449 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use correct |
|
1450 dimension in check for colon equivalent index. |
|
1451 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): A single-element |
|
1452 index whose value is 0 is also colon eqivalent for n == 1. |
|
1453 |
2713
|
1454 * lo-ieee.cc (octave_ieee_init): Reorder #ifdef stuff to put |
|
1455 system-specific tests first. |
|
1456 |
2709
|
1457 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702
|
1458 |
|
1459 * Version 2.0.4 released. |
|
1460 |
|
1461 Wed Feb 19 09:42:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1462 |
|
1463 * lo-ieee.cc: D'oh, it's `extern "C"', not `#extern "C"'. |
|
1464 |
2693
|
1465 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690
|
1466 |
|
1467 * Version 2.0.3 released. |
|
1468 |
2686
|
1469 Fri Feb 14 16:23:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1470 |
|
1471 * Makefile.in (bin-dist): Don't write empty strings to LIBRARIES. |
|
1472 |
2673
|
1473 Thu Feb 13 14:35:19 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1474 |
2676
|
1475 * Makefile.in (stamp-prereq): Depend on stamp-picdir. |
|
1476 (all): Don't depend on stamp-prereq or stamp-picdir. |
|
1477 (liboctave.a, stamp-shared): Do depend on stamp-prereq. |
|
1478 (stamp-picdir): Silence noise about making pic. |
|
1479 (stamp-shared): Use $(SH_LD) $(SH_LDFLAGS) instead of $(CXX) -shared. |
|
1480 |
2673
|
1481 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
1482 Fix typo in last change. |
|
1483 |
|
1484 * CColVector.cc (ComplexColumnVector::map (d_c_mapper)): |
|
1485 Convert from friend (moved from dColVector.cc). |
|
1486 * CMatrix.cc (ComplexMatrix::map (d_c_mapper)): |
|
1487 Likewise (moved from dMatrix.cc). |
|
1488 * CRowVector.cc (ComplexRowVector::map (d_c_mapper)): |
|
1489 Likewise (moved from dRowVector.cc). |
|
1490 |
|
1491 * dColVector.cc (ColumnVector::map (d_d_mapper)): Convert from friend. |
|
1492 * dMatrix.cc (Matrix::map (d_d_mapper)): Likewise. |
|
1493 * dRowVector.cc (RowVector::map (d_d_mapper)): Likewise. |
|
1494 * CColVector.cc (ComplexColumnVector::map (c_c_mapper)): Likewise. |
|
1495 * CMatrix.cc (ComplexMatrix::map (c_c_mapper)): Likewise. |
|
1496 * CRowVector.cc (ComplexRowVector::map (c_c_mapper)): Likewise. |
|
1497 |
|
1498 * dColVector.cc (ColumnVector::apply): Rename from map, return *this. |
|
1499 * dMatrix.cc (Matrix::apply): Likewise. |
|
1500 * dRowVector.cc (RowVector::apply): Likewise. |
|
1501 * CColVector.cc (ComplexColumnVector::apply): Likewise. |
|
1502 * CMatrix.cc (ComplexMatrix::apply): Likewise. |
|
1503 * CRowVector.cc (ComplexRowVector::apply): Likewise. |
|
1504 |
2668
|
1505 Tue Feb 11 19:44:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1506 |
|
1507 * lo-ieee.cc: Declare quiet_nan() and infinity(). |
|
1508 |
|
1509 Mon Feb 10 01:17:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1510 |
|
1511 * file-ops.cc (oct_unlink (const string&, string&)): |
|
1512 New two-arg version. |
|
1513 (oct_rmdir (const string&, string&)): New two-arg version. |
|
1514 (oct_mkdir (const string&, mode_t, string&)): New three-arg version. |
|
1515 (oct_mkfifo (const string&, mode_t, string&)): New three-arg version. |
|
1516 (oct_rename (const string&, const string&, string&)): |
|
1517 New three-arg version. |
|
1518 |
2663
|
1519 Fri Feb 7 13:15:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1520 |
|
1521 * idx-vector.h (idx_vector::orig_empty): New function. |
|
1522 |
|
1523 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
1524 Don't always resize to [](0x0) if one of the indices is empty or |
|
1525 zero. |
|
1526 |
2658
|
1527 Sun Feb 2 22:33:44 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1528 |
|
1529 * cmd-hist.cc (command_history::read): New arg, must_exist. |
|
1530 Set line_in_file here too. |
|
1531 (command_history::read_range): New arg, must_exist. |
|
1532 |
2651
|
1533 Fri Jan 31 09:21:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1534 |
|
1535 * f2c-main.c: Change C++-style comments to C-style comments. |
|
1536 |
2638
|
1537 Tue Jan 28 10:46:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1538 |
|
1539 * Makefile.in (install-inc): Create a relative symbolic link. |
|
1540 |
2634
|
1541 Mon Jan 27 15:52:27 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1542 |
|
1543 * Version 2.0.2 released. |
|
1544 |
2624
|
1545 Sat Jan 25 22:36:21 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1546 |
|
1547 * Makefile.in (bin-dist): New target. |
|
1548 |
2621
|
1549 Wed Jan 22 16:18:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1550 |
|
1551 * dbleSVD.cc (SVD::init): Work around apparent dgesvd() bug. |
|
1552 * CmplxSVD.cc (ComplexSVD::init): Work around apparent zgesvd() bug. |
|
1553 |
2613
|
1554 Mon Jan 20 18:44:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1555 |
|
1556 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
1557 If the number of columns is zero, also set the number of rows to zero. |
|
1558 (charMatrix::charMatrix (const char *)): Likewise. |
|
1559 |
2602
|
1560 Tue Jan 7 00:16:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1561 |
|
1562 * Version 2.0.1 released. |
|
1563 |
2601
|
1564 Sun Jan 5 12:07:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1565 |
|
1566 * dMatrix.cc (Matrix::read): Correctly compute the number of |
|
1567 columns for resizing when the number of rows is specified but the |
|
1568 number of columns is not. |
|
1569 |
2598
|
1570 Wed Dec 18 16:18:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1571 |
2599
|
1572 * Range.cc (operator -): New function. |
|
1573 |
2598
|
1574 * lo-ieee.cc: Include <nan.h> on all systems that have it. |
|
1575 |
2589
|
1576 Fri Dec 13 02:01:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1577 |
|
1578 * Array2-idx.h (assign): Delay resizing left hand side until we |
|
1579 know if the assignment conforms. |
|
1580 |
2583
|
1581 Tue Dec 10 01:43:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1582 |
|
1583 * Version 2.0 released. |
|
1584 |
2570
|
1585 Fri Dec 6 14:41:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1586 |
2575
|
1587 * Array2-idx.h (assign): If index is a colon, set number of |
|
1588 elements to the lhs dimension if the lhs dimension is greater than |
|
1589 zero. Otherwise, set it to the rhs dimension. |
|
1590 |
|
1591 * Version 1.94. |
|
1592 |
2570
|
1593 * Array2-idx.h (assign): Test for rhs scalar case first. |
|
1594 If index is colon, set number of elements to lhs dimension, not |
|
1595 rhs dimension. |
|
1596 |
2563
|
1597 Thu Dec 5 13:05:18 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1598 |
2566
|
1599 * sun-utils.h: Don't declare MAIN_ or MAIN__ here. |
|
1600 * sun-utils.cc: Delete. |
|
1601 * f2c-main.c: New file |
|
1602 |
|
1603 * Makefile.in: Fix file name lists. |
|
1604 |
2563
|
1605 * CMatrix.cc (lssolve): Don't redeclare retval, resize it. |
|
1606 |
2561
|
1607 Wed Dec 4 12:24:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1608 |
|
1609 * dMatrix.cc (Qzval): Don't try to use same memory three times. |
|
1610 Create result using Complex constructor, not multiplication. |
|
1611 Order elements as they are returned from Eispack. |
|
1612 |
2559
|
1613 Mon Dec 2 00:26:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1614 |
2560
|
1615 * lo-ieee.cc (octave_ieee_init): Kluge for octave_Inf on SCO. |
|
1616 Only include nan.h if SCO is defined. Define _IEEE before |
|
1617 including it and undefine it afterward. |
|
1618 [SCO] (isnan): Don't mistake Inf as NaN. |
|
1619 |
2559
|
1620 * Array-idx.h (assign): Only resize if assignment conforms. |
|
1621 |
2551
|
1622 Wed Nov 20 01:00:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1623 |
|
1624 * Makefile.in (INCLUDES): Delete lo-error.h. |
|
1625 * lo-error.h: Delete (moved to libcruft/misc). |
|
1626 |
|
1627 * Version 1.93. |
|
1628 |
2546
|
1629 Tue Nov 19 23:07:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1630 |
2549
|
1631 * oct-glob.cc (glob_match::match): Don't expect our flag values to |
|
1632 be the same as they are in fnmatch.h. |
|
1633 |
2546
|
1634 * f77-fcn.c, f77-fcn.h: Move to libcruft/misc directory. |
|
1635 |
|
1636 * Makefile.in (INCLUDES): Delete f77-fcn.h. |
|
1637 (SOURCES): Delete f77-fcn.c. |
|
1638 |
2522
|
1639 Fri Nov 15 13:47:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1640 |
|
1641 * lo-ieee.h: [SCO]: Declare isinf and isnan. |
|
1642 |
2512
|
1643 Thu Nov 14 00:06:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1644 |
|
1645 * Version 1.92. |
|
1646 |
2508
|
1647 Wed Nov 13 11:19:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1648 |
2512
|
1649 * cmd-hist.cc (command_history::add): Ignore empty input lines, or |
|
1650 lines that have only carriage return or newline. |
|
1651 |
2508
|
1652 * lo-ieee.cc (isnan, isinf): Provide functions for SCO. |
|
1653 |
2500
|
1654 Tue Nov 12 11:11:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1655 |
|
1656 * idx-vector.cc (idx_is_inf_or_nan): New function. |
|
1657 (IDX_VEC_REP::idx_vector_rep): Use it. |
|
1658 |
2493
|
1659 Sun Nov 10 17:09:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1660 |
|
1661 * str-vec.h, str-vec.cc: Add constructors to make string vectors |
|
1662 from vectors of C strings. |
|
1663 |
|
1664 * oct-glob.h, oct-glob.cc (glob_match): Allow pat to be a string |
|
1665 vector. |
|
1666 (glob_match::match): Allow match string to be a string vector. |
|
1667 (glob_match::glob): New function. |
|
1668 |
|
1669 * chMatrix.cc (charMatrix::row_as_string): New arg, strip_ws. |
|
1670 |
|
1671 * Array-b.cc: New file. |
|
1672 * Makefile.in (TI_SRC): Add it to the list. |
|
1673 |
2492
|
1674 Fri Nov 8 18:09:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1675 |
|
1676 * file-ops.cc: Change #include "" to #include <> for safe-lstat.h |
|
1677 and safe-stat.h, to avoid getting them from $srcdir when we really |
|
1678 want the version from the build directory. (Maybe this should be |
|
1679 done for all the include files, not just those that are |
|
1680 auto-generated? Hmm.) |
|
1681 |
2481
|
1682 Thu Nov 7 10:45:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1683 |
2482
|
1684 * Version 1.91. |
|
1685 |
2481
|
1686 * Array3.cc (Array3<T>::resize): Make it work. |
|
1687 |
|
1688 Wed Nov 6 22:44:33 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1689 |
|
1690 * oct-alloc.h, oct-alloc.cc: New files. |
|
1691 * Makefile.in: Add them to the lists. |
|
1692 |
|
1693 Mon Nov 4 21:49:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1694 |
|
1695 * dbleQRP.cc (QRP::QRP): Don't pass tmp data to unsafe constructor. |
|
1696 * CmplxQRP.cc (ComplexQRP::ComplexQRP): Ditto. |
|
1697 |
2466
|
1698 Sun Nov 3 15:45:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1699 |
|
1700 * file-ops.cc (file_stat::is_blk, file_stat::is_chr, |
|
1701 file_stat::is_dir, file_stat::is_fifo, file_stat::is_lnk, |
|
1702 file_stat::is_reg, file_stat::is_sock): Just return false if the |
|
1703 underlying macro is not defined. |
|
1704 |
|
1705 * oct-math.h (lgamma, gamma): Delete declarations. |
|
1706 (asinh, acosh, atanh, erf, erfc): Declare arg types too. |
|
1707 Protect declarations with #ifdef HAVE_*. |
|
1708 |
2440
|
1709 Wed Oct 30 11:42:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1710 |
2452
|
1711 * Version 1.90. |
|
1712 |
|
1713 * Makefile.in (DISTFILES): Add ChangeLog. |
|
1714 |
2444
|
1715 * cmd-hist.cc: Only include fcntl.h if HAVE_FCNTL_H. |
|
1716 |
|
1717 * Matrix-ext.cc: Include <cfloat>, not <float.h>. |
|
1718 |
2443
|
1719 * CMatrix.cc, cmd-hist.cc, file-ops.cc, file-ops.h, filemode.c, |
2444
|
1720 mkdir.c, rename.c, rmdir.c, safe-xstat.cin, statdefs.h, sysdir.h, |
|
1721 tempname.c, utils.cc: Only include sys/types.h if HAVE_SYS_TYPES_H. |
2443
|
1722 |
2440
|
1723 * Array3.h (T Array3<T>::checkelem): Return T() for bogus value, |
|
1724 since that is now accepatble syntax, even for built-in types. |
|
1725 * Array2.h (T Array2<T>::checkelem): Likewise |
|
1726 |
2433
|
1727 Sat Oct 26 23:37:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1728 |
|
1729 * file-ops.cc (mkfifo) [! HAVE_MKFIFO]: Just print an error |
|
1730 message and return -1. |
|
1731 |
2428
|
1732 Fri Oct 25 01:24:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1733 |
2431
|
1734 * str-vec.h (str_vec_compare): Declare args as const void *, then |
|
1735 cast them to const string * in the body of the function. |
|
1736 |
|
1737 * file-ops.cc (file_stat::mode_as_string): Explicitly construct |
|
1738 string from buf. |
|
1739 |
2428
|
1740 * Array3.h (Array3::checkelem): Tag bogus return value with |
|
1741 GCC_ATTRIBUTE_UNUSED. |
|
1742 * Array2.h (Array2::checkelem): Likewise. |
|
1743 |
2424
|
1744 Thu Oct 24 19:40:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1745 |
|
1746 * Quad.h (Quad): Define virtual destructor. |
|
1747 |
2408
|
1748 Tue Oct 15 11:34:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1749 |
|
1750 * CMatrix.cc (ComplexMatrix::all_elements_are_real): new function. |
|
1751 |
2401
|
1752 Sun Oct 13 11:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1753 |
|
1754 * sun-utils.h: Conditionally declare MAIN__ too. Declare MAIN_ |
|
1755 and MAIN__ extern "C". |
|
1756 * sun-utils.cc: Include sun-utils.h here. Delete extern "C" stuff. |
|
1757 |
2391
|
1758 Sat Oct 12 12:40:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1759 |
|
1760 * MArray-misc.cc: New file. |
|
1761 * Makefile.in (MATRIX_SRC): Add it to the list. |
|
1762 |
|
1763 * mx-inlines.cc (equal): Return bool, not int. |
|
1764 |
|
1765 * idx-vector.h (idx_vector (double)): New constructor. |
|
1766 |
|
1767 * chMatrix.h, chMatrix.cc, CMatrix.h, CMatrix.cc, dMatrix.h, |
|
1768 dMatrix.cc, dDiagMatrix.h, dDiagMatrix.cc, dRowVector.h, |
|
1769 dRowVector.cc, dColVector.h, dColVector.cc, CColVector.h, |
|
1770 CColVector.cc, CDiagMatrix.h, CDiagMatrix.cc, CRowVector.h, |
|
1771 CRowVector.cc: Logical operators return bool, not int. |
|
1772 |
|
1773 * CMatrix.h, CMatrix.cc (ComplexMatrix::any_element_is_inf_or_nan): |
|
1774 New function. |
|
1775 |
|
1776 * dMatrix.h, dMatrix.cc (Matrix::any_element_is_negative, |
|
1777 Matrix::any_element_is_inf_or_nan, Matrix::abs, |
|
1778 Matrix::all_elements_are_inf_or_nan): New functions. |
|
1779 |
|
1780 * Range.h, Range.cc (Range::all_elements_are_ints): New function. |
|
1781 |
|
1782 * MArray.cc, MArray2.cc, MDiagArray2.cc: Call gripe_nonconformant |
|
1783 for errors. Simplify macros by converting FCN to string for error |
|
1784 messages. |
|
1785 |
|
1786 * Array-idx.h (Array<T>::index): New function. Don't call |
|
1787 clear_index() here. |
|
1788 (Array<T>::value): Call it, do call clear_index() here. |
|
1789 * Array2-idx.h (Array<T>::value, Array<T>::index): Likewise, for |
|
1790 one and two arg index functions. |
|
1791 |
|
1792 Tue Sep 17 21:21:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1793 |
|
1794 * DAEFunc.h: Delete #pragma interface since there is no longer a |
|
1795 separate implementation file. |
|
1796 |
2354
|
1797 Tue Aug 20 17:38:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1798 |
2358
|
1799 * Makefile.in (stamp-picdir): Only create a pic subdirectory if |
|
1800 SHARED_LIBS is true AND CPICFLAG or CXXPICFLAG is not empty. |
|
1801 |
2356
|
1802 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Rename arg sort to |
|
1803 sort_uniq. If sort_uniq is nonzero, sort the elements and make |
|
1804 them uniq. |
|
1805 |
2354
|
1806 * CMatrix.cc (ComplexMatrix::row_max, ComplexMatrix::row_min, |
|
1807 ComplexMatrix::column_max, ComplexMatrix::column_min): |
|
1808 Rewrite. Also return index as a reference arg. |
|
1809 (ComplexMatrix::row_max_loc, ComplexMatrix::row_min_loc, |
|
1810 ComplexMatrix::column_max_loc, ComplexMatrix::column_min_loc): |
|
1811 Delete. |
|
1812 |
|
1813 * dMatrix.cc (Matrix::row_max, Matrix::row_min, |
|
1814 Matrix::column_max, Matrix::column_min): |
|
1815 Rewrite. Also return index as a reference arg. |
|
1816 (Matrix::row_max_loc, Matrix::row_min_loc, |
|
1817 Matrix::column_max_loc, Matrix::column_min_loc): Delete. |
|
1818 |
|
1819 Fri Aug 9 05:01:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1820 |
|
1821 * dMatrix.cc (Matrix::row_min, Matrix::row_min_loc, |
|
1822 Matrix::row_max, Matrix::row_max_loc, Matrix::column_min, |
|
1823 Matrix::column_min_loc, Matrix::column_max, |
|
1824 Matrix::column_max_loc): Ignore leading NaNs. |
|
1825 * CMatrix.cc (ComplexMatrix::row_min, ComplexMatrix::row_min_loc, |
|
1826 ComplexMatrix::row_max, ComplexMatrix::row_max_loc, |
|
1827 ComplexMatrix::column_min, ComplexMatrix::column_min_loc, |
|
1828 ComplexMatrix::column_max, ComplexMatrix::column_max_loc): Ignore |
|
1829 leading NaNs. |
|
1830 |
2352
|
1831 Thu Aug 8 16:04:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1832 |
|
1833 * QPSOL.cc (QPSOL::do_minimize): Insert linear constraint bounds |
|
1834 starting at n, not 0. |
|
1835 |
2349
|
1836 Sat Jul 27 02:54:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1837 |
|
1838 * dMatrix.cc (Matrix::Matrix (const RowVector&), |
|
1839 Matrix::Matrix (const ColumnVector&)): New constructors. |
|
1840 |
|
1841 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const RowVector&), |
|
1842 ComplexMatrix::ComplexMatrix (const ColumnVector&), |
|
1843 ComplexMatrix::ComplexMatrix (const ComplexRowVector&), |
|
1844 ComplexMatrix::ComplexMatrix (const ComplexColumnVector&)): |
|
1845 New constructors. |
|
1846 |
|
1847 * chMatrix.cc (charMatrix::charMatrix (const string_vector&)): |
|
1848 New constructor. |
|
1849 |
2343
|
1850 Wed Jul 24 16:39:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1851 |
|
1852 * LSODE.cc (do_integrate): Check to make sure that the state and |
|
1853 derivative vectors are the same size. |
2344
|
1854 * DASSL.cc (do_integrate): Likewise. |
2343
|
1855 |
2330
|
1856 Sun Jul 14 17:30:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1857 |
|
1858 * dMatrix.cc (Matrix::read, Matrix::write): Convert to use |
|
1859 iostreams and handler data format conversions. Delete old methods |
|
1860 that used stdio. |
|
1861 |
|
1862 * data-conv.h, data-conv.cc (oct_data_conv): New class. |
|
1863 |
|
1864 Fri Jul 12 13:52:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1865 |
|
1866 * mach-info.h: Rename from float-fmt.h. |
|
1867 * mach-info.cc: Rename from float-fmt.cc. |
|
1868 Handle machine information using a singlton class. |
|
1869 * Makefile.in: Update appropriate lists. |
|
1870 |
|
1871 Tue Jul 9 11:49:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1872 |
|
1873 * Array-flags.cc: Provide definitions for the flags even if |
|
1874 OCTAVE_SOURCE is not defined. |
|
1875 |
|
1876 * Array.h, Array2.h, Array3.h: BOUNDS_CHECKING now affects |
|
1877 operator(), not elem(). |
|
1878 * Array3.h: Move indexing methods here from Array3.cc. |
|
1879 |
|
1880 Mon Jun 24 02:30:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1881 |
|
1882 * Array3.cc (checkelem): Fix typo in call to Array2<T>::elem(). |
|
1883 |
|
1884 * Makefile.in (install-lib): Use INSTALL_PROGRAM instead of |
|
1885 INSTALL_DATA for shared libs. |
|
1886 |
|
1887 Thu Jun 6 09:59:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1888 |
|
1889 * Quad.cc: Include lo-error.h here too. |
|
1890 |
|
1891 Mon May 27 12:41:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1892 |
|
1893 * file-ops.h: Include sys/types.h here. |
|
1894 |
|
1895 Wed May 22 00:20:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1896 |
|
1897 * chMatrix.cc (charMatrix::transpose): Provide definition. |
|
1898 |
|
1899 * Array-idx.h (maybe_delete_elements): Correctly compute number of |
|
1900 elements in result. |
|
1901 * Array2-idx.h (maybe_delete_elements): Likewise for number of |
|
1902 rows and columns in result. |
|
1903 |
|
1904 Tue May 21 23:46:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1905 |
|
1906 * dbleQR.cc (QR::QR): Don't create result from to-be-deleted data. |
|
1907 * CmplxQR.cc (ComplexQR::ComplexQR): Likewise. |
|
1908 |
|
1909 Fri May 17 03:06:02 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1910 |
|
1911 * Makefile.in (install-inc): Install in octincludedir, not includedir. |
|
1912 |
|
1913 Sun May 12 03:40:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1914 |
|
1915 * Makefile.in (uninstall): Also delete shared library. |
|
1916 Split install into install-libs and install-includes. |
|
1917 (install-inc): If linkdir is a directory, leave it alone. |
|
1918 |
|
1919 * sun-utils.cc (MAIN__): Define for Linux/ELF systems. |
|
1920 |
|
1921 Thu May 2 20:19:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1922 |
|
1923 * Array-idx.h (assign): Handle A(:) = X for A undefined or empty. |
|
1924 * Array2-idx.h (assign): Likewise. |
|
1925 |
|
1926 Tue Apr 30 05:43:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1927 |
|
1928 * Array2.cc (Array2<T>::range_error): New functions. |
|
1929 |
|
1930 * Array.h (class Array<T>): elem() and operator() are now |
|
1931 equivalent, and do bounds checking by default. |
|
1932 * Array2.cc (class Array2<T>): Likewise. |
|
1933 |
|
1934 Sat Apr 6 21:26:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1935 |
|
1936 * Makefile.in (maintainer-clean, distclean): Also delete |
|
1937 stamp-picdir, stamp-shared, and pic directory. |
|
1938 (stamp-prereq): New target. |
|
1939 |
|
1940 Fri Mar 29 13:44:13 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1941 |
|
1942 * NPSOL.h (NPSOL_options::set_option (const char *, int)): |
|
1943 New function. |
|
1944 |
|
1945 * Array.h, Array.cc (Array<T>::range_error ()): New functions. |
|
1946 * Array.h (Array<T>::checkelem): Use them. |
|
1947 |
|
1948 * base-lu.h, base-lu.cc: Parameterize based on types of matrix |
|
1949 elements too. |
|
1950 * dbleLU.h, dbleLU.cc, CmplxLU.h, CmplxLU.cc: Change to match. |
|
1951 |
|
1952 * MDiagArray2.h (MDiagArray2 (const MArray<T>& a)): Delete. |
|
1953 |
|
1954 * Makefile.in (distclean): Delete so_locations, which is created |
|
1955 on DEC Alpha systems. |
|
1956 |
|
1957 Sat Mar 23 04:02:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1958 |
|
1959 * Array.h (HEAVYWEIGHT_INDEXING): Do define this here if it is not |
|
1960 already defined. |
|
1961 |
|
1962 Fri Mar 22 23:53:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1963 |
|
1964 * pathsearch.cc: Include config.h. |
|
1965 |
|
1966 Wed Mar 20 04:54:03 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1967 |
|
1968 * Array2-idx.h (assign (Array2<LT>&, const Array2<RT>&)): Don't |
|
1969 allow M(I, J) = scalar if I or J is empty. |
|
1970 |
|
1971 * Array-idx.h: Delete Array2 and Array3 code (now in Array2-idx.h |
|
1972 and Array3-idx.h). |
|
1973 |
|
1974 Thu Mar 7 10:20:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1975 |
|
1976 * lo-error.h: Make comments C friendly. |
|
1977 |
|
1978 Sun Mar 3 14:04:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1979 |
|
1980 * Array2.h (make_unique): Move all indexing functions here. |
|
1981 * Array2.cc: From here. |
|
1982 |
|
1983 * Array.h, Array2.h (NO_BOUNDS_CHECKING): New macro to control |
|
1984 whether operator() calls elem or checkelem. |
|
1985 |
|
1986 * Array.h (make_unique): New private function. |
|
1987 Move all indexing functions here. |
|
1988 * Array.cc: From here. |
|
1989 |
|
1990 * pathsearch.cc (dir_path::find_all): Index tmp, don't dereference |
|
1991 it too. |
|
1992 |
|
1993 * Array-d.cc, Array-ch.cc, Array-C.cc, Array-s.cc, Array-str.cc, |
|
1994 Array-i.cc, MArray-i.cc, MArray-s.cc, MArray-d.cc, MArray-ch.cc, |
|
1995 MArray-C.cc: Include config.h. |
|
1996 |
|
1997 * Array.h, Array2.h, DiagArray2.h, Array3.h: |
|
1998 Don't define HEAVYWEIGHT_INDEXING here. |
|
1999 |
|
2000 Sat Mar 2 18:39:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2001 |
|
2002 * base-lu.h, base-lu.cc: New files. |
|
2003 * Makefile.in: Add them to the appropriate lists. |
|
2004 * dbleLU.h, dbleLU.cc, CmplxLU.h, Cmplx.cc: Derive from base_lu. |
|
2005 |
|
2006 Fri Mar 1 08:30:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2007 |
|
2008 * Array2.h, Array3.h, DiagArray2.h: New files, extracted from Array.h |
|
2009 * Array2-idx.h, Array3-idx.h: New files, extracted from Array-idx.h |
|
2010 * Array2.cc, Array3.cc, DiagArray2.cc: New files, from Array.cc. |
|
2011 * MArray2.h, MDiagArray2.h: New files, extracted from MArray.h. |
|
2012 * MArray2.cc, MDiagArray2.cc, MArray-defs.h: New files, from MArray.cc. |
|
2013 |
|
2014 * MArray.h (INSTANTIATE_MARRAY_FRIENDS): New macro. |
|
2015 (INSTANTIATE_MARRAY2_FRIENDS): Likewise. |
|
2016 (INSTANTIATE_MDIAGARRAY_FRIENDS): Likewise. |
|
2017 * MArray-C.cc, MArray-ch.cc, MArray-c.cc, MArray-i.cc, MArray-s.cc: |
|
2018 Simplify using new macros. |
|
2019 |
|
2020 Mon Feb 26 03:04:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2021 |
|
2022 * Makefile.in (install): If $(includedir) ends in version string, |
|
2023 make link to name that does not include version info. |
|
2024 |
|
2025 * lo-ieee.cc: Include <cmath> here. |
|
2026 |
|
2027 Fri Feb 16 20:52:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2028 |
|
2029 * lo-ieee.cc, lo-ieee.h: New files. |
|
2030 * lo-mappers.cc, lo-mappers.h: New files. |
|
2031 * lo-utils.cc, lo-utils.h: New files. |
|
2032 * Makefile.in: Add them to the appropriate lists. |
|
2033 |
|
2034 Thu Feb 15 22:02:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2035 |
|
2036 * dMatrix.cc (all_integers, too_large_for_float): New functions. |
|
2037 * CMatrix.cc (all_integers, too_large_for_float): New functions. |
|
2038 |
|
2039 * byte-swap.h, data-conv.h, data-conv.cc, float-fmt.h, |
|
2040 float-fmt.cc: New files. |
|
2041 * Makefile.in: Include them in the appropriate lists. |
|
2042 |
|
2043 Wed Feb 14 01:49:47 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2044 |
|
2045 * dMatrix.cc (Qzval): New function. |
|
2046 |
|
2047 Tue Feb 13 12:41:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2048 |
|
2049 * NPSOL.cc (NPSOL_options::set_option): Arg key is now string, not |
|
2050 char*. |
|
2051 |
|
2052 * DASSL.h, DASSL.cc: Do better management of temporary workspace. |
|
2053 Use F77_XFCN to call Fortran subroutine. |
|
2054 * dColVector.cc, CColVector.cc: Likewise. |
|
2055 * dRowVector.cc, CRowVector.cc: Likewise. |
|
2056 * NPSOL.h, NPSOL.cc: Likewise. |
|
2057 * CmplxCHOL.cc: Likewise. |
|
2058 * dbleCHOL.cc: Likewise. |
|
2059 * CMatrix.cc: Likewise. |
|
2060 * dMatrix.cc: Likewise. |
|
2061 * QPSOL.cc: Likewise. |
|
2062 * LSODE.cc: Likewise. |
|
2063 |
|
2064 Sun Feb 11 14:14:26 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2065 |
|
2066 * dbleHESS.cc (HESS::init): Dimension of tau is n-1, not n+1. |
|
2067 |
|
2068 * dbleSCHUR.h, dbleSCHUR.cc: Do better management of temporary |
|
2069 workspace. Use F77_XFCN to call Fortran subroutine. |
|
2070 * CmplxAEPBAL.h, CmplxAEPBAL.cc: Likewise. |
|
2071 * CmplxSCHUR.h, CmplxSCHUR.cc: Likewise. |
|
2072 * dbleGEPBAL.h, dbleGEPBAL.cc: Likewise. |
|
2073 * dbleAEPBAL.h, dbleAEPBAL.cc: Likewise. |
|
2074 * CmplxHESS.h, CmplxHESS.cc: Likewise. |
|
2075 * CmplxSVD.h, CmplxSVD.cc: Likewise. |
|
2076 * dbleHESS.h, dbleHESS.cc: Likewise. |
|
2077 * dbleSVD.h, dbleSVD.cc: Likewise. |
|
2078 * EIG.h, EIG.cc; Likewise. |
|
2079 * CollocWt.cc: Likewise. |
|
2080 * NLEqn.cc: Likewise. |
|
2081 * Quad.cc: Likewise. |
|
2082 |
|
2083 Sat Feb 10 12:14:59 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2084 |
|
2085 * dbleLU.h, dbleLU.cc: Do better management of temporary workspace. |
|
2086 Use F77_XFCN to call Fortran subroutine. |
|
2087 * CmplxLU.h, CmplxLU.cc: Ditto. |
|
2088 * dbleQR.h, dbleQR.cc: Ditto. |
|
2089 * CmplxQR.h, CmplxQR.cc: Ditto. |
|
2090 * dbleQRP.h, dbleQRP.cc: Ditto. |
|
2091 * CmplxQRP.h, CmplxQRP.cc: Ditto. |
|
2092 |
|
2093 * dir-ops.h (dir_entry::dir): Declare as void*, not DIR*. |
|
2094 (struct DIR): delete forward declaration. |
|
2095 (dir_entry::operator = (const dir_entry$)): Protect against |
|
2096 copying same object. |
|
2097 * dir-ops.cc: Cast dir appropriately. |
|
2098 |
|
2099 Fri Feb 9 16:12:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2100 |
|
2101 * lo-error.cc: Moved to libcruft/misc. |
|
2102 * Makefile.in: Delete it from the list. |
|
2103 |
|
2104 * f77-fcn.c (f77_context, f77_exception_encountered): Delete |
|
2105 definitions (they have been moved to libcruft/misc/f77-extern.cc). |
|
2106 |
|
2107 * Array-flags.h: New file. |
|
2108 * Array-idx.h: Include it here. |
|
2109 * Makefile.in (MATRIX_INC): Add it to the list. |
|
2110 |
|
2111 * Array-flags.cc: Renamed from Array-ext.cc. |
|
2112 (liboctave_dfi_flag): Renamed from dfi_flag. |
|
2113 (liboctave_pcv_flag): Renamed from pcv_flag. |
|
2114 (liboctave_pzo_flag): Renamed from pzo_flag. |
|
2115 (liboctave_rre_flag): Renamed from rre_flag. |
|
2116 * Array-idx.h: Change all uses of dfi_flag, etc. |
|
2117 * Makefile.in (MATRIX_SRC): Change file name here too. |
|
2118 |
|
2119 * Makefile.in (LIBOCTAVE_LFLAGS, LIBOCTAVE_LIBS): New variables. |
|
2120 (stamp-shared): Use them here. |
|
2121 |
|
2122 Tue Feb 6 09:53:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2123 |
|
2124 * cmd-hist.cc (command_history::ignore_entries): Delete default |
|
2125 argument value. |
|
2126 |
|
2127 Mon Feb 5 12:07:50 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2128 |
|
2129 * CmplxAEPBAL.h, CmplxCHOL.h, CmplxDET.h, CmplxHESS.h, CmplxLU.h, |
|
2130 CmplxQR.h, CmplxQRP.h, CmplxSCHUR.h, CmplxSVD.h, dbleAEPBAL.h, |
|
2131 dbleCHOL.h, dbleDET.h, dbleGEPBAL.h, dbleHESS.h, dbleLU.h, |
|
2132 dbleQR.h, dbleQRP.h, dbleSCHUR.h, dbleSVD.h: |
|
2133 Clean up constructors, assigment operator. |
|
2134 |
|
2135 Sun Feb 4 03:12:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2136 |
|
2137 * NPSOL.cc (do_minimize): Use F77_XFCN to call npsol. |
|
2138 Check f77_exception_encountered on return. |
|
2139 |
|
2140 * f77-fcn.c (f77_exception_encountered): New variable. |
|
2141 (F77_XFCN): Set it. |
|
2142 * f77-fcn.h: Provide declaration. |
|
2143 |
|
2144 * QPSOL.h (QPSOL_options::set_options): Renamed from copy(). |
|
2145 |
|
2146 * NPSOL.h (NPSOL_options::set_options): Renamed from copy(). |
|
2147 |
|
2148 * NLEqn.h (NLEqn_options::set_options): New function. |
|
2149 * Quad.h (Quad_options::set_options): Likewise. |
|
2150 |
|
2151 * LP.h (class LP): Add accessors for LP data. |
|
2152 |
|
2153 * NLEqn.h (NLEqn::n): Delete. |
|
2154 |
|
2155 * NLEqn.h (class NLEqn::n): Likewise. |
|
2156 |
|
2157 * NLP.h (class NLP): Add accessors for NLP data. |
|
2158 |
|
2159 * NPSOL.h (class NPSOL_options): Move constructors, set, and |
|
2160 access functions here. |
|
2161 * NPSOL.cc.cc: From here. |
|
2162 |
|
2163 * QLD.h (class QLD): Add destructor definition. |
|
2164 * Objective.h (class Objective): Likewise. |
|
2165 * ODEFunc.h (class ODEFunc): Likewise. |
|
2166 * NLFunc.h (class NLFunc): Likewise. |
|
2167 * NLEqn.h (class NLEqn): Likewise. |
|
2168 * NLConst.h (class NLConst): Likewise. |
|
2169 * LinConst.h (class LinConst): Likewise. |
|
2170 * LSODE.h (class LSODE_options): Likewise. |
|
2171 * CollocWt.h (class CollocWt): Likewise. |
|
2172 * Bounds.h (class Bounds): Likewise. |
|
2173 |
|
2174 * QLD.cc (QLD::set_default_options): Delete. |
|
2175 |
|
2176 * QP.h (QP): Add accessors for QP data. |
|
2177 Add copy constructor, operator =, and destructor definitions. |
|
2178 |
|
2179 * Range.h, Quad.h, QP.h, QLD.h, Objective.h, NLP.h, NLFunc.h, |
|
2180 NLConst.h, LinConst.h, LSODE.h, LP.h, FEGrid.h, EIG.h, DASSL.h, |
|
2181 DAEFunc.h, CollocWt.h, Bounds.h: |
|
2182 Clean up constructors, assigment operator. |
|
2183 |
|
2184 * dRowVector.cc (RowVector::transpose): Use magic of reference |
|
2185 counting to avoid duplicating the data immediately. |
|
2186 * dColVector.cc (ColumnVector::transpose): Likewise. |
|
2187 * CRowVector.cc (ComplexrowVector::transpose): Likewise. |
|
2188 * CColVector.cc (ComplexColumnVector::transpose): Likewise. |
|
2189 |
|
2190 Sat Feb 3 01:02:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2191 |
|
2192 * prog-args.h (prog_args::option_argument): New enum. |
|
2193 |
|
2194 * f77-fcn.h: Rename from f77-uscore.h. |
|
2195 (F77_XFCN_ERROR, F77_XFCN): New macros. |
|
2196 * f77-fcn.c: New file. |
|
2197 * Makefile.in (SOURCES): Add it to the list. |
|
2198 |
|
2199 * ODEFunc.h: Clean up. |
|
2200 |
|
2201 * DASSL.cc, DASSL.h: New files. |
|
2202 * Makefile.in: Add them to the appropriate lists. |
|
2203 |
|
2204 * LSODE.cc, LSODE.h: New files. |
|
2205 * Makefile.in: Add them to the appropriate lists. |
|
2206 |
|
2207 * ODE.cc: Delete. |
|
2208 * Makefile.in (SOURCES): Remove from list. |
|
2209 |
|
2210 * base-de.h, DAE.cc: New files. |
|
2211 * Makefile.in: Add them to the appropriate lists. |
|
2212 * ODE.h: Only define interface for ODE classes. |
|
2213 * DAE.h: Only define interface for ODE classes. |
|
2214 |
|
2215 * LPsolve.cc (do_minimize): Print sorry not implemented message. |
|
2216 (LPsolve::set_default_options)): Delete |
|
2217 * LPsolve.h (class LPsolve): Add operator =, copy constructor, and |
|
2218 destructor. |
|
2219 |
|
2220 * LP.h (class LP): Add operator =, copy constructor, and destructor. |
|
2221 |
|
2222 * QPSOL.h (QPSOL::QPSOL (const QPSOL&)): New constructor. |
|
2223 (QPSOL::operator =): Call base class operator = instead of assuming |
|
2224 we know what to copy. |
|
2225 |
|
2226 * base-min.h (size): New function. |
|
2227 |
|
2228 * NLP.h (NLP::size): Delete. |
|
2229 (NLP::NLP (const NLP&)): New constructor. |
|
2230 (NLP::operator =): Call base class operator = instead of assuming |
|
2231 we know what to copy. |
|
2232 |
|
2233 * NPSOL.h, NPSOL.cc (NPSOL::option): Delete. |
|
2234 (class NPSOL): Add operator = and destructor. |
|
2235 |
|
2236 * NPSOL.h: Add NPSOL_options() to list of constructor initalizers. |
|
2237 |
|
2238 Fri Feb 2 22:52:55 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2239 |
|
2240 * Makefile.in (liboctave.a): Depend on $(PICOBJ). |
|
2241 |
|
2242 Wed Jan 31 05:29:25 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2243 |
|
2244 * dMatrix.cc (Givens, Sylvester, Matrix::expm): New functions. |
|
2245 * CMatrix.cc (Givens, Sylvester, ComplexMatrix::expm): Ditto. |
|
2246 |
|
2247 Mon Jan 29 00:00:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2248 |
|
2249 * prog-args.h, prog-args.cc: New files. |
|
2250 * Makefile.in: Add them to lists. |
|
2251 |
|
2252 * getopt.h, getopt.c, getopt1.c: New files. |
|
2253 * Makefile.in: Add them to the lists. |
|
2254 |
|
2255 * oct-term.h, oct-term.cc: New files. |
|
2256 * Makefile.in: Add them to the lists. |
|
2257 |
|
2258 * str-vec.cc: New file. |
|
2259 * Makefile.in (SOURCES): Add it to the list. |
|
2260 |
|
2261 * file-ops.cc (oct_tmpnam): Move here from src/utils.cc. |
|
2262 |
|
2263 * tempname.c, tempnam.c: Move here from src directory. |
|
2264 * Makefile.in: Add to lists. |
|
2265 |
|
2266 Sun Jan 28 23:06:19 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2267 |
|
2268 * cmd-hist.h, cmd-hist.cc: New files. |
|
2269 * Makefile.in: Add them to lists. |
|
2270 |
|
2271 Thu Jan 25 20:36:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2272 |
|
2273 * oct-glob.h, oct-glob.cc: New files. |
|
2274 * Makefile.in: Add them to lists. |
|
2275 |
|
2276 Wed Jan 24 01:55:08 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2277 |
|
2278 * pathsearch.h, pathsearch.cc: New files. |
|
2279 * Makefile.in: Add them to lists. |
|
2280 |
|
2281 * dir-ops.h, dir-ops.cc: New files. |
|
2282 * sysdir.h: Move here from src directory. |
|
2283 * Makefile.in: Add them to lists. |
|
2284 |
|
2285 * Array.h (Array::qsort): Return *this, not void. |
|
2286 * str-vec.h (string_vector::qsort): Likewise. |
|
2287 |
|
2288 * chMatrix.cc (row_as_string): Resize result to eliminate |
|
2289 unnecessary NULs. |
|
2290 |
|
2291 Tue Jan 23 00:40:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2292 |
|
2293 * safe-xstat.hin, safe-xstat.cin, statdefs.h, file-ops.h, |
|
2294 file-ops.cc, filemode.c, mkdir.c, rmdir.c, rename.c: |
|
2295 Files moved here from src directory. |
|
2296 * Makefile.in: Add them to lists. Include appropriate rules. |
|
2297 |
|
2298 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
2299 Use pointers, not references (this is C code!). |
|
2300 |
|
2301 * oct-math.h: New file. |
|
2302 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
2303 Files moved here from src directory. |
|
2304 * Makefile.in: Add them to lists. |
|
2305 |
|
2306 Sun Jan 21 22:53:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2307 |
|
2308 * idx-vector.cc (make_uniq): Fix major brain-o. |
|
2309 |
|
2310 * CmplxSCHUR.h, CmplxSCHUR.cc, dbleSCHUR.h, dbleSCHUR.cc: |
|
2311 Convert to use string class instead of char*. |
|
2312 |
|
2313 * str-vec.h, Array-str.cc: New files. |
|
2314 |
|
2315 * Array.h (Array::qsort): New function. |
|
2316 |
|
2317 Fri Jan 12 01:45:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2318 |
|
2319 * Array.h: Nest ArrayRep class inside Array class. |
|
2320 Refer to ArrayRep, not ArrayRep<T>. |
|
2321 Move all ArrayRep functions inline. |
|
2322 Don't declare other Array classes as friends of ArrayRep. |
|
2323 * Array.cc: Delete ArrayRep functions. |
|
2324 * Array-idx.h: Refer to ArrayRep, not ArrayRep<T>. |
|
2325 |
|
2326 * Array-C.cc, Array-ch.cc, Array-d.cc, Array-i.cc, Array-s.cc: |
|
2327 Don't instantiate ArrayRep objects. |
|
2328 |
|
2329 Wed Jan 10 04:40:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2330 |
|
2331 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
2332 New constructor. |
|
2333 |
|
2334 Tue Jan 9 04:44:56 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2335 |
|
2336 * dbleGEPBAL.cc (GEPBALANCE::init): Use string instead of char* |
|
2337 for balance_job arg. |
|
2338 * dbleAEPBAL.cc (AEPBALANCE::init): Likewise. |
|
2339 * CmplxAEPBAL.cc (ComplexAEPBALANCE::init): Likewise. |
|
2340 |
|
2341 * chMatrix.cc (row_as_string): Return string, not const char*. |
|
2342 |
|
2343 Mon Jan 8 03:20:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2344 |
|
2345 * Makefile.in (clean): If $(SHARED_LIBS), also remove shared libs. |
|
2346 |
|
2347 * chMatrix.cc (row_as_string): Undo previous change. |
|
2348 |
|
2349 Sun Jan 7 19:50:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2350 |
|
2351 * chMatrix.cc (row_as_string): Do memory management here. Caller |
|
2352 is expected to save string if necessary. |
|
2353 |
|
2354 Sat Jan 6 19:28:20 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2355 |
|
2356 * Array.h (class DiagArray): Enable nested Proxy class for all |
|
2357 platforms. |
|
2358 |
|
2359 * Array.cc (Array<T>::operator = (const Array<T>&)): If rep == |
|
2360 a.rep, don't mess with count. |
|
2361 * Array.h (Array2<T>& operator = (const Array2<T>&)): Likewise, |
|
2362 don't do anything if reps are the same. |
|
2363 (Array3<T>& operator = (const Array3<T>&) |
|
2364 |
|
2365 * Array.h (ArrayRep<T>::operator = (const ArrayRep<T>&)): |
|
2366 Declare private with no definition to prevent misuse. |
|
2367 |
|
2368 * Array.cc (Array2<T>::insert (const Array2<T>&, int, int)): |
|
2369 Get range check right. |
|
2370 * dMatrix.cc (Matrix::insert (const RowVector&, int, int)): Ditto. |
|
2371 (Matrix::insert (const ColumnVector&, int, int)): Ditto. |
|
2372 (Matrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
2373 * CMatrix.cc (ComplexMatrix::insert (const Matrix&, int, int)): Ditto. |
|
2374 (ComplexMatrix::insert (const RowVector&, int, int)): Ditto. |
|
2375 (ComplexMatrix::insert (const ColumnVector&, int, int)): Ditto. |
|
2376 (ComplexMatrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
2377 (ComplexMatrix::insert (const ComplexRowVector&, int, int)): Ditto. |
|
2378 (ComplexMatrix::insert (const ComplexColumnVector&, int, int)): Ditto. |
|
2379 (ComplexMatrix::insert (const ComplexDiagMatrix&, int, int)): Ditto. |
|
2380 * dRowVector.cc (RowVector::insert (const RowVector&, int)): Ditto. |
|
2381 * dColVector.cc |
|
2382 (ColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
2383 * CRowVector.cc |
|
2384 (ComplexRowVector::insert (const RowVector&, int)): Ditto. |
|
2385 (ComplexRowVector::insert (const ComplexRowVector&, int)): Ditto. |
|
2386 * CColVector.cc |
|
2387 (ComplexColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
2388 (ComplexColumnVector::insert (const ComplexColumnVector&, int)): Ditto. |
|
2389 |
|
2390 * dMatrix.cc (Matrix::insert (const DiagMatrix&, int, int)): |
|
2391 Also fill in zeros, not just the diagonal. |
|
2392 |
|
2393 * CDiagMatrix.cc (ComplexDiagMatrix::fill (double, int, int)): |
|
2394 Use END parameter properly. |
|
2395 (ComplexDiagMatrix::fill (const Complex&, int, int)): Ditto. |
|
2396 * dDiagMatrix.cc (DiagMatrix::fill (double, int, int)): Ditto. |
|
2397 |
|
2398 * Array.h (ArrayRep<T>::ArrayRep (void)): Set count to 1 here. |
|
2399 (ArrayRep<T>::ArrayRep (T *, int)): Likewise. |
|
2400 * Array.cc (ArrayRep<T>::ArrayRep (const ArrayRep<T>&)): |
|
2401 Don't copy count. Set it to 1. |
|
2402 (ArrayRep<T>::ArrayRep (int)): Set count to 1 here. |
|
2403 |
|
2404 * Array.h (Array<T>::Array (T *, int)): After constructing rep, |
|
2405 don't set rep->count to 1 here (now handled by ArrayRep |
|
2406 constructors). |
|
2407 (Array<T>::Array (void)): Ditto. |
|
2408 (Array<T>::Array (int)): Ditto. |
|
2409 (Array<T>::T& elem (int)): Ditto. |
|
2410 * Array-idx.h (Array<T>::maybe_delete_elements (idx_vector&)): Ditto. |
|
2411 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): Ditto. |
|
2412 * Array.cc: (Array<T>::Array (int, const T&)): Ditto. |
|
2413 (Array<T>::resize (int)): Ditto. |
|
2414 (Array<T>::resize (int, const T&)) :Ditto. |
|
2415 (Array<T>::fortran_vec (void)): Ditto. |
|
2416 (Array2<T>::resize (int, int)): Ditto. |
|
2417 (Array2<T>::resize (int, int, const T&)): Ditto. |
|
2418 (DiagArray<T>::resize (int, int)): Ditto. |
|
2419 (DiagArray<T>::resize (int, int, const T&)): Ditto. |
|
2420 |
|
2421 Sun Dec 31 21:23:26 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2422 |
|
2423 * Array-ch.cc: Rename from Array-c.cc. |
|
2424 * MArray-ch.cc: Rename from MArray-c.cc. |
|
2425 * chMatrix.cc: Rename from cMatrix.cc. |
|
2426 * chMatrix.h: Rename from cMatrix.h. |
|
2427 * Makefile.in (TI_SRC): Use new names here. |
|
2428 * mx-base.h: Likewise. |
|
2429 |
|
2430 Fri Dec 29 21:45:00 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2431 |
|
2432 * Makefile.in: Handle shared libraries. |
|
2433 |
|
2434 Thu Dec 28 14:18:34 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2435 |
|
2436 * CRowVector.cc (operator * (ComplexRowVector, ComplexMatrix)): |
|
2437 Correctly compute length of return value. Correct rows and |
|
2438 columns in zgemv call. |
|
2439 * dRowVector.cc (operator * (RowVector, Matrix)): Likewise. |
|
2440 |
|
2441 Tue Dec 26 00:37:57 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2442 |
|
2443 * Makefile.in (stamp-picdir): New target. |
|
2444 (all): Depend on it. |
|
2445 |
|
2446 Sun Dec 24 03:10:41 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2447 |
|
2448 * Makefile.in (INCLUDES): Remove QLD.h. |
|
2449 (SOURCES): Remove QLD.cc. |
|
2450 |
|
2451 Wed Dec 20 00:43:46 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2452 |
|
2453 * dMatrix.cc (Matrix::inverse): New arg, force. |
|
2454 If force is nonzero, invert even if matrix is singular. |
|
2455 (ComplexMatrix::inverse): Likewise. |
|
2456 |
|
2457 * dRowVector.cc, mx-inlines.cc, dMatrix.cc, dDiagMatrix.cc, |
|
2458 dColVector.cc,MArray-C.cc, CmplxDET.cc, CRowVector.cc, CMatrix.cc, |
|
2459 CDiagMatrix.cc, CColVector.cc, Array-C.cc, CmplxDET.h, CMatrix.h: |
|
2460 Include "oct-cmplx.h" instead of <Complex.h>. |
|
2461 |
|
2462 * mx-defs.h: Include oct-cmplx.h in place of forward declaration |
|
2463 for class Complex. |
|
2464 |
|
2465 * oct-cmplx.h: New file. |
|
2466 * Makefile.in (INCLUDES): Add it to the list. |
|
2467 |
|
2468 * idx-vector.cc (IDX_VEC_REP::idx_vector_rep): Don't redeclare len. |
|
2469 (IDX_VEC_REP::maybe_convert_one_zero_to_idx): Don't redeclare count. |
|
2470 (IDX_VEC_REP::freeze): Don't redeclare max_val and min_val. |
|
2471 (intcmp, sort_data, make_uniq, copy_data, IDX_VEC_REP::print): |
|
2472 Avoid g++ bugs. |
|
2473 |
|
2474 Tue Nov 14 14:24:16 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2475 |
|
2476 * Array-idx.h (maybe_delete_elements): Give useful error message. |
|
2477 |
|
2478 * dbleSCHUR.cc, dbleSVD.cc: Include iostream.h. |
|
2479 |
|
2480 Mon Nov 13 08:35:07 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2481 |
|
2482 * CDiagMatrix.cc (inverse): Return retval, not *this. |
|
2483 * dDiagMatrix.cc (inverse): Use same method as for Complex case. |
|
2484 |
|
2485 Sat Nov 4 05:06:12 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2486 |
|
2487 * Array.h, Array.cc, Array-idx.h [HEAVYWEIGHT_INDEXING]: Keep |
|
2488 index vector object with Array, not ArrayRep. |
|
2489 |
|
2490 Fri Nov 3 06:52:38 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2491 |
|
2492 * Array-idx.h (assign (Array2<T>&, const Array2<T>&): Don't fail |
|
2493 if index is a colon and resizing is maybe needed. |
|
2494 |
|
2495 Tue Oct 31 17:40:01 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2496 |
|
2497 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Don't return true |
|
2498 if we have a vector of 1's. |
|
2499 |
|
2500 * Array-idx.h (assign (Array2<LT>&, Array2<RT>&): If lhs has no |
|
2501 current orientation, require index and rhs to conform unless |
|
2502 do_fortran_indexing flag is set. |
|
2503 |
|
2504 Sun Oct 15 23:32:08 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2505 |
|
2506 * Array-d.cc, Array-C.cc, mx-base.h, mx-inlines.cc, dDiagMatrix.h, |
|
2507 CDiagMatrix.h, CMatrix.cc, CMatrix.h, dMatrix.h, mx-defs.h, |
|
2508 cMatrix.h, MArray.cc, MArray.h, MArray-i.cc, MArray-c.cc, |
|
2509 MArray-s.cc, Array.h, Array.cc, Array-c.cc, Array-i.cc, |
|
2510 Array-s.cc, cMatrix.cc, Array-idx.h, dMatrix.cc: |
|
2511 Massive changes to support additional data types. Only charMatrix |
|
2512 is currently used in Octave. |
|
2513 |
|
2514 Thu Oct 12 02:22:36 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2515 |
|
2516 * Array.cc (Array2<T>::insert (Array2<T>&, int, int): New function. |
|
2517 * CMatrix.cc (ComplexMatrix::insert (ComplexMatrix&, int, int): |
|
2518 Simply call Array2<Complex> version. |
|
2519 * dMatrix.cc (Matrix::insert (Matrix&, int, int): Similarly, just |
|
2520 call Array2<double> version. |
|
2521 |
|
2522 * Array-C.cc, Array-d.cc: Instantiate new assign functions too. |
|
2523 |
|
2524 * Array.h, Array.cc: Massive overhaul to support new way of |
|
2525 handling indexing. |
|
2526 * idx-vector.h, idx-vector.cc: Likewise. |
|
2527 * Array-ext.cc, Array-idx.h: New files. |
|
2528 * Makefile.in: Add them to the appropriate lists. |
|
2529 |
|
2530 Wed Oct 11 00:49:58 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2531 |
|
2532 * Range.cc (nelem_internal): Use tfloor here, not round. |
|
2533 |
|
2534 Sun Oct 8 18:21:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2535 |
|
2536 * idx-vector.h, idx-vector.cc: New files, moved from ../src. |
|
2537 * Makefile.in (SOURCES, INCLUDES): Include them in the lists. |
|
2538 |
|
2539 Sat Oct 7 19:07:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2540 |
|
2541 * CMatrix.cc (pseudo_inverse): Avoid bogus g++ warning. |
|
2542 |
|
2543 * Array.h: Move simple member functions here. |
|
2544 * Array.cc: From here. |
|
2545 |
|
2546 Fri Oct 6 00:36:04 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2547 |
|
2548 * Range.cc (tfloor, tceil, round): New static functions. |
|
2549 (Range::nelem_internal): Rewrite to use better method. |
|
2550 |
|
2551 * dbleSVD.h (SVD::type): New item, sigma_only. |
|
2552 (type_computed): New var. |
|
2553 * dbleSVD.cc (left_singular_matrix, right_singular_matrix): |
|
2554 Handle possible error condition. |
|
2555 (init): Allow for SVD::sigma_only, save type computed. |
|
2556 * CmplxSVD.cc (left_singular_matrix, right_singular_matrix): |
|
2557 Handle possible error condition. |
|
2558 (init): Allow for SVD::sigma_only, save type computed. |
|
2559 |
|
2560 Wed Oct 4 15:33:35 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2561 |
|
2562 * Nearly all non-matrix .h and .cc files: |
|
2563 Move short function bodies into class declarations for inlining. |
|
2564 Generally clean up. |
|
2565 |
|
2566 * base-min.h: New file. |
|
2567 * LP.h (class LP): Derive from base_minimizer. |
|
2568 * QLP.h (class QLP): Derive from base_minimizer. |
|
2569 * NLP.h (class NLP): Derive from base_minimizer. |
|
2570 * Makefile.in (INCLUDES): Add base-min.h to the list. |
|
2571 |
|
2572 * Makefile.in (SOURCES): Delete DAEFunc.cc, LP.cc, NLConst.cc, |
|
2573 NLFunc.cc, Objective.cc and QP.cc from list. |
|
2574 |
|
2575 Tue Sep 26 04:14:23 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2576 |
|
2577 * dbleSCHUR.cc (select_ana): Remove name of unused parameter. |
|
2578 (SCHUR::SCHUR): Delete unused parameter ord. |
|
2579 * CmplxSCHUR.h (ComplexSCHUR::CmplxSCHUR): Likewise. |
|
2580 |
|
2581 * CRowVector.cc |
|
2582 (ComplexRowVector::operator+ (const Complex&, const RowVector&), |
|
2583 (ComplexRowVector::operator- (const Complex&, const RowVector&), |
|
2584 (ComplexRowVector::operator* (const Complex&, const RowVector&), |
|
2585 (ComplexRowVector::operator/ (const Complex&, const RowVector&)): |
|
2586 Actually do something. |
|
2587 |
|
2588 * dMatrix.cc (Matrix::lssolve (ComplexMatrix&)): Use dummy vars. |
|
2589 (Matrix::lssolve (ComplexMatrix&, int&)): Likewise. |
|
2590 (Matrix::lssolve (ComplexMatrix&, int&, int&)): Likewise. |
|
2591 |
|
2592 * Quad.cc (Quad_options::Quad_options (double, double)): New function. |
|
2593 * (Quad::Quad (integrand_fcn, double, double): Properly initialize |
|
2594 tolerances. |
|
2595 |
|
2596 * DAE.cc (ddassl_f, ddassl_j): Remove names of unused parameters. |
|
2597 * LPsolve.cc (LPsolve::minimize): Likewise. |
|
2598 * NPSOL.cc (NPSOL::option, npsol_confun, npsol_objfun): Likewise. |
|
2599 * ODE.cc (lsode_f, lsode_j): Likewise. |
|
2600 * QPSOL.cc (qphess): Likewise. |
|
2601 |
|
2602 Fri Sep 22 04:14:51 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2603 |
|
2604 * dMatrix.cc: Include <cstring>. |
|
2605 |
|
2606 * Array.cc: Try harder to avoid warnings from gcc in functions |
|
2607 that return bogus values after calling the error handler. |
|
2608 |
|
2609 Thu Sep 14 00:56:00 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2610 |
|
2611 * Makefile.in: Use `ifndef omit_deps', not `ifndef $(omit_deps)'. |
|
2612 |
|
2613 * Makefile.in (TEMPLATE_SRC): Add Array-i.cc to the list. |
|
2614 |
|
2615 Tue Aug 22 00:41:06 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2616 |
|
2617 * DAE.cc (dassl_f): Add UNUSED attribute for unused parameters. |
|
2618 (dassl_j): Likewise. |
|
2619 |
|
2620 * DAE.cc, NLEqn.cc, NPSOL.cc, ODE.cc, CColVector.cc, CMatrix.cc, |
|
2621 dColVector.cc, dMatrix.cc, CmplxLU.cc, dbleLU.cc, QPSOL.cc, |
|
2622 Array.cc, CollocWt.cc, FEGrid.h, LinConst.h: |
|
2623 Update for change in for loop variable scope for gcc 2.7.0. |
|
2624 |
|
2625 Mon Aug 21 19:34:53 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2626 |
|
2627 * Makefile.in: Only include dependency files if $(omit_deps) is |
|
2628 not set. |
|
2629 |
|
2630 Mon May 1 13:26:00 1995 John Eaton (jwe@bullwinkle.che.utexas.edu) |
|
2631 |
|
2632 * dbleSCHUR.h dbleSVD.h dbleQRP.h dbleQR.h dbleHESS.h dbleLU.h |
|
2633 dbleCHOL.h dbleGEPBAL.h dbleAEPBAL.h dbleDET.h dDiagMatrix.h |
|
2634 dColVector.h dMatrix.h dRowVector.h Quad.h Range.h QPSOL.h QLD.h |
|
2635 ODEFunc.h QP.h Objective.h NPSOL.h ODE.h NLEqn.h NLFunc.h |
|
2636 NLConst.h LinConst.h LPsolve.h LP.h FSQP.h FEGrid.h EIG.h |
|
2637 DAEFunc.h CollocWt.h DAE.h CmplxSVD.h CmplxQRP.h CmplxSCHUR.h |
|
2638 CmplxHESS.h CmplxDET.h CmplxLU.h CmplxQR.h CmplxCHOL.h |
|
2639 CmplxAEPBAL.h CRowVector.h CDiagMatrix.h Bounds.h CColVector.h |
|
2640 CMatrix.h dbleSCHUR.cc dbleSVD.cc dbleQRP.cc dbleQR.cc |
|
2641 dbleGEPBAL.cc dbleLU.cc dbleHESS.cc dbleDET.cc dbleCHOL.cc |
|
2642 dbleAEPBAL.cc dColVector.cc dRowVector.cc dMatrix.cc |
|
2643 dDiagMatrix.cc QPSOL.cc Range.cc Quad.cc QP.cc ODEFunc.cc QLD.cc |
|
2644 Objective.cc NLEqn.cc ODE.cc NPSOL.cc NLFunc.cc LPsolve.cc |
|
2645 NLConst.cc LinConst.cc FSQP.cc FEGrid.cc LP.cc DAE.cc EIG.cc |
|
2646 CollocWt.cc DAEFunc.cc CmplxSVD.cc CmplxSCHUR.cc CmplxQRP.cc |
|
2647 CmplxLU.cc CmplxQR.cc CmplxHESS.cc CmplxDET.cc CmplxCHOL.cc |
|
2648 CmplxAEPBAL.cc CRowVector.cc CColVector.cc CMatrix.cc |
|
2649 CDiagMatrix.cc Bounds.cc MArray.h MArray.cc Array.cc Array.h |
|
2650 NLP.h: Use pragma interface/implementation. Don't surround |
|
2651 contents in extern "C++". |
|
2652 * lo-error.h sun-utils.h: Don't surround contents in extern "C++". |
|
2653 |
|
2654 Tue Apr 11 10:59:24 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2655 |
|
2656 * f77-uscore.h (F77_FCN): Allow for possibility of uppercase |
|
2657 identifiers. |
|
2658 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
2659 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
2660 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
2661 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
2662 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
2663 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
2664 Quad.cc: Change usage of F77_FCN to match new definition |
|
2665 |
|
2666 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
2667 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
2668 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
2669 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
2670 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
2671 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
2672 Quad.cc: Where appropriate, declare Fortran subroutines to take |
|
2673 args by reference instead of pointer. Change all callers. |
|
2674 |
|
2675 Sun Apr 9 20:11:56 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2676 |
|
2677 * MArray.h (MArray2::~MArray2, MDiagArray::~MDiagArray): New |
|
2678 functions. Make += and -= operators friend functions. |
|
2679 |
|
2680 * Array.h (Array2::~Array2, Array3::~Array3, |
|
2681 DiagArray::~DiagArray): New functions. |
|
2682 |
|
2683 Wed Apr 5 21:21:13 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2684 |
|
2685 * Makefile.in (EXTRAS): Don't distribute mx-kludge.cc. |
|
2686 (MATRIX_INC): Don't distribute mx-kludge.h. |
|
2687 |
|
2688 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
2689 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
2690 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
2691 dRowVector.h dRowVector.cc: |
|
2692 Derive classes from MArray, MArray2, and MDiagArray, not Array, |
|
2693 Array2, and DiagArray2. |
|
2694 Don't use functions defined in mx-kludge.cc for arithmetic |
|
2695 like-type operations on arrays. |
|
2696 |
|
2697 * MArray.cc: Use the classes defined here like-type mathematical |
|
2698 operations on Array objects. Abuse CPP more. |
|
2699 * Makefile.in (TEMPLATE_SRC): Add it to the list. |
|
2700 (EXTRAS): Delete it from this list. |
|
2701 |
|
2702 * MArray-C.cc, MArray-d.cc: New files. |
|
2703 * Makefile.in (TI_SRC): Add them to the list. |
|
2704 |
|
2705 Tue Apr 4 14:13:46 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2706 |
|
2707 * mx-kludge.cc: Abuse CPP even more. |
|
2708 |
|
2709 Mon Apr 3 21:05:30 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2710 |
|
2711 * Objective.h (objective_function): Add missing const. |
|
2712 (gradient_function): Likewise. |
|
2713 |
|
2714 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
2715 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
2716 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
2717 dRowVector.h dRowVector.cc: |
|
2718 Reorganize to declare and define friends where they should be, |
|
2719 based on the use of private constructors. |
|
2720 |
|
2721 Fri Mar 31 10:09:40 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2722 |
|
2723 * CRowVector.h (linspace): Add declaration. |
|
2724 * dRowVector.h (linspace): Likewise. |
|
2725 |
|
2726 * dMatrix.cc (Matrix::inverse, Matrix::determinant, Matrix::solve): |
|
2727 Force result of rcond + 1.0 to be stored. |
|
2728 * CMatrix.cc (ComplexMatrix::inverse, ComplexMatrix::determinant, |
|
2729 ComplexMatrix::solve): Likewise. |
|
2730 |
|
2731 See ChangeLog.1 in the top level directory for earlier changes. |