4534
|
1 2003-10-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2 |
|
3 * Array.cc (assign2): No error (but don't do anything either) for |
|
4 expressions like x([],j) = scalar. |
|
5 |
4532
|
6 2003-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
7 |
4533
|
8 * Array.cc (assignN): Allow lhs(:) = scalar. |
|
9 |
4532
|
10 * CNDArray.cc (ComplexNDArray::increment_index): New function. |
|
11 * dNDArray.cc (NDArray::increment_index): Likewise. |
|
12 * boolNDArray.cc (boolNDArray::increment_index): Likewise. |
|
13 * chNDArray.cc (charNDArray::increment_index): Likewise. |
|
14 |
|
15 * dim-vector.h (rows, cols): Delete unused data members. |
|
16 |
|
17 * Array.cc (Array<T>::get_size): Fix thinko. |
|
18 |
|
19 2003-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
20 |
|
21 * Array.cc (Array<T>::squeeze): New function. |
|
22 * CNDArray.h (ComplexNDArray::squeeze): Likewise. |
|
23 * dNDArray.h (NDArray::squeeze): Likewise. |
|
24 * boolNDArray.h (boolNDArray::squeeze): Likewise. |
|
25 * chNDArray.h (charNDArray::squeeze): Likewise. |
|
26 |
4530
|
27 2003-10-06 Petter Risholm <risholm@stud.ntnu.no> |
|
28 |
|
29 * Array.cc (ArrayN<T>::indexN): New definition. |
|
30 * Array.h (Array<T>::indexN): Provide decl. |
|
31 * Array.cc (ArrayN<T>::index (idx_vector&, int, const T&): |
|
32 Call indexN if more than 2 indices. |
|
33 (ArrayN<T>::index (Array<idx_vector>&, int, const T&)): |
|
34 Make it (mostly) work. |
|
35 * ArrayN-inline.h (number_of_elements, get_ra_idx, short_freeze): |
|
36 New functions. |
|
37 |
4527
|
38 2003-10-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
39 |
|
40 * cmd-edit.cc (do_readline): Pass eof to octave_fgetl. |
|
41 * lo-utils.cc (octave_fgets, octave_fgetl): New overloaded |
|
42 versions with eof arg. |
|
43 |
4518
|
44 2003-09-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
45 |
|
46 * Array.h (dimensions): Now public. |
|
47 template <class LT, class RT> |
|
48 (assign (Array<LT>&, const Array<RT>&, const LT&), |
|
49 assign1 (Array<LT>&, const Array<RT>&, const LT&), |
|
50 assign2 (Array<LT>&, const Array<RT>&, const LT&), |
|
51 assignN (Array<LT>&, const Array<RT>&, const LT&), |
|
52 resize_no_fill (int), |
|
53 resize_no_fill (int, int), |
|
54 resize_no_fill (int, int, int), |
|
55 resize_no_fill (const dim_vector&), |
|
56 resize_and_fill (int, const T&), |
|
57 resize_and_fill (int, int, const T&), |
|
58 resize_and_fill (int, int, int, const T&), |
|
59 resize_and_fill (const dim_vector&, const T&)): Now public. |
|
60 |
|
61 * Array.cc: Include <climits>. |
|
62 |
4513
|
63 2003-09-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
64 |
4517
|
65 * Array.cc: Merge Array-idx.h. |
|
66 * Array-idx.h: Delete. |
|
67 |
4514
|
68 * chNDArray.h, chNDArray.cc, boolNDArray.h, boolNDArray.cc: New files. |
|
69 |
4513
|
70 * Array.h, Array-idx.h, Array.cc: Fold all N-d functionality here. |
|
71 Turn inheritance hierarchy upside down (2-d and 3-d arrays are now |
|
72 just special cases of the general purpose N-d Array object). |
|
73 |
|
74 * dim-vector.h: New file. Use dim_vector objects instead of |
|
75 ints or Array<int> objects to represent the size of Array |
|
76 objects. |
|
77 |
|
78 * MArray-defs.h (INSTANTIATE_MARRAYN_FRIENDS): New macro. |
|
79 |
|
80 * Array2-idx.h, Array3-idx.h, Array2.cc, Array3.cc: Delete. |
|
81 |
|
82 * mx-base.h: Include NDArray header files. |
|
83 |
|
84 * MArray-C.cc, MArray-d.cc: Also instantiate ArrayN objects. |
|
85 |
|
86 * Array-C.cc, Array-b.cc, Array-ch.cc, Array-d.cc, Array-i.cc, |
|
87 Array-s.cc: Also instantiate ArrayN objects. |
|
88 Don't instantiate assign funcitons for Array2 objects. |
|
89 |
|
90 * CDiagMatrix.cc (ComplexDiagMatrix::diag): Signal error with |
|
91 liboctave_error_handler, not cerr. |
|
92 * CMatrix.cc (ComplexMatrix::diag): Likewise. |
|
93 * dDiagMatrix.cc (DiagMatrix::diag): Likewise. |
|
94 * dMatrix.cc (Matrix::diag): Likewise. |
|
95 |
|
96 * Array-flags.cc, Array.cc, Array.h, Array2.h, Array3.h, ArrayN.h: |
|
97 Omit checks for HEAVYWEIGHT_INDEXING. |
|
98 |
|
99 2003-09-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
100 |
|
101 * mx-base.h: Include CNDarray.h. Include dNDArray.h, not NDArray.h. |
|
102 |
|
103 * CNDARray.h, CNDArray.cc: New files. |
|
104 * Makefile.in: Add them to the appropriate lists. |
|
105 |
|
106 * dNDArray.h: Rename from NDArray.h. |
|
107 * dNDArray.cc: Rename from NDArray.cc. |
|
108 * Makefile.in: Rename them here too. |
|
109 |
4507
|
110 2003-09-10 Petter Risholm <risholm@stud.ntnu.no> |
|
111 |
|
112 * mx-base.h: Include NDArray.h, not ArrayN.h. |
|
113 |
|
114 * MArrayN.cc, MArrayN.h, NDArray.h, NDArray.cc: New files. |
|
115 * Makefile.in: Add them to the appropriate lists. |
|
116 |
4506
|
117 2003-09-09 David Bateman <dbateman@free.fr> |
|
118 |
|
119 * lo-specfun.cc (zbesj, zbesy, zbesi, zbesk, zbesh1, zbesh2, airy, |
|
120 biry): Always request scaled results from AMOS functions and |
|
121 perform reverse scaling on results if scaled result not requested |
|
122 by user. |
|
123 |
|
124 2003-09-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
125 |
|
126 * lo-specfun.cc (xlgamma): Require nonnegative argument. |
|
127 |
4505
|
128 2003-09-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
129 |
|
130 * Array-d.cc: Instantiate assign functions. |
|
131 |
4504
|
132 2003-09-09 Petter Risholm <risholm@stud.ntnu.no> |
|
133 |
|
134 * ArrayN-idx.h (vector_equivalent, equal_arrays): New functions. |
|
135 (get_elt_idx): Index ra_idx correctly. |
|
136 |
|
137 * ArrayN-inline.h (index_in_bounds): Index is also condidered in |
|
138 bounds if it is exactly on the bound. |
|
139 |
|
140 * ArrayN.cc (ArrayN<T>::maybe_delete_dims): New function. |
|
141 * ArrayN.h: Provide decl. |
|
142 |
|
143 * ArrayN.h (ArrayN<T>::ArrayN<T> (const Matrix&)): New constructor. |
|
144 |
|
145 * idx-vector.h (idx_vector::orig_dims): New member variable. |
|
146 (idx_vector::idx_vector_rep::orig_dimensions): New function. |
|
147 (idx_vector::orig_dimensions): New function. |
|
148 |
4497
|
149 2003-09-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
150 |
|
151 * lo-specfun.cc (xlgamma): Require nonnegative argument. |
|
152 |
4496
|
153 2003-09-04 Petter Risholm <risholm@stud.ntnu.no> |
|
154 |
|
155 * ArrayN-idx.h (maybe_delete_elements): Implement function. |
|
156 (is_in, how_many_lgt, all_ones): New functions. |
|
157 |
4493
|
158 2003-09-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
159 |
|
160 * Makefile.in (MATRIX_INC): Add ArrayN-inlines.h to the list. |
|
161 |
|
162 2003-09-03 Petter Risholm <risholm@stud.ntnu.no> |
|
163 |
|
164 * ArrayN-inline.h: New file. |
|
165 (index_in_bounds, increment_index): Move here. |
|
166 * ArrayN.cc: From here. |
|
167 |
|
168 * ArrayN.h (maybe_delete_elements): New arg, resize_fill_value. |
|
169 * ArrayN-idx.h (assign): New function. |
|
170 |
4490
|
171 2003-08-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
172 |
|
173 * lo-specfun.cc (zbesj, zbesy, zbesi, zbesk, airy, biry): |
|
174 Also zero imaginary part of result if real part of input value is |
|
175 zero. |
|
176 |
4478
|
177 2003-07-30 Heine Kolltveit <kolltvei@idi.ntnu.no> |
|
178 |
|
179 * mx-base.h: Include ArrayN.h. |
|
180 |
4476
|
181 2003-30-07 Heine Kolltveit <kolltvei@idi.ntnu.no> |
|
182 |
|
183 * ArrayN.cc (operator <<): Corrected output. |
|
184 |
4474
|
185 2003-07-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
186 |
|
187 * ArrayN.cc (increment_index): New arg, start_dimension. |
|
188 |
4473
|
189 2003-07-29 Heine Kolltveit <kolltvei@idi.ntnu.no> |
|
190 |
|
191 * ArrayN.cc (operator <<): Improve output readability. |
|
192 |
4493
|
193 2003-07-29 Petter Risholm <risholm@stud.ntnu.no> |
4473
|
194 |
|
195 * ArrayN.cc (ArrayN<T>::resize (const Array<int>&, const T&)): |
|
196 * ArrayN.cc (ArrayN<T>::resize (const Array<int>&)): |
|
197 Initialize old_len before changing size. |
|
198 |
4472
|
199 2003-07-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
200 |
|
201 * Makefile.in (install-lib): Use $(INSTALL), not |
4473
|
202 $(INSTALL_PROGRAM) for $(SHLLIB) files. |
4472
|
203 |
4469
|
204 2003-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
205 |
|
206 * lo-mappers.cc (xmin, xmax): Handle NaN in a Matlab-compatible |
|
207 way. Handle NA in an R-compatible way. |
|
208 |
|
209 * lo-cieee.c (lo_ieee_is_NaN_or_NA): Also check for lo_ieee_is_NA. |
|
210 (lo_ieee_is_NA): Don't call isnan unless HAVE_ISNAN is defined. |
|
211 |
|
212 * lo-mappers.h (octave_is_NA (const Complex&)): Provide decl. |
|
213 (octave_is_NaN_or_NA (const Complex&)): Likewise. |
|
214 |
|
215 * dMatrix.cc (Matrix::row_min, Matrix::row_max, |
|
216 Matrix::column_min, Matrix::column_max): Ignore NaNs. |
|
217 * CMatrix.cc (ComplexMatrix::row_min, ComplexMatrix::row_max, |
|
218 ComplexMatrix::column_min, ComplexMatrix::column_max): Likewise. |
|
219 |
4461
|
220 2003-07-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
221 |
|
222 * Array2-idx.h (assign (Array2<LT>&, const Array2<RT>&, const LT&)): |
|
223 Pass true for resize_ok arg to freeze. |
|
224 * Array-idx.h (assign (Array<LT>&, const Array<RT>&, const LT&)): |
|
225 Likewise. |
|
226 |
|
227 * idx-vector.cc (IDX_VEC_REP::freeze): New arg, warn_resize; |
|
228 resize_ok arg is now bool. |
|
229 * idx-vector.h (idx_vector::freeze): Likewise. |
|
230 |
|
231 * Array-flags.cc, Array-flags.h (liboctave_wrore_flag): |
|
232 Rename from liboctave_rre_flag. Now bool. |
|
233 (liboctave_wfi_flag): Now bool. |
|
234 |
|
235 * Array2-idx.h (MAYBE_RESIZE_LHS): Don't check liboctave_rre_flag. |
|
236 |
4459
|
237 2003-07-11 Russell Standish <R.Standish@unsw.edu.au> |
|
238 |
|
239 * Array.h (resize_fill_value): Now a top-level template function. |
|
240 Accept object as argument. Change all uses. |
|
241 |
4455
|
242 2003-07-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
243 |
|
244 * Array-flags.cc, Array-flags.h (liboctave_pcv_flag): Delete. |
|
245 |
|
246 * Array2-idx.h (Array2<T>::index): Use liboctave_wfi_flag, not |
|
247 liboctave_dfi_flag. |
|
248 (assign): Likewise. For indexed assignments like X(I) = RHS with |
|
249 X undefined or empty, always create a row vector. |
|
250 |
|
251 * Array-flags.cc (liboctave_wfi_flag): Rename from liboctave_dfi_flag. |
|
252 * Array-flags.h (liboctave_wfi_flag): Ditto. |
|
253 |
4437
|
254 2003-06-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
255 |
|
256 * Array2-idx.h (Array2<T>::index (idx_vector&, int, const T&)): |
|
257 Magic colon indexing always produces an object with one column. |
|
258 |
4433
|
259 2003-06-21 Paul Kienzle <pkienzle@users.sf.net> |
|
260 |
|
261 * kpse-xfns.h (NAME_BEGINS_WITH_DEVICE): Arg is std::string, not char*. |
|
262 |
|
263 * lo-ieee.h (signbit): Eliminate redundant extern "C" decl. |
|
264 |
4431
|
265 2003-06-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
266 |
|
267 * dMatrix.cc (any_element_is_negative): If new optional arg |
|
268 neg_zero is true, also return true for negative zero. |
|
269 |
4429
|
270 2003-06-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
271 |
|
272 * DASSL.cc (DASSL::do_integrate): Set liw to 21 + n, not 20 + n. |
|
273 Handle step limit. |
|
274 * DASSL-opts.in: New option for step limit. |
|
275 |
|
276 2003-06-16 Per Persson <persquare@mac.com> |
|
277 |
|
278 * oct-shlib.cc: Include mach-o/dyld.h, not Mach-O/dyld.h. |
|
279 |
4428
|
280 2003-06-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
281 |
|
282 * DASRT.cc (DASRT::integrate): Set liw to 21 + n, not 20 + n. |
|
283 Store step limit in iwork(20), not iwork(18). |
|
284 |
4415
|
285 2003-05-16 Paul Kienzle <pkienzle@users.sf.net> |
|
286 |
|
287 * oct-rand.cc: Use liboctave's clock layer instead of the system clock. |
|
288 |
4412
|
289 2003-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
290 |
4413
|
291 * Makefile.in: Handle DESTDIR. |
|
292 |
4412
|
293 * kpse.cc (kpse_path_iterator::next): Skip consecutive colons here. |
|
294 (kpse_path_iterator::set_end): Don't miss last element when not |
|
295 followed by a colon. |
|
296 |
4409
|
297 2003-05-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
298 |
|
299 * Array-idx.h (Array<T>::index): Fix off-by-one error. |
|
300 |
|
301 2003-05-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
302 |
|
303 * kpse.cc (kpse_absolute_p): Fix typo in translation. |
|
304 (find_first_of): Also do an absolute search on each |
|
305 name before looking in the path. |
|
306 |
4407
|
307 2003-05-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
308 |
|
309 * kpse.cc (dir_list_add): Ensure that directory ends with a |
|
310 directory separator. |
|
311 |
4399
|
312 2003-04-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
313 |
|
314 * pathsearch.cc: Include kpse.cc here. |
|
315 |
|
316 * kpse.cc: All functions are now static. Massive surgery to |
|
317 condense kpathsearch library to a single file of just the |
|
318 essentials for Octave and convert to using C++ strings (no more |
|
319 calls to malloc, very few calls to new, so there should be much |
|
320 less potential for introducing memory leaks now). |
|
321 |
|
322 * Makefile.in (EXTRAS): Move kpse.cc here from |
|
323 LIBOCT_PATHSEARCH_CXX_SOURCES. |
|
324 |
|
325 * kpse.h, kpse-config.h: Delete. |
|
326 * Makefile.in (INCLUDES): Delete them from the list. |
|
327 |
4392
|
328 2003-04-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
329 |
|
330 * str-vec.cc (string_vector::append (const std::string&), |
|
331 string_vector::append (const string_vector&)): New methods. |
|
332 |
4386
|
333 2003-04-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
334 |
4389
|
335 * kpse.cc, kpse.h: Replace fn_type with std::string. |
|
336 |
4387
|
337 * lo-ieee.h (lo_ieee_signbit): Provide signbit decl for MinGW systems. |
|
338 |
4386
|
339 * kpse.cc (xclosedir): Don't define or declare for Windows. |
|
340 (READABLE): Now a static function to avoid warnings from MinGW |
|
341 compiler. |
|
342 |
4384
|
343 2003-04-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
344 |
4385
|
345 * kpse.cc: Move most functions from kpse-xfns.c here and make |
|
346 static. Include most of kpse-xfns.h directly, removing |
|
347 unnecessary bits. |
|
348 |
4384
|
349 * dMatrix.cc (Matrix::pseudo_inverse): Now const. |
|
350 * CMatrix.cc (ComplexMatrix::pseudo_inverse): Likewise. |
|
351 |
4378
|
352 2003-04-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
353 |
|
354 * getopt.c, getopt1.c, getopt.h: Move here from kpathsea. |
|
355 * Makefile.in: Add them to the appropriates lists. |
|
356 |
|
357 * oct-getopt.c: Include "getopt.h", not <kpathsea/getopt.h>. |
|
358 |
|
359 * Makefile.in (liboctave.$(LIBEXT), liboctave.$(SHLEXT)): Adjust |
|
360 for new locations of kpathsea objects. |
|
361 Delete kpathsea targets. |
|
362 |
|
363 * pathsearch.cc (dir_path::set_program_name): Delete. |
|
364 |
|
365 * kpse.cc: New file. |
|
366 * Makefile.in (LIBOCT_PATHSEARCH_CXX_SOURCES): Add it to the list. |
|
367 |
|
368 * kpse.c: New file. |
|
369 * Makefile.in (LIBOCT_PATHSEARCH_C_SOURCES): Add it to the list. |
|
370 |
|
371 * kpse.h, kpse-config.h, kpse-xfns.h: New files. |
|
372 * Makefile.in (INCLUDES): Add them to the list. |
|
373 |
|
374 * oct-kpse.h: Delete. |
|
375 * Makefile.in (INCLUDES): Delete it from the list. |
|
376 |
4374
|
377 2003-04-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
378 |
|
379 * dbleSVD.h (SVD::SVD, SVD::operator =): Also copy type_computed. |
|
380 * CmplxSVD.h (ComplexSVD::ComplexSVD, ComplexSVD::operator =): |
|
381 Likewise. |
|
382 From Quentin H. Spencer <qspencer@ieee.org>. |
|
383 |
4365
|
384 2003-03-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
385 |
|
386 * oct-getopt.c: Include <kpathsea/getopt.h>, not "getopt.h". |
|
387 |
4349
|
388 2003-02-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
389 |
4352
|
390 * oct-alloc.h (DECLARE_OCTAVE_ALLOCATOR): Handle systems with or |
|
391 without placement delete. |
|
392 |
4349
|
393 * CMatrix.cc (ComplexMatrix::all_elements_are_real): Don't lose -0 |
|
394 imaginary parts. |
|
395 |
|
396 * lo-ieee.h (lo_ieee_signbit): New macro. |
|
397 |
4329
|
398 2003-02-18 David Bateman <dbateman@free.fr> |
|
399 |
|
400 * dMatrix.cc (Matrix::inverse, Matrix::determinant, Matrix::solve): |
|
401 Use Lapack instead of Linpack. |
|
402 * Cmatrix.cc (ComplexMatrix::inverse, ComplexMatrix::determinant, |
|
403 ComplexMatrix::solve): Likewise. |
|
404 |
|
405 * dMatrix.cc (Matrix::determinant, Matrix::inverse): New arg, |
|
406 calc_cond. If 0, skip condition number calculation. |
|
407 * CMatrix.cc (ComplexMatrix::determinant, ComplexMatrix::inverse): |
|
408 Likewise. |
|
409 |
|
410 * CmplxLU.cc (ComplexLU::ComplexLU): Allow non-square matrices. |
|
411 * dbleLU.cc (LU::LU): Likewise. |
|
412 * base-lu.cc (base_lu::L), base_lu::U, base_lu::P): Likewise. |
|
413 |
|
414 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
415 |
|
416 * octave.test/arith/prod-4.m, octave.test/arith/sum-4.m: |
|
417 |
4323
|
418 2003-02-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
419 |
|
420 * Array2-idx.h (Array2<T>::index): Fix thinko. |
|
421 Additional compatibility fix. |
|
422 |
|
423 2003-02-13 Arno Klaassen <arno@scito.com> |
|
424 |
|
425 * Array2-idx.h, Array2.cc, Array2.h, Array3.cc, Array3.h, |
|
426 ArrayN.cc, ArrayN.h, DiagArray2.cc, DiagArray2.h, MDiagArray2.h: |
|
427 Sprinkle with Array<T>:: as necessary for gcc 3.4. |
|
428 |
4322
|
429 2003-02-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
430 |
|
431 * Array2-idx.h (Array2<T>::index (idx_vector&, int, const T&)): |
|
432 Compatibility fix. |
|
433 |
4316
|
434 2003-02-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
435 |
|
436 * CColVector.cc (ComplexColumnVector::extract_n): New function. |
|
437 * CRowVector.cc (ComplexRowVector::extract_n): Likewise. |
|
438 * CMatrix.cc (ComplexMatrix::extract_n): Likewise. |
|
439 * dColVector.cc (ColumnVector::extract_n): Likewise. |
|
440 * dRowVector.cc (RowVector::extract_n): Likewise. |
|
441 * dMatrix.cc (Matrix::extract_n): Likewise. |
|
442 |
|
443 * CColVector.cc (ComplexColumnVector::insert): Improve efficiency |
|
444 with make_unique and xelem. |
|
445 * CRowVector.cc (ComplexRowVector::insert): Likewise. |
|
446 * CMatrix.cc (ComplexMatrix::insert, ComplexMatrix::fill, |
|
447 ComplexMatrix::extract, ComplexMatrix::row, |
|
448 ComplexMatrix::column): Likewise. |
|
449 * dColVector.cc (ColumnVector::insert): Likewise. |
|
450 * dRowVector.cc (RowVector::insert): Likewise. |
|
451 * dMatrix.cc (Matrix::insert, Matrix::fill, Matrix::extract, |
|
452 Matrix::row, Matrix::column): Likewise. |
|
453 |
4313
|
454 2003-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
455 |
|
456 * lo-mappers.cc (imag (double)): Return 0.0 for all args, even NaN. |
|
457 |
4309
|
458 2003-01-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
459 |
|
460 * CMatrix.cc, dMatrix.cc: Move min and max functions here, from |
|
461 src/DLD-FUNCTIONS/minmax.cc, and make them extern. |
|
462 * CMatrix.h, dMatrix.h: Provide decls. |
|
463 |
4307
|
464 2003-01-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
465 |
|
466 * oct-rand.h, oct-rand.cc: New files. |
|
467 * Makefile.in: Add them to the appropriate lists. |
|
468 |
4306
|
469 2003-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
470 |
|
471 * Array2-idx.h (Array2<T>::index): Fix off-by-one error. |
|
472 |
4299
|
473 2003-01-16 Mumit Khan <khan@nanotech.wisc.edu> |
|
474 |
|
475 * oct-syscalls.cc: Include signal.h. |
|
476 |
4294
|
477 2003-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
478 |
|
479 * oct-syscalls.cc (octave_syscalls::kill): New function. |
|
480 * oct-syscalls.h: Provide decl. |
|
481 |
|
482 |
4293
|
483 2003-01-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
484 |
|
485 * dMatrix.cc (Matrix::read): Set size and return immediately if |
|
486 there is nothing to read. |
|
487 |
4290
|
488 2003-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
489 |
|
490 * lo-cutils.c: Define _XOPEN_SOURCE. |
|
491 |
4286
|
492 2003-01-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
493 |
4288
|
494 * getopt.h: Update to version from kpathsearch, so we will install |
|
495 the version that we are using. |
|
496 |
|
497 * getopt.c, getopt1.c: Delete. |
|
498 (INCLUDES): Delete them from the list. We'll get these files from |
|
499 kpathsearch. |
|
500 |
4286
|
501 * Makefile.in (liboctave.$(LIBEXT)): Link directly to |
|
502 ../kpathsea/STATIC/*.o. |
|
503 (liboctave.$(SHLEXT)): Link directly to ../kpathsea/SHARED/*.o. |
|
504 |
4270
|
505 2003-01-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
506 |
4282
|
507 * dMatrix.cc (read_int, write_int): Avoid warnings about |
|
508 unreachable code. |
|
509 |
4279
|
510 * oct-alloc.h (DECLARE_OCTAVE_ALLOCATOR): Define operator delete |
|
511 to correspond to placement new operator. |
|
512 |
4278
|
513 * dbleDET.cc (DET::value_will_overflow): We want det[1], not det[2]. |
|
514 (DET::value_will_underflow): Likewise. |
|
515 * CmplxDET.cc (ComplexDET::value_will_overflow): Likewise. |
|
516 (ComplexDET::value_will_underflow): Likewise. |
|
517 |
4276
|
518 * Makefile.in (distclean): Also remove stamp-prereq. |
|
519 |
4306
|
520 * Array2-idx.h (Array2<T>::assign): If assignment conforms but the |
|
521 RHS and index are empty matrices, don't do anything. |
4270
|
522 |
4242
|
523 2002-12-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
524 |
|
525 * pathsearch.cc (make_retval, free_c_array, make_c_names, |
|
526 delete_c_names): New helper functions. |
|
527 (dir_path::find_first_of): New function. |
|
528 (dir_path::find_all_first_of): Likewise. |
|
529 * pathsearch.h: Provide decls. |
|
530 |
|
531 * oct-kpse.c (octave_kpse_path_find_first_of): New function. |
|
532 (octave_kpse_all_path_find_first_of): Likewise. |
|
533 * oct-kpse.h: Provide decls. |
|
534 |
4231
|
535 2002-12-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
536 |
|
537 * ODESSA.cc (ODESSA::integrate): Handle maxord. |
|
538 * ODESSA-opts.in: Likewise. |
|
539 |
|
540 * LSODE.cc (ODESSA::integrate): Handle maxord. |
|
541 * LSODE-opts.in: Likewise. |
|
542 |
4229
|
543 2002-12-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
544 |
4230
|
545 * ODESSA.cc (ODESSA::ODESSA): Initialize "initialized" data member |
|
546 in all constructors. |
|
547 |
4229
|
548 * Makefile.in (liboctave.$(SHLEXT)): Include $(LIBKPATHSEA) here. |
|
549 (LINK_DEPS): Not here. |
|
550 |
4219
|
551 2002-12-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
552 |
4220
|
553 * str-vec.cc (string_vector::compare): New static member function. |
|
554 * str-vec.h: Provide decl. |
|
555 (string_vector::sort): Use it. |
|
556 (str_vec_compare): Delete static function. |
|
557 |
4219
|
558 * oct-alloc.h (DECLARE_OCTAVE_ALLOCATOR): Also declare and define |
|
559 a placement operator new. |
|
560 |
4209
|
561 2002-12-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
562 |
4210
|
563 * Matrix.h: Include mx-ops.h too. |
4209
|
564 * mx-ops.h: New file. |
|
565 |
4192
|
566 2002-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
567 |
|
568 * DASRT.cc, DASRT.h, Array.cc, ArrayN.h, Array.h, Array2.cc, |
|
569 Array2.h, Array3.cc, Array3.h, Bounds.cc, Bounds.h, CRowVector.h, |
|
570 CDiagMatrix.cc, CDiagMatrix.h, CMatrix.cc, CMatrix.h, |
|
571 CRowVector.cc, CColVector.h, ChangeLog, CmplxAEPBAL.cc, |
|
572 CmplxAEPBAL.h, CmplxCHOL.cc, CmplxCHOL.h, CmplxDET.cc, CmplxDET.h, |
|
573 CmplxHESS.cc, CmplxHESS.h, CmplxLU.cc, CmplxLU.h, CmplxQR.cc, |
|
574 CmplxQR.h, CmplxQRP.cc, ArrayN.cc, CmplxQRP.h, CmplxSCHUR.cc, |
|
575 CmplxSCHUR.h, CmplxSVD.cc, CmplxSVD.h, CollocWt.cc, dMatrix.cc, |
|
576 CollocWt.h, EIG.h, DASSL.cc, FEGrid.h, DASSL.h, DiagArray2.cc, |
|
577 DiagArray2.h, EIG.cc, FEGrid.cc, LSODE.cc, LPsolve.cc, LPsolve.h, |
|
578 LSODE.h, LinConst.cc, LinConst.h, MArray.h, MArray.cc, MArray2.cc, |
|
579 MArray2.h, MDiagArray2.cc, MDiagArray2.h, Range.cc, NLConst.h, |
|
580 NLEqn.cc, Range.h, NLEqn.h, Quad.cc, dbleQR.h, Quad.h, base-lu.cc, |
|
581 base-lu.h, boolMatrix.cc, boolMatrix.h, dColVector.cc, |
|
582 dColVector.h, dDiagMatrix.cc, dDiagMatrix.h, dMatrix.h, |
|
583 dRowVector.cc, dRowVector.h, dbleAEPBAL.cc, dbleAEPBAL.h, |
|
584 dbleCHOL.cc, dbleCHOL.h, dbleDET.cc, dbleDET.h, dbleHESS.cc, |
|
585 dbleHESS.h, dbleLU.cc, dbleLU.h, dbleQR.cc, dbleQRP.cc, dbleQRP.h, |
|
586 dbleSCHUR.cc, dbleSCHUR.h, dbleSVD.cc, dbleSVD.h, idx-vector.cc, |
|
587 idx-vector.h, oct-alloc.cc, CColVector.cc, DASPK.h, DASPK.cc, |
|
588 ODESSA.h, ODES.h, ODESSA.cc, ODES.cc, chMatrix.h, chMatrix.cc: |
|
589 Use "defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION)" instead of |
|
590 "! defined (NO_PRAGMA_INTERFACE_IMPLEMENTATION)". |
|
591 |
4184
|
592 2002-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
593 |
|
594 * oct-shlib.cc (octave_dlopen_shlib::open): Use RTLD_GLOBAL too. |
|
595 From Remy Bruno <remy.bruno@libertysurf.fr> |
|
596 |
4180
|
597 2002-11-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
598 |
|
599 * lo-specfun.cc: Use F77_FUNC instead of F77_XFCN for calls to |
|
600 fortran code that should run fast enough that it is not worth all |
|
601 the setup costs of F77_XFCN. |
|
602 |
|
603 * Quad.cc (user_function): Surround body of function with |
|
604 BEGIN_INTERRUPT_WITH_EXCEPTIONS, END_INTERRUPT_WITH_EXCEPTIONS. |
|
605 * ODESSA.cc (odessa_f, odessa_j, odessa_b): Likewise. |
|
606 * NLEqn.cc (hybrd1_fcn, hybrj1_fcn): Likewise. |
|
607 * LSODE.cc (lsode_f, lsode_j): Likewise. |
|
608 * DASSL.cc (ddassl_f, ddassl_j): Likewise. |
|
609 * DASRT.cc (ddasrt_f, ddasrt_j, ddasrt_g): Likewise. |
|
610 * DASPK.cc (ddaspk_f, ddaspk_psol, ddaspk_j): Likewise. |
|
611 |
4164
|
612 2002-11-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
613 |
|
614 * lo-ieee.cc (octave_ieee_init): Check defined (__osf__) instead |
|
615 of ! defined (linux). |
|
616 |
4162
|
617 2002-11-09 Per Persson <persquare@mac.com> |
|
618 |
|
619 * oct-shlib.cc (octave_dyld_shlib): New class. |
|
620 (make_shlib): Instantiate octave_dyld_shlib. |
|
621 |
4152
|
622 2002-11-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
623 |
4153
|
624 * CMatrix.cc, dMatrix.cc: Sprinkle with OCTAVE_QUIT. |
|
625 |
4152
|
626 * ODESSA.cc (odessa_f, odessa_j, odessa_b): Abort on error. |
|
627 |
|
628 * Array.h: Include <cstddef> here. |
|
629 |
4142
|
630 2002-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
631 |
4144
|
632 * DASPK.cc (DASPK::do_integrate): Resize rwork and iwork before |
|
633 using them. Accept inequality contraint option of 0. Assign |
|
634 pabs_tol and prel_tol before calling DASPK. Don't redeclare |
|
635 abs_tol and rel_tol. |
|
636 |
4143
|
637 * cmd-edit.h (command_editor::filename_completion_desired): New |
|
638 static function. |
|
639 (command_editor::do_filename_completion_desired): New virtual function. |
|
640 * oct-rl-edit.c (octave_rl_filename_completion_desired): New function. |
|
641 * oct-rl-edit.h: Provide decl. |
|
642 |
4142
|
643 * Array2.cc (Array2<T>::get_size): #define MALLOC_OVERHEAD to |
|
644 avoid OS X linker bug. |
|
645 * ArrayN.cc (ArrayN<T>::get_size): Likewise. |
|
646 |
4139
|
647 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
648 |
4141
|
649 * ODESFunc.h (ODESFunc::ODES_fsub, ODESFunc::ODES_bsub, |
|
650 ODESFunc::ODES_jsub): Reorder args for consistency with other |
|
651 solvers. |
|
652 * ODESSA.cc: Fix all callers. |
|
653 |
4139
|
654 * mx-inlines.cc (MX_BASE_REDUCTION_OP): Also return scalar |
|
655 MT_RESULT if nr == 1 && nc == 0 && dim == -1 (i.e., |
|
656 sum(zeros(1,0)) returns 0, not [](1x0)). |
|
657 |
4136
|
658 2002-10-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
659 |
|
660 * Makefile.in (LINK_DEPS): Include $(FLIBS) here too. |
|
661 |
4132
|
662 2002-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
663 |
4133
|
664 * DASRT.cc (DASRT::integrate): Fix computation of lrw |
|
665 (ddasrt_f): Combine loops. |
|
666 |
4132
|
667 * NLEqn.cc (NLEqn::solve): Return current estimate of solution |
|
668 instead of empty vector if user termninates iteration. |
|
669 |
4130
|
670 2002-10-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
671 |
|
672 * lo-utils.cc (read_inf_nan_na, octave_read_double, |
|
673 octave_read_complex, octave_write_double, octave_write_complex): |
|
674 New functions. |
|
675 * CMatrix.cc (operator << (std::ostream&, const ComplexMatrix&)): |
|
676 Use octave_write_complex. |
|
677 (operator >> (std::istream&, const ComplexMatrix&)): |
|
678 Use octave_read_complex. |
|
679 * dMatrix.cc (operator << (std::ostream&, double)): |
|
680 Use octave_write_double. |
|
681 (operator >> (std::istream&, double)): Use octave_read_double. |
|
682 |
4126
|
683 2002-10-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
684 |
|
685 * oct-kpse.c (octave_kpse_clear_dir_cache): Delete. |
|
686 * oct-kpse.h: Delete decl. |
|
687 * pathsearch.cc (dir_path::init): Delete unnecessary call to |
|
688 ::octave_kpse_clear_dir_cache. |
|
689 |
4123
|
690 2002-10-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
691 |
4124
|
692 * lo-sstream.h: Undef HAVE_SSTREAM if using a version of g++ |
|
693 earlier than 3.0. |
|
694 |
4123
|
695 * Makefile.in (LINK_DEPS): Include $(LIBKPATHSEA) here. |
|
696 (liboctave.$(SHLEXT)): Not here. |
|
697 |
4110
|
698 2002-10-17 Paul Kienzle <pkienzle@users.sf.net> |
|
699 |
|
700 * oct-shlib.cc (octave_w32_shlib): New class to support Windows. |
|
701 |
4108
|
702 2002-10-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
703 |
|
704 * Makefile.in (install-lib): Don't bother with versions for |
|
705 $(SHLBIN) files. |
|
706 |
4105
|
707 2002-10-16 Paul Kienzle <pkienzle@users.sf.net> |
|
708 |
|
709 * Makefile.in (LIB_DEPS): Include $(LIBS). |
|
710 |
4102
|
711 2002-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
712 |
|
713 * lo-cieee.c: Move everything but lo_ieee_init here. |
|
714 (lo_ieee_Inf_value, lo_ieee_NA_value, lo_ieee_NaN_value): |
|
715 New functions. |
|
716 |
|
717 * Makefile.in (install): No need to use cd to create links. |
|
718 (LINK_DEPS): Include $(LIBOCTAVE_LFLAGS) before list of libraries. |
|
719 |
|
720 2002-10-14 Paul Kienzle <pkienzle@users.sf.net> |
|
721 |
|
722 * Makefile.in: Merge liboctave with liboct-readline and |
|
723 liboct-pathsearch. |
|
724 Use link dependencies for shared libs if INCLUDE_LINK_DEPS. |
|
725 (libraries): Depend on versioned library. |
|
726 (liboctave.$(SHLEXT), liboctave.$(SHLEXT_VER)): Reverse actions -- |
|
727 build unversioned library, symbolic link adds version info. |
|
728 (install, uninstall): Handle link and load forms of the library |
|
729 separately. |
|
730 |
4101
|
731 2002-10-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
732 |
|
733 * oct-time.cc: Use OCTAVE_USE_WINDOWS_API instead of __WIN32__ and |
|
734 __CYGWIN__. |
|
735 |
|
736 * file-ops.cc (file_ops::dir_sep_char, file_ops::dir_sep_str, |
|
737 file_ops::dir_sep_chars): New static functions to replace |
|
738 OCTAVE_DIR_SEP_CHAR, OCTAVE_DIR_SEP_STR, OCTAVE_DIR_SEP_CHARS. |
|
739 |
|
740 * oct-env.cc (octave_env::do_set_program_name): |
|
741 Use file_ops::dir_sep_chars instead of OCTAVE_DIR_SEP_CHARS. |
|
742 (octave_env::do_base_pathname): Likewise. |
|
743 (octave_env::do_make_absolute): Likewise. |
|
744 |
|
745 * oct-env.cc (octave_env::do_make_absolute): |
|
746 Use file_ops::dir_sep_str instead of OCTAVE_DIR_SEP_STR. |
|
747 (octave_env::do_get_home_directory): Likewise. |
|
748 |
|
749 * file-ops.cc (is_dir_sep): Use dir_sep_chars instead of embedding |
|
750 that information here too. |
|
751 (tilde_find_suffix, isolate_tilde_prefix, tilde_expand_word): |
|
752 Use file_ops::dir_sep_char instead of OCTAVE_DIR_SEP_CHAR. |
|
753 |
|
754 * file-ops.h: Use OCTAVE_HAVE_WINDOWS_FILESYSTEM and |
|
755 OCTAVE_HAVE_POSIX_FILESYSTEM instead of __WIN32__ and __CYGWIN__. |
|
756 |
4097
|
757 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
758 |
|
759 * oct-env.h (octave_env::current_directory): Now mutable. |
|
760 (octave_env:do_getcwd): Now const. |
|
761 |
|
762 * file-ops.h, file-ops.cc (file_ops::is_dir_sep): New function. |
|
763 (OCTAVE_DIR_SEP_CHAR, OCTAVE_DIR_SEP_STR, OCTAVE_DIR_SEP_CHARS, |
|
764 OCTAVE_CURRENT_DIR_STR): New macros. |
|
765 * oct-env.cc (is_dir_sep): Delete. |
|
766 (octave_env::do_base_pathname): Look for OCTAVE_DIR_SEP_CHARS, not '/'. |
|
767 (octave_env::do_set_program_name): Likewise. |
|
768 (octave_env::do_polite_directory_format): Use file_ops::is_dir_sep |
|
769 instead of checking for '/'. |
|
770 (octave_env::pathname_backup): Likewise. |
|
771 (octave_env::do_absolute_pathname): Likewise. |
|
772 (octave_env::do_make_absolute): Likewise. |
|
773 If dot_path is empty, use getcwd to set current_dir. |
|
774 (octave_env::do_get_home_directory): Use OCTAVE_DIR_SEP_STR |
|
775 instead of "/". |
|
776 |
4093
|
777 2002-10-07 Paul Kienzle <pkienzle@users.sf.net> |
|
778 |
|
779 * lo-cutils.c: On non-Posix Windows systems, include winsock.h. |
|
780 |
|
781 2002-10-07 Paul Kienzle <pkienzle@users.sf.net> |
|
782 |
|
783 * oct-env.cc (octave_env::do_absolute_pathname): Recognize |
|
784 absolute path names under MinGW as well. |
|
785 |
|
786 2002-10-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
787 |
|
788 * oct-env.cc: Include <cctype> too. |
|
789 |
4087
|
790 2002-10-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
791 |
|
792 * oct-env.cc (octave_env::do_absolute_pathname): Handle Windows |
|
793 filenames. |
|
794 (octave_env::do_make_absolute): Check for absolute name with |
|
795 do_absolute_path. |
4088
|
796 (octave_env::do_chdir): Likewise. |
|
797 (is_dir_sep): New function. |
4087
|
798 |
4085
|
799 2002-10-03 Paul Kienzle <pkienzle@users.sf.net> |
|
800 |
4086
|
801 * oct-time.cc (octave_time::stamp): Better resolution for Windows |
|
802 systems. |
4085
|
803 |
4083
|
804 2002-10-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
805 |
|
806 * dMatrix.cc (Matrix::read): Clean up error handling logic. |
|
807 |
4080
|
808 2002-09-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
809 |
4081
|
810 * file-ops.cc (file_ops::mkdir): Handle one-arg mkdir here. |
|
811 |
4080
|
812 * lo-specfun.cc (acosh): Call xdacosh, not dacosh. |
|
813 |
4076
|
814 2002-09-27 Per Persson <persquare@mac.com> |
|
815 |
|
816 * oct-group.cc (octave_group::octave_group): Dont' forget to set |
|
817 gr_gid too. |
|
818 |
4072
|
819 2002-09-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
820 |
4074
|
821 * lo-mappers.cc (xisnan, xfinite, xisinf): Simply forward to |
|
822 lo_ieee_* functions. |
4072
|
823 * Makefile.in (LIBOCTAVE_C_SOURCES): Add lo-cieee.c to the list. |
4074
|
824 * lo-ieee.cc (lo_ieee_double): Rename from ieee_double. |
|
825 (LO_IEEE_NA_HW, LO_IEEE_NA_LW): Rename from NA_HW and NA_LW. |
4072
|
826 * lo-cieee.c: New file. |
4074
|
827 [SCO] (isinf, isnan): Move here from lo-ieee.cc. |
4072
|
828 * lo-ieee.h: Now all extern "C". |
4074
|
829 (lo_ieee_isnan, lo_ieee_finite, lo_ieee_isinf): Move here from |
|
830 lo-mappers.cc and rename from xisnan, xfinite, xisinf. |
|
831 |
4072
|
832 * lo-ieee.cc (lo_ieee_hw, lo_ieee_low): Rename from hw and lw. |
|
833 Now extern. |
|
834 |
4066
|
835 2002-09-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
836 |
|
837 * Array.cc, Array.h, Array2.cc, Array2.h, Array3.cc, Array3.h, |
|
838 ArrayN.cc, ArrayN.h, Bounds.cc, Bounds.h, CColVector.cc, |
|
839 CColVector.h, CDiagMatrix.cc, CDiagMatrix.h, CMatrix.cc, |
|
840 CMatrix.h, CRowVector.cc, CRowVector.h, CmplxAEPBAL.cc, |
|
841 CmplxAEPBAL.h, CmplxCHOL.cc, CmplxCHOL.h, CmplxDET.cc, CmplxDET.h, |
|
842 CmplxHESS.cc, CmplxHESS.h, CmplxLU.cc, CmplxLU.h, CmplxQR.cc, |
|
843 CmplxQR.h, CmplxQRP.cc, CmplxQRP.h, CmplxSCHUR.cc, CmplxSCHUR.h, |
|
844 CmplxSVD.cc, CmplxSVD.h, CollocWt.cc, CollocWt.h, DAE.cc, |
|
845 DASPK.cc, DASPK.h, DASRT.cc, DASRT.h, DASSL.cc, DASSL.h, |
|
846 DiagArray2.cc, DiagArray2.h, EIG.cc, EIG.h, FEGrid.cc, FEGrid.h, |
|
847 LPsolve.cc, LPsolve.h, LSODE.cc, LSODE.h, LinConst.cc, LinConst.h, |
|
848 MArray.cc, MArray.h, MArray2.cc, MArray2.h, MDiagArray2.cc, |
|
849 MDiagArray2.h, NLConst.h, NLEqn.cc, NLEqn.h, ODES.cc, ODES.h, |
|
850 ODESSA.cc, ODESSA.h, Quad.cc, Quad.h, Range.cc, Range.h, |
|
851 base-lu.cc, base-lu.h, boolMatrix.cc, boolMatrix.h, chMatrix.cc, |
|
852 chMatrix.h, dColVector.cc, dColVector.h, dDiagMatrix.cc, |
|
853 dDiagMatrix.h, dMatrix.cc, dMatrix.h, dRowVector.cc, dRowVector.h, |
|
854 dbleAEPBAL.cc, dbleAEPBAL.h, dbleCHOL.cc, dbleCHOL.h, dbleDET.cc, |
|
855 dbleDET.h, dbleHESS.cc, dbleHESS.h, dbleLU.cc, dbleLU.h, |
|
856 dbleQR.cc, dbleQR.h, dbleQRP.cc, dbleQRP.h, dbleSCHUR.cc, |
|
857 dbleSCHUR.h, dbleSVD.cc, dbleSVD.h, idx-vector.cc, idx-vector.h, |
|
858 oct-alloc.cc: |
|
859 If __GNUG__, use pragma interface/implementation. Allow this to |
|
860 be turned off by defining NO_PRAGMA_INTERFACE_IMPLEMENTATION. |
|
861 |
4064
|
862 2002-09-26 Paul Kienzle <pkienzle@users.sf.net> |
|
863 |
4066
|
864 * file-ops.cc (file_ops::readlink): Don't declare buffer if |
|
865 system readlink function is not available. |
|
866 |
4065
|
867 * lo-mappers.cc (xerf, xerfc): Delete. |
|
868 * lo-mappers.h (xerf, xerfc): Delete decls. |
|
869 |
4064
|
870 * lo-mappers.cc: Remove unused #define M_PI. |
|
871 * lo-specfun.cc: Add #define M_PI if needed. |
|
872 |
4062
|
873 2002-09-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
874 |
|
875 * cmd-edit.cc (do_decode_prompt_string): Cope with possibility |
|
876 that geteuid doesn't exist. |
|
877 |
|
878 * LP.h: Rename LP class to octave_LP. |
|
879 LPsolve.h: Change all uses. |
|
880 |
|
881 * file-ops.cc, oct-passwd.cc oct-syscalls.cc oct-group.cc: Remove |
|
882 incorrect token-pasting op. |
|
883 |
|
884 * statdefs.h [! S_ISLNK]: undef HAVE_LSTAT instead of trying to |
|
885 define lstat. |
|
886 |
4061
|
887 2002-09-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
888 |
|
889 * Array.cc, Array.h, Array2.cc, Array2.h, Array3.cc, Array3.h, |
|
890 ArrayN.cc, ArrayN.h, Bounds.cc, Bounds.h, CColVector.cc, |
|
891 CColVector.h, CDiagMatrix.cc, CDiagMatrix.h, CMatrix.cc, |
|
892 CMatrix.h, CRowVector.cc, CRowVector.h, CmplxAEPBAL.cc, |
|
893 CmplxAEPBAL.h, CmplxCHOL.cc, CmplxCHOL.h, CmplxDET.cc, CmplxDET.h, |
|
894 CmplxHESS.cc, CmplxHESS.h, CmplxLU.cc, CmplxLU.h, CmplxQR.cc, |
|
895 CmplxQR.h, CmplxQRP.cc, CmplxQRP.h, CmplxSCHUR.cc, CmplxSCHUR.h, |
|
896 CmplxSVD.cc, CmplxSVD.h, CollocWt.cc, CollocWt.h, DAE.cc, |
|
897 DASPK.cc, DASPK.h, DASRT.cc, DASRT.h, DASSL.cc, DASSL.h, |
|
898 DiagArray2.cc, DiagArray2.h, EIG.cc, EIG.h, FEGrid.cc, FEGrid.h, |
|
899 LPsolve.cc, LPsolve.h, LSODE.cc, LSODE.h, LinConst.cc, LinConst.h, |
|
900 MArray.cc, MArray.h, MArray2.cc, MArray2.h, MDiagArray2.cc, |
|
901 MDiagArray2.h, NLConst.h, NLEqn.cc, NLEqn.h, ODES.cc, ODES.h, |
|
902 ODESSA.cc, ODESSA.h, Quad.cc, Quad.h, Range.cc, Range.h, |
|
903 base-lu.cc, base-lu.h, boolMatrix.cc, boolMatrix.h, chMatrix.cc, |
|
904 chMatrix.h, dColVector.cc, dColVector.h, dDiagMatrix.cc, |
|
905 dDiagMatrix.h, dMatrix.cc, dMatrix.h, dRowVector.cc, dRowVector.h, |
|
906 dbleAEPBAL.cc, dbleAEPBAL.h, dbleCHOL.cc, dbleCHOL.h, dbleDET.cc, |
|
907 dbleDET.h, dbleHESS.cc, dbleHESS.h, dbleLU.cc, dbleLU.h, |
|
908 dbleQR.cc, dbleQR.h, dbleQRP.cc, dbleQRP.h, dbleSCHUR.cc, |
|
909 dbleSCHUR.h, dbleSVD.cc, dbleSVD.h, idx-vector.cc, idx-vector.h, |
|
910 oct-alloc.cc: |
|
911 Use USE_PRAGMA_INTERFACE_IMPLEMENTATION instead of __GNUG__ |
|
912 to decide whether to use the interface/implementation pragmas. |
|
913 |
4058
|
914 2002-09-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
915 |
|
916 * Makefile.in (INCLUDES): Add lo-sstream.h to the list. |
|
917 |
4055
|
918 2002-08-17 Mumit Khan <khan@nanotech.wisc.edu> |
|
919 |
|
920 * CmplxCHOL.h, CollocWt.h, cmd-edit.h, oct-shlib.h: Don't use |
|
921 qualified names. |
|
922 |
4051
|
923 2002-08-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
924 |
4054
|
925 * Array.h, Array2-idx.h, DiagArray2.cc, Array2.cc, Array3.cc, |
|
926 ArrayN.cc: Add typename where needed. |
4053
|
927 |
4051
|
928 * DASPK.cc: Include lo-sstream.h and use macros instead of using |
|
929 strstream classes directly. |
|
930 * DASRT.cc: Likewise. |
|
931 * DASSL.cc: Likewise. |
|
932 * LSODE.cc: Likewise. |
|
933 * ODESSA.cc: Likewise. |
|
934 |
|
935 * cmd-hist.cc: Don't include <strstream>. |
|
936 * oct-shlib.cc: Likewise. |
|
937 |
|
938 * lo-sstream.h: New file. |
|
939 |
4049
|
940 2002-08-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
941 |
|
942 * LSODE.h (rel_tol, abs_tol, px, pabs_tol, piwork, prwork, itol): |
|
943 New data members. |
|
944 (LSODE::sanity_checked): Delete unused data member. |
|
945 |
|
946 * DASPKL.h (initialized, abs_tol, rel_tol, px, pxdot, pabs_tol, |
|
947 prel_tol, pinfo, piwork, prwork): New data members. |
|
948 * DASSL.h (DASSL): Likewise. |
|
949 |
|
950 * DASRT.h (DASRT::sanity_checked): Delete unused data member. |
|
951 |
|
952 * DASRT.cc (DASRT::integrate (double)): Better handling of |
|
953 initialization, changes in options, etc. |
|
954 * DASPK.cc (DASPK::do_integrate): Likewise. |
|
955 * DASSL.cc (DASSL::do_integrate): Likewise. |
|
956 * LSODE.cc (LSODE::do_integrate): Likewise. |
|
957 |
4047
|
958 2002-08-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
959 |
4049
|
960 * DAEFunc.h (DAEFunc::reset): New data member. |
|
961 * DAERTFunc.h (DAERTFunc::reset): Likewise. |
|
962 |
|
963 * base-de.h (base_diff_eqn::set_stop_time): Force restart here. |
|
964 (base_diff_eqn::clear_stop_time): Likewise. |
|
965 |
4047
|
966 * DASSL.cc (DASSL::do_integrate (double)): Handle more optoins. |
|
967 * DASPK.cc (DASPK::do_integrate (double)): Likewise. |
|
968 |
4044
|
969 2002-08-15 Paul Kienzle <pkienzle@users.sf.net> |
|
970 |
|
971 * DASPK-opts.in, DASPK.h: Move include to .in file. |
|
972 * DASRT-opts.in, DASRT.h: Likewise. |
|
973 * DASSL-opts.in, DASSL.h: Likewise. |
|
974 * LSODE-opts.in, LSODE.h: Likewise. |
|
975 * NLEqn-opts.in, NLEqn.h: Likewise. |
|
976 * ODESSA-opts.in, ODESSA.h: Likewise. |
|
977 |
4038
|
978 2002-08-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
979 |
4042
|
980 * LSODE.cc (LSODE::error_message): Also return current T on |
|
981 failures when that makes sense. |
4043
|
982 * DASSL.cc (DASSL::error_message): Likewise. |
|
983 * DASRT.cc (DASRT::error_message): Likewise. |
|
984 * DASPK.cc (DASPK::error_message): Likewise. |
|
985 * ODESSA.cc (ODESSA:error_message): Likewise. |
4042
|
986 |
4038
|
987 * Makefile.in (liboct-pathsearch.$(SHLEXT_VER)): Link to |
|
988 $(LIBKPATHSEA) here. |
|
989 |
4025
|
990 2002-08-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
991 |
|
992 * lo-ieee.cc (lo_ieee_is_NA): New function. |
|
993 (lo_ieee_is_NaN_or_NA): New function. |
|
994 (octave_NA): New global value. |
|
995 (octave_ieee_init): Initialize it. |
|
996 * lo-mappers.cc (octave_is_NA): New function. |
|
997 (octave_is_NaN_or_NA): New function. |
|
998 (xisnan): Return false if NaN looks like a missing value. |
|
999 (xisnan (const Complex&)): Use xisnan here. |
|
1000 |
4015
|
1001 2002-08-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1002 |
4017
|
1003 * CMatrix.h (ComplexMatrix::all, ComplexMatrix::any, |
|
1004 ComplexMatrix::cumprod, ComplexMatrix::cumsum, |
|
1005 ComplexMatrix::prod, ComplexMatrix::sum, ComplexMatrix::sumsq): |
|
1006 Default value for dim is -1, not 0. |
|
1007 * dMatrix.h (Matrix::all, Matrix::any, Matrix::cumprod, |
|
1008 Matrix::cumsum, Matrix::prod, Matrix::sum, Matrix::sumsq): Likewise. |
|
1009 * boolMatrix.h (boolMatrix:all, boolMatrix::any): Likewise. |
|
1010 * chMatrix.h (charMatrix::all, charMatrix::any): Likewise. |
|
1011 |
4015
|
1012 * mx-inlines.cc (MX_ANY_ALL_OP_ROW_CODE, MX_ANY_ALL_OP_COL_CODE): |
|
1013 New macros. |
|
1014 (MX_ANY_ALL_OP): Define MX_ANY_ALL_OP using them and |
|
1015 MX_BASE_REDUCTION_OP. |
|
1016 (MX_CUMULATIVE_OP): Fix spelling. Change all uses. |
|
1017 |
4014
|
1018 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1019 |
4015
|
1020 * chMatrix.h, chMatrix.cc (charMatrix::any, charMatrix::all): |
|
1021 Return boolMatrix, not Matrix. |
|
1022 |
|
1023 * mx-inlines.cc (MX_ANY_ALL_OP, MX_ALL_OP, MX_ANY_OP): New macros. |
|
1024 * dMatrix.cc (Matrix::any): Replace guts with MX_ANY_OP. |
|
1025 (Matrix::all): Replace guts with MX_ALL_OP. |
|
1026 * CMatrix.cc (ComplexMatrix::any): Replace guts with MX_ANY_OP. |
|
1027 (ComplexMatrix::all): Replace guts with MX_ALL_OP. |
|
1028 * boolMatrix.cc (boolMatrix::any): Replace guts with MX_ANY_OP. |
|
1029 (boolMatrix::all): Replace guts with MX_ALL_OP. |
|
1030 * chMatrix.cc (charMatrix::any): Replace guts with MX_ANY_OP. |
|
1031 (charMatrix::all): Replace guts with MX_ALL_OP. |
|
1032 |
|
1033 * dMatrix.h (Matrix::any): New arg, dim. |
|
1034 (Matrix::all): Likewise. |
|
1035 * CMatrix.h (ComplexMatrix::any): Likewise. |
|
1036 (ComplexMatrix::all): Likewise. |
|
1037 * boolMatrix.h (boolMatrix::any): Likewise. |
|
1038 (boolMatrix::all): Likewise. |
|
1039 * chMatrix.h (charMatrix::any): Likewise. |
|
1040 (charMatrix::all): Likewise. |
|
1041 |
4014
|
1042 * Makefile.in: Use $@-t instead of $@.t. |
|
1043 |
4004
|
1044 2002-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1045 |
|
1046 * lo-specfun.cc (gammainc): New arg, err, for scalar version. |
|
1047 Use it in matrix versions to avoid spewing multiple errors. |
|
1048 Call xgammainc instead of dgamit. |
|
1049 |
3998
|
1050 2002-07-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1051 |
|
1052 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const boolMatrix&)): |
|
1053 Get rows and columns right in loop. |
|
1054 (ComplexMatrix::ComplexMatrix (const charMatrix&)): Likewise. |
|
1055 |
|
1056 2002-07-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1057 |
|
1058 * DASPK.cc (DASPK::do_integrate): Allow array tolerances. |
|
1059 * DASRT.cc (DASRT::integrate): Likewise. |
|
1060 * DASSL.cc (DASSL::do_integrate): Likewise. |
|
1061 |
|
1062 * Quad.cc: Don't pass tolerances in constructors. |
|
1063 |
|
1064 * DASPK-opts.in, DASRT-opts.in, DASSL-opts.in, LSODE-opts.in, |
|
1065 NLeqn-opts.in, ODESSA-opts.in, Quad-opts.in: New files. |
|
1066 * DASPK-opts.h, DASRT-opts.h, DASSL-opts.h, LSODE-opts.h, |
|
1067 NLeqn-opts.h, ODESSA-opts.h, Quad-opts.h: Generate automatically |
|
1068 from corresponding .in files. |
|
1069 * LSODE.h, Quad.h: Replace options class definitions with included |
|
1070 file. |
|
1071 * Makefile.in (OPTS_INC_SRC, OPTS_INC): New variables, new rule to |
|
1072 create OPTS_INC files from OPTS_INC_SRC files. |
|
1073 (stamp-prereq): New target. |
|
1074 (libraries): Depend on stamp-prereq. |
|
1075 Include stamp-prereq along with $(MAKEDEPS). |
|
1076 |
3997
|
1077 2002-07-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1078 |
|
1079 * base-de.h (base_diff_eqn::istate): New data member. |
|
1080 (base_diff_eqn::integration_state): New member function. |
|
1081 * LSODE.h, LSODE.cc, ODESSA.h, ODESSA.cc: Delete corresponding |
|
1082 data members and functions. |
|
1083 * DASPK.h, DASRT.h, DASSL.h: Delete idid data member. |
|
1084 * DASPK.cc, DASRT.cc, DASSL.cc: Use istate instead of idid. |
|
1085 |
3990
|
1086 2002-07-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1087 |
3995
|
1088 * base-de.h (base_diff_eqn::stop_time, |
|
1089 base_diff_eqn::stop_time_set, base_diff_eqn::restart, |
|
1090 base_diff_eqn::integration_error): New data members. |
|
1091 (base_diff_eqn::set_stop_time, base_diff_eqn::clear_stop_time, |
|
1092 base_diff_eqn::force_restart, base_diff_eqn::integration_ok, |
|
1093 base_diff_eqn::error_message): New member functions. |
|
1094 * LSODE.h, LSODE.cc, DASSL.h, DASSL.cc, DASPK.h, DASPK.cc, |
|
1095 DASRT.h, DASRT.cc, ODESSA.h, ODESSA.cc: Delete corresponding data |
|
1096 members and functions. |
|
1097 |
3992
|
1098 * DASRT.h (DASRT::set_ng, DASRT::get_ng): Delete |
|
1099 * DASRT.cc (DASRT::DASRT): Set ng here. |
3993
|
1100 (DASRT::integrate): Don't forget to set nn. |
3992
|
1101 |
3991
|
1102 * DAEFunc.h (DAEFunc): Jacobian function now follows format of DASSL. |
|
1103 * DASSL.cc (ddassl_j): Make it work. |
|
1104 * DASPK.cc (ddaspk_j): Likewise. |
|
1105 |
3990
|
1106 * DAE.cc: Delete. |
|
1107 |
|
1108 * DAERT.h, DAERTFunc.h, DASRT.h, DASRT.cc: New files for DAE |
|
1109 solving with root finding. |
|
1110 * Makefile.in: Add them to the appropriate lists. |
|
1111 |
|
1112 * base-dae.h: New file. |
|
1113 * Makefile.in (INCLUDES): Add it to the list. |
|
1114 * DAE.h (DAE): Derive from base_diff_alg_eqn, not base_diff_eqn. |
|
1115 |
3984
|
1116 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1117 |
|
1118 * ODE.h: Move integrate and do_integrate method declarations and |
|
1119 definitions here. |
|
1120 * base-de.h: From here. |
|
1121 |
|
1122 * ODES.h, ODES.cc, ODESFunc.h, ODESSA.h, ODESSA.cc: New files. |
|
1123 * Makefile.in: Add them to the appropriate lists. |
|
1124 (LIBOCTAVE_CXX_SOURCES): |
|
1125 |
3971
|
1126 2002-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1127 |
|
1128 * NLEqn.cc (NLEqn::error_message): New function. |
|
1129 * NLEqn.h (NLEqn::solution_state, NLEqn::solution_ok): New functions. |
|
1130 |
3970
|
1131 2002-07-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1132 |
|
1133 * lo-utils.cc (octave_fgetl): New function. |
|
1134 * cmd-edit.cc (do_readline): Use it instead of octave_fgets. |
|
1135 |
3959
|
1136 2002-05-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1137 |
|
1138 * LSODE.cc (LSODE::error_message): New function. |
|
1139 * LSODE.h: Provide decl. |
|
1140 (LSODE::integration_state): New function. |
|
1141 (LSODE::integration_ok): New function. |
|
1142 |
3952
|
1143 2002-05-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1144 |
3955
|
1145 * LSODE.cc (LSODE_options::x_integration_method): New data member. |
|
1146 (LSODE_options::set_integration_method, |
|
1147 LSODE_options::integration_method): New functions. |
3954
|
1148 |
3952
|
1149 * LSODE.h (LSODE_options::x_absolute_tolerance): Now Array<double>. |
|
1150 Change all uses. |
|
1151 (LSODE_OPTIONS::absolute_tolerance): Return Array<double>, not double. |
|
1152 (LSODE_OPTIONS::set_absolute_tolerance (const Array<double>&)): |
|
1153 New function. |
|
1154 |
|
1155 * Array.h (Array::fortran_vec): New const version. |
|
1156 |
3951
|
1157 2002-05-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1158 |
|
1159 * cmd-edit.cc (gnu_readline::history_search_backward): New function. |
|
1160 (gnu_readline::history_search_forward): Likewise. |
|
1161 (gnu_readline::gnu_readline): Use them instead of passing pointers |
|
1162 to extern "C" functions to octave_rl_ad_defun. |
|
1163 |
3946
|
1164 2002-05-22 Mumit Khan <khan@nanotech.wisc.edu> |
|
1165 |
|
1166 * DASPK.cc (ddaspk_psol): Return value. |
|
1167 * oct-rl-edit.c: Use /* ... */ to comment. |
|
1168 |
3945
|
1169 2002-05-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1170 |
|
1171 * DASSL.h (DASSL_options::init): Undo previous change. |
|
1172 (DASSL_options::set_absolute_tolerance): Likewise. |
|
1173 * LSODE.h (LSODE_options::init): Likewise. |
|
1174 (LSODE_options::set_absolute_tolerance): Likewise. |
|
1175 |
|
1176 * DASPK.h (DASPK_options::init): Use default absolute tolerance of |
|
1177 sqrt(eps), not eps^2. |
|
1178 DASPK_options::set_absolute_tolerance): Likewise. |
|
1179 |
3944
|
1180 2002-05-17 Mumit Khan <khan@nanotech.wisc.edu> |
|
1181 |
|
1182 * Array.h (Array<T>::resize_fill_value): Return default initialized |
|
1183 object. |
|
1184 |
3933
|
1185 2002-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1186 |
|
1187 * oct-rl-edit.c (OCTAVE_RL_SAVE_STRING): New macro. |
|
1188 (octave_rl_set_name, octave_rl_set_basic_quote_characters): Use it. |
|
1189 (octave_rl_set_basic_word_break_characters, |
|
1190 octave_rl_set_completer_word_break_characters): New functions. |
|
1191 * oct-rl-edit.h: Provide decls. |
|
1192 * cmd-edit.cc (gnu_readline::do_set_basic_word_break_characters, |
|
1193 gnu_readline::do_set_completer_word_break_characters): New functions. |
|
1194 (command_editor::set_basic_quote_characters, |
|
1195 command_editor::set_completion_append_character): New static functions. |
|
1196 * cmd-edit.h: Provide decls. |
|
1197 (command_editor::do_set_basic_word_break_characters, |
|
1198 command_editor::do_set_completer_word_break_characters): |
|
1199 New virtual functions. |
|
1200 |
|
1201 * CMatrix.h, boolMatrix.h, chMatrix.h, dMatrix.h |
|
1202 (resize_fill_value): New static function. |
|
1203 |
|
1204 * Array-idx.h (Array<T>::index): New args, resize_ok and |
|
1205 resize_fill_value. |
|
1206 * Array2-idx.h (Array2<T>::index): Likewise. |
|
1207 * ArrayN-idx.h (ArrayN<T>::index): Likewise. |
|
1208 |
|
1209 * Array2.cc (Array<T>::print_info): New function. |
|
1210 * Array2.h: Provide decl. |
|
1211 |
|
1212 * Array.cc (Array<T>::print_info): New function. |
|
1213 * Array.h: Provide decl. |
|
1214 |
3928
|
1215 2002-05-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1216 |
|
1217 * idx-vector.h (idx_vector::idx_vector (int)): New function. |
|
1218 (idx_vector_rep::idx_vector_rep (int)): New decl. |
|
1219 * idx-vector.cc (idx_vector_rep::idx_vector_rep (int)): New function. |
|
1220 |
|
1221 * Array.h (Array<T>::resize_fill_value (void)): New static function. |
|
1222 (assign (Array<LT>&, const Array<RT>&)): Use it. |
|
1223 * Array2.h (assign (Array2<LT>&, const Array2<RT>&)): Use it. |
|
1224 * ArrayN.h (assign (ArrayN<LT>&, const ArrayN<RT>&)): Use it. |
|
1225 |
|
1226 2002-05-02 Cai Jianming <caijianming@yahoo.co.uk> |
|
1227 |
|
1228 * Array3.h (Array3<T>::checkelem): Improve error message. |
|
1229 * ArrayN.h (ArrayN<T>::range_error): Likewise. |
|
1230 * DiagArray2.cc (DiagArray2<T>::checkelem): Likewise. |
|
1231 * DiagArray2.cc (DiagArray2<T>::operator ()): Likewise. |
|
1232 |
3919
|
1233 2002-04-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1234 |
|
1235 * DASSL.h (DASSL_options::init): Undo previous change. |
|
1236 (DASSL_options::set_absolute_tolerance): Likewise. |
|
1237 |
3912
|
1238 2002-04-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1239 |
|
1240 * DASPK.h, DASPK.cc: New files. |
|
1241 * Makefile.in: Add them to the appropriate lists. |
|
1242 |
3904
|
1243 2002-04-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1244 |
|
1245 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&) const): |
|
1246 Simplify indexing when one or both of the indices are empty. |
|
1247 |
3896
|
1248 2002-04-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1249 |
|
1250 * DASSL.h (DASSL_options::init): Set absolute tolerance to eps ^ 2. |
|
1251 (DASSL_options::set_absolute_tolerance): Likewise. |
|
1252 * LSODE.h (LSODE_options::init): Likewise. |
|
1253 (LSODE_options::set_absolute_tolerance): Likewise. |
|
1254 |
3887
|
1255 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
|
1256 |
|
1257 * f2c-main.c (MAIN_, MAIN__): Delete. Use F77_DUMMY_MAIN instead. |
|
1258 * file-stat.cc (file_stat::update_internal, file_stat::copy): |
|
1259 Use HAVE_STRUCT_STAT_ST_RDEV instead of HAVE_ST_RDEV. |
|
1260 Use HAVE_STRUCT_STAT_ST_BLKSIZE instead of HAVE_ST_BLKSIZE. |
|
1261 Use HAVE_STRUCT_STAT_ST_BLOCKS instead of HAVE_ST_BLOCKS. |
|
1262 * file-stat.h: Likewise. |
|
1263 * oct-time.cc (octave_time::octave_time, octave_base_tm::strftime, |
|
1264 octave_base_tm::init, octave_strptime::init): Use HAVE_TM_ZONE |
|
1265 instead of HAVE_STRUCT_TM_TM_ZONE. |
|
1266 * strftime.c: Likewise. |
|
1267 * lo-specfun.cc, mach-info.cc, CColVector.cc, CMatrix.cc, |
|
1268 CRowVector.cc, CmplxAEPBAL.cc, CmplxCHOL.cc, CmplxHESS.cc, |
|
1269 CmplxLU.cc, CmplxQR.cc, CmplxQRP.cc, CmplxSCHUR.cc, CmplxSVD.cc, |
|
1270 CollocWt.cc, DASSL.cc, EIG.cc, LSODE.cc, NLEqn.cc, Quad.cc, |
|
1271 dColVector.cc, dMatrix.cc, dRowVector.cc, dbleAEPBAL.cc, |
|
1272 dbleCHOL.cc, dbleHESS.cc, dbleLU.cc, dbleQR.cc, dbleQRP.cc, |
|
1273 dbleSCHUR.cc, dbleSVD.cc: Use F77_FUNC instead of F77_FCN. |
|
1274 |
3883
|
1275 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
|
1276 |
|
1277 * CmplxQR.cc (ComplexQR::init): Use economy QR decomposition |
|
1278 internally when the user requests it. |
|
1279 * CmplxQRP.cc (ComplexQRP::init): Ditto. |
|
1280 * dbleQR.cc (QR::init): Ditto. |
|
1281 * dbleQRP.cc (QRP::init): Ditto. |
|
1282 |
3874
|
1283 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1284 |
|
1285 * oct-fftw.cc (octave_fftw::fft2d): Avoid having to find a |
|
1286 definition for NULL by passing 0 as the last arg to fftwnd_one. |
|
1287 (octave_fftw::ifft2d): Likewise. |
|
1288 |
3873
|
1289 2002-02-22 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
|
1290 |
|
1291 * lo-mappers.cc (arg): Simply call atan2 (0.0, x). |
|
1292 |
3867
|
1293 2001-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1294 |
|
1295 * data-conv.cc (LS_DO_READ): Don't do anything unless len > 0. |
|
1296 (LS_DO_WRITE): Likewise. |
|
1297 |
3864
|
1298 2001-11-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1299 |
|
1300 * mx-inlines.cc (MX_CUMMULATIVE_OP): New macro. |
|
1301 * CMatrix.cc (ComplexMatrix::cumprod, ComplexMatrix::cumsum): Use it. |
|
1302 * dMatrix.cc (Matrix::cumprod, Matrix::cumsum): Likewise. |
|
1303 |
|
1304 * mx-inlines.cc (MX_REDUCTION_OP, MX_REDUCTION_OP_COL_EXPR, |
|
1305 MX_REDUCTION_OP_ROW_EXPR): New macros. |
|
1306 * dMatrix.cc (Matrix::prod, Matrix::sum): Use MX_REDUCTION_OP. |
|
1307 * CMatrix.cc (ComplexMatrix::prod, ComplexMatrix::sum): Likewise. |
|
1308 |
|
1309 * mx-inlines.cc (MX_BASE_REDUCTION_OP): New macro. |
|
1310 DIM == -1 now means no orientation for vector sums. |
|
1311 * dMatrix.cc (ComplexMatrix::sumsq): Use it. |
|
1312 * CMatrix.cc (ComplexMatrix::sumsq): Likewise. |
|
1313 |
3858
|
1314 2001-11-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1315 |
|
1316 * Range.cc (Range::nelem_internal): Special case ranges that must |
|
1317 have zero elements. |
|
1318 |
3854
|
1319 2001-11-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1320 |
3857
|
1321 * Makefile.in: Split out readline and pathsearch functionality |
|
1322 into separate liboct-readline and liboct-pathsearch libraries. |
|
1323 |
3854
|
1324 * oct-rl-edit.c (octave_rl_clear_screen): Call rl_clear_screen, |
3857
|
1325 not _rl_clear_screen. Temporarily redefine rl_redisplay_function |
|
1326 to do nothing for this call to rl_clear_screen. |
3854
|
1327 |
3849
|
1328 2001-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1329 |
|
1330 * DASSL.cc (ddassl_f): Handle IRES returned from user supplied |
|
1331 function. |
|
1332 * DAEFunc.h (DAERHSFunc): Add IRES to prototype. |
|
1333 |
3838
|
1334 2001-06-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1335 |
|
1336 * dMatrix.cc (Matrix::inverse, Matrix::solve, Matrix::determinant, |
|
1337 Matrix::inverse): Handle the case of rcond being a NaN the same as |
|
1338 a signular matrix. From "Jianming" <caijianming@yahoo.co.uk>. |
|
1339 * CMatrix.cc (ComplexMatrix::inverse, ComplexMatrix::solve, |
|
1340 ComplexMatrix::determinant, ComplexMatrix::inverse): Likewise. |
|
1341 |
3836
|
1342 2001-05-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1343 |
|
1344 * chMatrix.cc (charMatrix::row_as_string): New parameter, raw. |
|
1345 |
|
1346 * Array-i.cc, Array-s.cc, Array-d.cc, Array-ch.cc, Array-C.cc, |
|
1347 Array-b.cc: Instantiate three arg assign functions. |
|
1348 |
|
1349 * ArrayN.cc (assign (ArrayN<LT>&, const ArrayN<RT>&, const LT&)): |
|
1350 New arg, resize_fill_value. |
|
1351 * ArrayN.h: Provide declaration. |
|
1352 (assign (ArrayN<LT>&, const ArrayN<RT>&): Define here by calling |
|
1353 three arg version. |
|
1354 |
|
1355 * Array3.cc (assign (Array3<LT>&, const Array3<RT>&, const LT&)): |
|
1356 New arg, resize_fill_value. |
|
1357 * Array3.h: Provide declaration. |
|
1358 (assign (Array3<LT>&, const Array3<RT>&): Define here by calling |
|
1359 three arg version. |
|
1360 |
|
1361 * Array2.cc (assign (Array2<LT>&, const Array2<RT>&, const LT&)): |
|
1362 New arg, resize_fill_value. |
|
1363 * Array2.h: Provide declaration. |
|
1364 (assign (Array2<LT>&, const Array2<RT>&): Define here by calling |
|
1365 three arg version. |
|
1366 |
|
1367 * Array.cc (assign (Array<LT>&, const Array<RT>&, const LT&)): |
|
1368 New arg, resize_fill_value. |
|
1369 * Array.h: Provide declaration. |
|
1370 (assign (Array<LT>&, const Array<RT>&): Define here by calling |
|
1371 three arg version. |
|
1372 |
3833
|
1373 2001-05-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1374 |
|
1375 * pathsearch.cc (dir_path::set_program_name): Set the environment |
|
1376 variables SELFAUTOLOC, SELFAUTODIR, SELFAUTOPARENT, and TEXMFDBS |
|
1377 to the empty string. |
|
1378 |
3832
|
1379 2001-05-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1380 |
|
1381 * Array2.h (Array2<T>::operator = (const Array2<T>&)): |
|
1382 Don't check for rep != a.rep. |
|
1383 |
3827
|
1384 2001-05-02 Mumit Khan <khan@nanotech.wisc.edu> |
|
1385 |
|
1386 * oct-fftw.h, oct-fftw.cc: New files. |
|
1387 * Makefile.in (INCLUDES, SOURCES): Add new files. |
|
1388 * CMatrix.cc (ComplexMatrix::{fourier, ifourier, fourier2d, |
|
1389 ifourier2d}): Use fftw if available. |
|
1390 * dMatrix.cc (Matrix::{fourier, ifourier, fourier2d, ifourier2d}): |
|
1391 Likewise. |
|
1392 |
3821
|
1393 2001-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1394 |
|
1395 * Makefile.in (install-lib): Don't use mk-libdir-link. |
|
1396 (install-inc): Don't use mk-includedir-link. |
|
1397 |
3803
|
1398 2001-02-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1399 |
|
1400 * lo-cutils.c (octave_gethostname): New function. |
|
1401 * lo-utils.h: Provide declaration. |
|
1402 * oct-env.cc (octave_env::do_get_host_name): |
|
1403 Call octave_gethostname, instead of gethostname. |
|
1404 |
|
1405 * lo-cutils.c (gethostname): Define here. |
|
1406 * lo-sysdep.cc: Not here. |
|
1407 |
3786
|
1408 2001-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1409 |
|
1410 * lo-cutils.c: Don't declare strptime. |
|
1411 (oct_strptime): Cast return type of strptime to char*. |
|
1412 |
3777
|
1413 2001-02-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1414 |
3779
|
1415 * oct-rl-edit.c (octave_rl_newline): Call rl_newline with two args. |
|
1416 (octave_rl_set_name): call rl_re_read_init_file with two args. |
|
1417 (octave_rl_read_init_file): Ditto. |
|
1418 (octave_rl_clear_undo_list): Call rl_free_undo_list, not |
|
1419 free_undo_list. |
|
1420 (octave_rl_completion_matches): Call rl_completion_matches, not |
|
1421 completion_matches. |
|
1422 (octave_rl_enable_paren_matching): New function. |
|
1423 (octave_rl_set_blink_matching_paren_flag): Delete. |
|
1424 (octave_rl_get_blink_matching_paren_flag): Delete. |
|
1425 |
3777
|
1426 * lo-mappers.h, lo-mappers.cc (log10 (const Complex&), |
|
1427 tanh (const Complex&)): Declare and define if not |
|
1428 CXX_ISO_COMPLIANT_LIBRARY. |
|
1429 |
3776
|
1430 2001-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1431 |
|
1432 * lo-mappers.h (tanh (const Complex&)): Only declare if not |
|
1433 CXX_ISO_COMPLIANT_LIBRARY. |
|
1434 |
3775
|
1435 2001-02-05 Mumit Khan <khan@nanotech.wisc.edu> |
|
1436 |
3776
|
1437 * lo-mappers.cc (tanh (const Complex&)): Only define if not |
|
1438 CXX_ISO_COMPLIANT_LIBRARY. |
|
1439 |
3775
|
1440 * Makefile.in (TEMPLATE_AR, TEMPLATE_ARFLAGS): Use to create |
|
1441 archive libraries containing templates. |
|
1442 |
|
1443 * ArrayN-idx.h (freeze, all_ok, any_orig_empty, any_zero_len, |
|
1444 get_zero_len_size, all_colon_equiv): Inline. |
|
1445 (ArrayN<T>::index): Rename idx to arr_idx. |
|
1446 * ArrayN.cc (ArrayN<T>::index, ArrayN<T>::compute_index, |
|
1447 ArrayN<T>::get_size, ArrayN<T>::range_error, ArrayN<T>::range_error, |
|
1448 increment_index, ArrayN<T>::resize, ArrayN<T>::insert): Likewise. |
|
1449 |
|
1450 2001-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1451 |
|
1452 * lo-mappers.h, lo-mappers.cc (tan (const Complex&), |
|
1453 log10 (const Complex&)): Delete. |
|
1454 |
|
1455 * oct-cmplx.h: Define forwarding functions for real, imag, abs, |
|
1456 arg, norm, conj, polar, cos, cosh, exp, log, log10, pow, sin, |
|
1457 sinh, sqrt, tan, and tanh. |
|
1458 |
3769
|
1459 2001-01-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1460 |
|
1461 * file-ops.cc, help.cc, load-save.cc, pr-output.cc, utils.cc: |
|
1462 Add std:: namespace qualifier as needed. |
|
1463 |
|
1464 * mx-inlines.cc: Rename all functions with mx_inline_ prefix. |
|
1465 Change all uses to match. |
|
1466 |
3767
|
1467 2001-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1468 |
|
1469 * lo-cutils.c: Don't delcare strptime. |
|
1470 |
3760
|
1471 2001-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1472 |
|
1473 * CMatrix.cc (operator * (const ComplexMatrix&, const ComplexMatrix&): |
|
1474 Return correct size result for empty matrix case. |
|
1475 |
3757
|
1476 2000-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1477 |
|
1478 * lo-mappers.cc (xmin (const Complex&, const Complex& y): |
|
1479 If args are equal in magnitude, return first arg instead of |
|
1480 second. |
|
1481 |
3752
|
1482 2000-12-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1483 |
3755
|
1484 * Range.cc (Range::nelem_internal): Call tfloor, not round, but |
|
1485 then try harder to compute correct number of elements. |
3753
|
1486 |
3752
|
1487 * dMatrix.cc (Matrix::lssolve): Ask DGELSS for size of work vector. |
|
1488 * CMatrix.cc (ComplexMatrix::lssolve): Likewise, for ZGELSS. |
|
1489 |
3750
|
1490 2000-12-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1491 |
3751
|
1492 * Range.cc (Range::nelem_internal): Call round here, not tfloor. |
|
1493 Rename n_intervals to be n_elt. |
|
1494 |
3750
|
1495 * strptime.c: Surround everything after including config.h in |
|
1496 #ifndef HAVE_STRPTIME ... #endif. |
|
1497 |
3742
|
1498 2000-11-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1499 |
|
1500 * Array-idx.h (assign): When resizing, cast fill value to LT. |
|
1501 * Array2-idx.h (MAYBE_RESIZE_LHS): Likewise. |
|
1502 |
3741
|
1503 2000-11-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1504 |
|
1505 * MArray-defs.h: Protect against multiple inclusion. |
|
1506 |
3739
|
1507 2000-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1508 |
|
1509 * data-conv.h (enum save_type): Move LS_U_LONG and LS_LONG to the |
|
1510 end of the list, to be compatible with previous versions of Octave. |
|
1511 |
3736
|
1512 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
1513 |
|
1514 * oct-time.cc (DEFINE_SET_INT_FIELD_FCN): Don't check limits here, |
|
1515 since mktime is supposed to `normalize' the results for us. |
|
1516 |
3731
|
1517 2000-10-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
1518 |
|
1519 * Array2.cc (Array2<T>::transpose): Avoid copy for empty matrices |
3732
|
1520 and vectors. Use xelem for faster access to elements when copying. |
3731
|
1521 |
3726
|
1522 2000-10-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1523 |
|
1524 * CMatrix.cc (ComplexMatrix::cumsum, ComplexMatrix::cumprod): |
|
1525 Correct indexing for operation across rows. |
|
1526 * dMatrix.cc (Matrix::cumsum, Matrix::cumprod): Likewise. |
|
1527 |
3725
|
1528 2000-10-12 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
1529 |
|
1530 * Array2-idx.h (Array2<T>::index (idx_vector&)): Avoid copying |
|
1531 elements if arg is a colon. |
|
1532 |
3723
|
1533 2000-10-12 Cai Jianming <caijianming@yahoo.co.uk> |
|
1534 |
3795
|
1535 * dMatrix.cc (Matrix::cumprod (int) const): New arg, DIM. |
3723
|
1536 (Matrix::cumsum (int) const): Likewise. |
|
1537 (Matrix::prod (int) const): Likewise. |
|
1538 (Matrix::sum (int) const): Likewise. |
|
1539 (Matrix::sumsq (int) const): Likewise. |
|
1540 * CMatrix.cc (ComplexMatrix::cumprod (int dim) const): Likewise. |
|
1541 (ComplexMatrix::cumsum (int) const): Likewise. |
|
1542 (ComplexMatrix::prod (int) const): Likewise. |
|
1543 (ComplexMatrix::sum (int) const): Likewise. |
|
1544 (ComplexMatrix::sumsq (int) const): Likewise. |
|
1545 |
3722
|
1546 2000-10-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1547 |
|
1548 * Array2-idx.h (Array2<T>::index (idx_vector&)): Correctly set |
|
1549 size if Array<T>::index returns an empty array. |
|
1550 |
3710
|
1551 2000-08-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1552 |
|
1553 * file-ops.cc (file_ops::link, file_ops::symlink, |
|
1554 file_ops::readlink): New functions. |
|
1555 |
3709
|
1556 2000-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1557 |
|
1558 * Array2-idx.h (Array2<T>::index (idx_vector&)): If a scalar is |
|
1559 indexed, always return an object the same size as the index arg. |
|
1560 |
|
1561 * oct-time.cc (octave_base_tm::strftime): Return empty string for |
|
1562 empty format. |
|
1563 |
3706
|
1564 2000-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1565 |
|
1566 * lo-cutils.c (oct_strptime): New function. |
|
1567 * oct-time.cc (octave_strptime::init): Call it instead of strptime. |
|
1568 Don't declare strptime. Don't define _XOPEN_SOURCE or _BSD_SOURCE. |
|
1569 |
3702
|
1570 2000-07-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1571 |
3703
|
1572 * oct-time.cc: Comment out _BSD_SOURCE and _XOPEN_SOURCE definitions. |
|
1573 |
3702
|
1574 * Makefile.in (MATRIX_INC): Add ArrayN-idx.h to the list. |
|
1575 |
3689
|
1576 2000-06-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1577 |
|
1578 * dMatrix.h (read_int): Provide declaration. |
|
1579 |
3688
|
1580 2000-06-29 James R. Van Zandt <jrv@vanzandt.mv.com> |
|
1581 |
|
1582 * data-conv.cc (read_doubles): Handle EIGHT_BYTE_INT cases. |
|
1583 (write_doubles): Ditto. |
|
1584 * data-conv.h: Ditto. |
|
1585 (enum save_type): New values, LS_U_LONG and LS_LONG. |
|
1586 |
3685
|
1587 2000-06-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1588 |
|
1589 * boolMatrix.h: Declare MM_CMP_OPS here. |
|
1590 * boolMatrix.cc: Define them here. |
|
1591 |
3680
|
1592 2000-06-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1593 |
|
1594 * Array2-idx.h (assign): Allow x(bool) = RHS to succeed if x is |
|
1595 previously undefined and set size of x to size of bool index. |
|
1596 * idx-vector.cc (IDX_VEC_REP::maybe_convert_one_zero_to_idx): |
|
1597 Allow z_len to be zero. |
|
1598 (IDX_VEC_REP::freeze): If z_len is zero, set frozen_at_z_len to len. |
|
1599 If frozen, don't assert that frozen_at_z_len == z_len. |
|
1600 |
3670
|
1601 2000-05-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1602 |
|
1603 * oct-rl-edit.c (octave_rl_clear_screen): Call _rl_clear_screen |
|
1604 instead of rl_clear_screen. |
|
1605 |
3665
|
1606 2000-05-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1607 |
|
1608 * Array-d.cc: Instantiate ArrayN<double> here too. |
|
1609 * Array-idx-vec.cc, ArrayN-idx.h, ArrayN.cc, ArrayN.h: New files. |
|
1610 * Makefile.in: Add them to the appropriate lists. |
|
1611 |
3657
|
1612 2000-04-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1613 |
|
1614 * Array.cc (Array<T>::operator =): Don't set max_indices to 1 here. |
|
1615 |
3635
|
1616 2000-03-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1617 |
|
1618 * lo-sysdep.h: octave_chdir returns int, not bool. |
|
1619 |
3615
|
1620 2000-03-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1621 |
|
1622 * Makefile.in (liboctave.$(SHLEXT)): Delete target |
|
1623 before rebuilding. |
|
1624 |
|
1625 2000-03-21 Ben Sapp <bsapp@nua.lampf.lanl.gov>: |
|
1626 |
|
1627 * liboctave/Makefile.in (liboctave.$(LIBEXT)): New target. |
|
1628 (libraries): Depend only on library targets, not archive members. |
|
1629 |
3613
|
1630 2000-03-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1631 |
|
1632 * Makefile.in: (objects): New target. |
|
1633 |
|
1634 * lo-cutils.c: New file. |
|
1635 * Makefile.in (SOURCES): Add it to the list. |
|
1636 * lo-utils.h: Declare octave_qsort here. |
|
1637 * Array.h (Array::qsort): Use it here. |
|
1638 |
3607
|
1639 2000-03-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1640 |
|
1641 * oct-time.cc: Include <sys/types.h> and <unistd.h>, if available. |
|
1642 |
3598
|
1643 2000-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1644 |
|
1645 * oct-rl-hist.c (octave_history_list): Do something when not |
|
1646 printing line numbers. Fix reallocation of retval. |
|
1647 |
3597
|
1648 2000-02-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1649 |
|
1650 * Makefile.in (install-inc): Install files in |
|
1651 $(octincludedir)/octave. |
|
1652 (uninstall): Remove them from the correct directory too. |
|
1653 |
|
1654 * oct-time.cc: Temporarily define _BSD_SOURCE and _XOPEN_SOURCE if |
|
1655 they are not already defined. |
|
1656 |
3588
|
1657 2000-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1658 |
|
1659 * CRowVector.cc, CRowVector.h, CColVector.cc, CColVector.h: |
|
1660 Delete declarations and definitions of mixed-type vector-vector ops. |
|
1661 |
3585
|
1662 2000-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1663 |
|
1664 * CMatrix.h, CMatrix.cc: Add lssolve methods for real-valued RHS |
|
1665 matrix and vector objects. |
|
1666 |
|
1667 * mx-op-defs.h (DMM_BIN_OP): Explicitly request conversion to |
|
1668 return type from second arg type. |
|
1669 (MDM_BIN_OP): Likewise, for first arg type. |
|
1670 |
|
1671 * dMatrix.cc (Matrix::fourier, Matrix::ifourier, |
|
1672 Matrix::fourier2d, Matrix::ifourier2d): Likewise. |
|
1673 |
|
1674 * EIG.cc (EIG::symmetric_init, EIG::hermitian_init): Explicitly |
|
1675 request ColumnVector to ComplexColumnVector, and Matrix to |
|
1676 ComplexMatrix conversions. |
|
1677 |
|
1678 * CmplxAEPBAL.cc (ComplexAEPBALANCE::init): Give balancing_mat its |
|
1679 initial value using ComplexMatrix constructor. |
|
1680 |
|
1681 * CColVector.cc (product, quotient, |
|
1682 operator * (const DiagMatrix&, const ComplexColumnVetor&)): |
|
1683 Fix type of returned value. |
|
1684 * CDiagMatrix.cc (ComplexDiagMatrix::row, |
|
1685 ComplexDiagMatrix::column, ComplexDiagMatrix::inverse): Likewise. |
|
1686 |
|
1687 * Array.h, CColVector.h, CDiagMatrix.h, CMatrix.h, CRowVector.h, |
|
1688 MArray.h, MDiagArray2.h, dColVector.h, dDiagMatrix.h, dMatrix.h, |
|
1689 dRowVector.h: Declare some constructors explicit, to disallow |
|
1690 potentially problematic automatic type conversions. |
|
1691 |
3580
|
1692 2000-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1693 |
3582
|
1694 * vx-rv-crv.h, vx-cv-ccv.h, vx-crv-rv.h, vx-ccv-cv.h, |
|
1695 vx-rv-crv.cc, vx-cv-ccv.cc, vx-crv-rv.cc, vx-ccv-cv.cc: |
|
1696 More new files. |
|
1697 * Makefile.in: Add them to the appropriate lists. |
|
1698 |
|
1699 * vx-ccv-s.h, vx-crv-s.h, vx-cs-cv.h, vx-cs-rv.h, vx-cv-cs.h, |
|
1700 vx-rv-cs.h, vx-s-ccv.h, vx-s-crv.h, vx-ccv-s.cc, vx-crv-s.cc, |
|
1701 vx-cs-cv.cc, vx-cs-rv.cc, vx-cv-cs.cc, vx-rv-cs.cc, vx-s-ccv.cc, |
|
1702 vx-s-crv.cc:, New files. |
|
1703 * Makefile.in: Add them to the appropriate lists. |
|
1704 |
|
1705 * CRowVector.h, CRowVector.cc, CColVector.h, CColVector.cc: |
|
1706 Delete scalar by vector and vector by scalar binary ops. |
|
1707 |
3580
|
1708 * MArray-defs.h: More new macros to handle MDiagArray operators. |
|
1709 * dDiagMatrix.h, CDiagMatrix.h: Use the op-forwarding macros. |
|
1710 |
3573
|
1711 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1712 |
3578
|
1713 * oct-rl-edit.c (octave_rl_set_event_hook): Take address of |
|
1714 rl_event_hook before casting to void **. |
|
1715 (octave_rl_set_startup_hook): Likewise, for rl_startup_hook. |
|
1716 |
3574
|
1717 * MArray-defs.h: Many new macros to make declaration and |
|
1718 definition of operators more consistent. |
|
1719 |
|
1720 * MArray.h, MArray2.h, dColVector.h, dRowVector.h, CColVector.h, |
|
1721 CRowVector.h, dMatrix.h, CMatrix.h: Use them. |
3573
|
1722 |
3569
|
1723 2000-02-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1724 |
3572
|
1725 * dMatrix.cc (Matrix::ifourier): Cast divisor to double. |
|
1726 (Matrix::ifourier2d): Likewise. |
|
1727 * CMatrix.cc (ComplexMatrix::ifourier): Likewise. |
|
1728 (ComplexMatrix::ifourier2d): Likewise. |
|
1729 |
3569
|
1730 * Array.h (Array::ArrayRep::qsort): Cast len to size_t. |
|
1731 |
3504
|
1732 2000-02-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1733 |
3519
|
1734 * oct-rl-edit.c, oct-rl-edit.h: New files for interface to GNU |
|
1735 readline library. |
|
1736 * Makefile.in: Add them to the appropriate lists. |
|
1737 |
|
1738 * oct-rl-hist.c, oct-rl-hist.h: New files for interface to GNU |
|
1739 readline history library. |
|
1740 * Makefile.in: Add them to the appropriate lists. |
|
1741 |
3517
|
1742 * data-conv.cc (LS_DO_WRITE): Cast arg to ostream::write to char*. |
|
1743 (LS_DO_READ): Likewise, for istream::read. |
3518
|
1744 (write_doubles): Likewise. |
|
1745 (read_doubles): Likewise. |
3517
|
1746 |
3516
|
1747 * oct-env.cc (octave_env::do_polite_directory_format): |
|
1748 Use operator== and substr method to do limited-length string |
|
1749 comparison. |
|
1750 |
3513
|
1751 * Array2-idx.h, Array-idx.h: Avoid shadowing warnings for idx. |
3512
|
1752 |
3511
|
1753 * Quad.h: Use do_integrate as name of pure virtual function. |
|
1754 |
3508
|
1755 * base-de.h: Use tt instead of t as arg names. |
3511
|
1756 Add method with tcrit arg. |
|
1757 |
3509
|
1758 * DAE.h, DAE.cc: Likewise, also xx for x. |
3508
|
1759 |
3507
|
1760 * DASSL.cc (dassl_fcn_ptr, dassl_jac_ptr): New typedefs. |
|
1761 * LSODE.cc: lsode_fcn_ptr, lsode_jac_ptr): Ditto. |
|
1762 * Quad.cc (quad_fcn_ptr): Ditto. |
|
1763 * NLEqn.cc (hybrd1_fcn_ptr, hybrj1_fcn_ptr): Ditto. |
|
1764 |
3505
|
1765 * oct-getopt.h, oct-getopt.c: New files for interface to getopt. |
3519
|
1766 * Makefile.in: Add them to the appropriate lists. |
3505
|
1767 |
|
1768 * oct-kpse.h, oct-kpse.c: New files for interface to kpathsearch. |
3519
|
1769 * Makefile.in: Add them to the appropriate lists. |
3505
|
1770 |
3504
|
1771 * dMatrix.cc (write_int, read_int): No longer declared static. |
|
1772 |
|
1773 * CDiagMatrix.h: Delete decls for friend operators that are |
|
1774 handled by MDiagArray2 class. Move others outside class decl and |
|
1775 strip friend status. |
|
1776 * dDiagMatrix.h: Likewise. |
|
1777 |
|
1778 * MArray.h: Delete decls for friend operators inside class decl. |
|
1779 * MArray2.h: Ditto. |
|
1780 * MDiagArray2.h: Ditto. |
|
1781 |
|
1782 * MArray-defs.h (DO_VS_OP,, DO_SV_OP, DO_VV_OP, NEGV): Pass all |
|
1783 necessary parameters. Don't allocate memory in the macro. Change |
|
1784 all uses. |
|
1785 |
|
1786 * dMatrix.h (class Matrix): Delete `friend class' decls. |
|
1787 * CMatrix.h (class ComplexMatrix): Ditto. |
|
1788 |
|
1789 * mx-op-defs (MS_BOOL_OP, MS_BOOL_OPS, SM_BOOL_OP, SM_BOOL_OPS, |
|
1790 MM_BOOL_OP, MM_BOOL_OPS, MDM_MULTIPLY_OP, MDM_BIN_OPS, |
|
1791 DMM_MULTIPLY_OP, DMM_BIN_OPS): Pass zero constant as final arg, to |
|
1792 avoid type conflicts. Change all uses. |
|
1793 |
|
1794 * strptime.c (__mon_yday): Fix size of array decl. |
|
1795 |
|
1796 * mx-inlines.cc: Use `xnot' instead of `not' for function name. |
|
1797 |
|
1798 * chMatrix.cc (charMatrix::row_as_string): Delete extraneous |
|
1799 default value for second arg. |
|
1800 |
|
1801 * Array2.cc (Array2<T>::resize): Add Array<T>:: qulaifier to |
|
1802 references to ArrayRep. |
|
1803 |
3503
|
1804 2000-01-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1805 |
3504
|
1806 * Array.h (Array::ArrayRep): Now protected, not private. |
3503
|
1807 |
|
1808 * All source files: Include iostream, fstream, strstream, |
|
1809 etc. as needed instead of using forward declarations for these |
3504
|
1810 classes. Add std:: qualifier as needed. |
3503
|
1811 |
3498
|
1812 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1813 |
|
1814 * oct-time.cc: Declare strptime extern "C". |
|
1815 |
3496
|
1816 2000-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1817 |
|
1818 * oct-time.cc [! HAVE_STRPTIME]: Provide declaration. |
|
1819 |
3488
|
1820 2000-01-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1821 |
3492
|
1822 * Array2.h (Array2<T>::get_size): Now protected instead of private. |
|
1823 * Array3.h, Array3.cc: Use it in constructors and resize methods |
|
1824 to get total size to be allocated. |
|
1825 |
3488
|
1826 * DASSL.cc (DASSL::integrate): Declare do_restart and save_output |
|
1827 as bool, not int. |
|
1828 |
3482
|
1829 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1830 |
|
1831 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
1832 Allow A(idx) = RHS if idx is a boolean index with the same shape |
|
1833 as A, even when do_fortran_indexing is not enabled. |
|
1834 (Array2<T>::index (idx_vector& idx) const): Likewise, for A(idx). |
|
1835 |
3473
|
1836 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1837 |
3480
|
1838 * dMatrix.cc (Matrix::solve (...)): Add new variant with |
|
1839 function pointer as final arg. Passed function (if any) will be |
|
1840 called for singularity errors. |
|
1841 * CMatrix.cc (ComplexMatrix::solve (...)): Likewise. |
|
1842 |
|
1843 * dMatrix.cc (Matrix::pseudo_inverse): Use economy SVD. |
|
1844 * CMatrix.cc (ComplexMatrix::pseudo_inverse): Likewise. |
|
1845 |
3475
|
1846 * lo-ieee.cc (octave_ieee_init): Don't include sunmath.h. |
|
1847 No longer bother with infinity or quiet_nan. |
|
1848 |
3473
|
1849 * Array2.cc (Array2<T>::get_size): New function. |
|
1850 (Array2<T>::Array2, Array2<T>::resize): Use it. |
|
1851 |
3472
|
1852 2000-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1853 |
|
1854 * Array2-idx.h (Array2<T>::maybe_delete_elements (idx_vector&)): |
|
1855 New function. |
|
1856 (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
1857 Use it when indexing with one arg instead of faking a second one. |
|
1858 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): |
|
1859 Return empty matrices with the correct dimensions for A(:,:) = [] |
|
1860 and also A(:,idx) = [], and A(idx,:) = [] when idx enumerates all |
|
1861 rows or columns. |
|
1862 |
|
1863 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Recognize a bool |
|
1864 vector that is all true values with a length equal to n as colon |
|
1865 equivalent. |
|
1866 |
3470
|
1867 2000-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1868 |
|
1869 * strptime.c: Only include langinfo.h if _LIBC is defined. |
|
1870 |
|
1871 2000-01-21 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3468
|
1872 |
|
1873 * CMatrix.cc (ComplexMatrix::expm): Apply permutation and scaling |
|
1874 operations directly in step 2 and reverse step 2. |
|
1875 * dMatrix.cc (Matrix::expm): Apply permutation and scaling |
|
1876 operations directly in step 2 and reverse step 2. |
|
1877 |
3465
|
1878 2000-01-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1879 |
|
1880 * oct-time.h, oct-time.cc (octave_strptime): New class. |
|
1881 |
|
1882 * strptime.c: New file, from glibc 2.1.2. |
|
1883 * Makefile.in (SOURCES): Add strptime.c to the list. |
|
1884 |
3419
|
1885 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1886 |
|
1887 * MArray.h (MArray <const Array<T>&)): New constructor. |
|
1888 |
3415
|
1889 2000-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1890 |
|
1891 * pathsearch.cc (dir_path::all_directories): Avoid dereferencing |
|
1892 NULL directory list returned from kpse_element_dirs |
|
1893 |
3375
|
1894 1999-12-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1895 |
|
1896 * dbleLU.cc (LU::LU): Call DGETRF directly instead of calling DGESV. |
|
1897 * CmplxLU.cc (ComplexLU::ComplexLU): Likewise, call ZGETRF |
|
1898 directly, instead of calling ZGESV. |
|
1899 |
3358
|
1900 1999-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1901 |
|
1902 * data-conv.cc (init_sized_type_lookup_table): New function. |
|
1903 (string_to_data_type): Use it to improve lookup of data types. |
|
1904 |
3354
|
1905 1999-11-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1906 |
|
1907 * dMatrix.cc (is_symmetric): Move here from Array2.cc. |
|
1908 * Array2.h (is_symmetric): Delete declaration. |
|
1909 |
3347
|
1910 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1911 |
|
1912 * oct-env.cc (do_get_user_name): Reverse sense of test. |
|
1913 |
3344
|
1914 1999-11-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1915 |
|
1916 * oct-time.cc (Fstrftime): Undo previous change. |
|
1917 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
1918 |
3334
|
1919 1999-11-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1920 |
3336
|
1921 * dbleSVD.cc (SVD::init): Let DGESVD determine work space requirement. |
|
1922 * CmplxSVD.cc (ComplexSVD::init): Likewise, for complex version. |
|
1923 |
3334
|
1924 * dbleSCHUR.cc (SCHUR::init): IWORK is always referenced by dgeesx. |
|
1925 Don't forget to pass length of third string argument to dgeesx. |
|
1926 |
|
1927 * CmplxSCHUR.cc (ComplexSCHUR::init): Don't forget to pass length |
|
1928 of third string argument to zgeesx. |
|
1929 |
3333
|
1930 1999-11-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1931 |
|
1932 * DiagArray2.cc (DiagArray2<T>::operator () (int, int)): |
|
1933 On errors, simply return `T ()'. |
|
1934 (DiagArray2<T>::checkelem (int, int)): Likewise. |
|
1935 |
3331
|
1936 1999-11-02 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
|
1937 |
|
1938 * dMatrix.cc (Matrix::expm): Do balancing here instead of using |
|
1939 AEPBALANCE class. |
|
1940 * CMatrix.cc (ComplexMatrix::expm): Likewise. |
|
1941 |
3325
|
1942 1999-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1943 |
|
1944 * oct-shlib.cc, oct-shlib.h: New files. |
|
1945 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
1946 |
3322
|
1947 1999-10-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1948 |
|
1949 * CRowVector.cc (linspace): Allow npoints == 1 if x1 == x2. |
|
1950 * dRowVector.cc (linspace): Ditto. |
|
1951 |
|
1952 * oct-time.cc (Fstrftime): Don't save or delete tm_zone. |
|
1953 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
1954 |
3312
|
1955 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1956 |
|
1957 * DASSL.cc (DASSL::do_integrate (double)): If we have a function |
|
1958 to evaluate the Jacobian, set info(4), not iwork(4). |
|
1959 Set rwork(1) to the maximum step size, not rwork(2). |
|
1960 |
3290
|
1961 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1962 |
|
1963 * oct-time.cc: Include <climits>. |
|
1964 |
3281
|
1965 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1966 |
|
1967 * cmd-edit.h (command_editor::do_resize_terminal): New function. |
|
1968 * cmd-edit.cc (command_editor::resize_terminal): New function. |
|
1969 (gnu_readline::do_resize_terminal): New function. |
|
1970 |
3268
|
1971 Fri Sep 3 12:39:17 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1972 |
|
1973 * lo-mappers.cc: Include ieeefp.h and sunmath.h if we have them. |
|
1974 * lo-ieee.c: Likewise. |
|
1975 Delete extern "C" declarations for infinity and quiet_nan. |
|
1976 |
3262
|
1977 Fri Aug 20 07:58:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1978 |
3263
|
1979 * mx-inlines.cc (VS_OP, SV_OP, VV_OP): Delete `extern template' decls. |
|
1980 (VS_OP_FCN, SV_OP_FCN, VV_OP_FCN): Declare template functions |
|
1981 `inline', not `static inline'. |
|
1982 |
3262
|
1983 * idx-vector.cc (intcmp): Declare args as const void *, not int *, |
|
1984 then cast to const int * to compare. |
|
1985 |
3257
|
1986 Fri Jul 16 11:23:51 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1987 |
|
1988 * DAEFunc.h: Remove useless preprocessor conditional. |
|
1989 |
3255
|
1990 Thu Jul 15 14:10:33 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1991 |
3257
|
1992 * cmd-edit.cc (command_editor::do_decode_prompt_string): |
|
1993 Use octave_time object instead of time_t. |
|
1994 |
|
1995 * file-stat.h (file_stat::fs_atime, file_stat::fs_mtime, |
|
1996 file_stat::fs_ctime): Now octave_time objects. |
|
1997 (file_stat::atime, file_stat::mtime, file_stat::ctime): |
|
1998 Return octave_time objects. |
|
1999 (file_stat::is_newer): Args are now octave_time objects instead of |
|
2000 time_t. |
|
2001 |
3255
|
2002 * oct-time.h (octave_time::as_double): Delete. |
|
2003 (octave_time::operator double ()): New function. |
|
2004 (octave_time::operator time_t ()): New function. |
|
2005 (octave_time::ctime): New function. |
|
2006 (octave_base_tm::strftime): Renamed from format_as_string. |
|
2007 (octave_base_tm::asctime): New function. |
|
2008 (operator == (const octave_time&, const octave_time&), |
|
2009 operator != (const octave_time&, const octave_time&), |
|
2010 operator < (const octave_time&, const octave_time&), |
|
2011 operator <= (const octave_time&, const octave_time&), |
|
2012 operator > (const octave_time&, const octave_time&), |
|
2013 operator >= (const octave_time&, const octave_time&)): |
|
2014 New comparison functions. |
|
2015 |
|
2016 * strftime.c: Move here from src directory. |
|
2017 * Makefile.in (SOURCES): Add it to the list. |
|
2018 |
|
2019 * oct-time.h (octave_time::octave_time (time_t)): New constructor. |
|
2020 |
3253
|
2021 Wed Jul 14 17:38:07 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2022 |
|
2023 * oct-time.h, oct-time.cc: New files. |
|
2024 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
2025 |
|
2026 * systime.h: Move here from src directory. |
|
2027 * Makefile.in (INCLUDES): Add it to the list. |
|
2028 |
3248
|
2029 Mon Jul 12 22:34:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2030 |
|
2031 * mx-defs.h (b_d_Mapper, b_c_Mapper): New typedefs. |
|
2032 * dMatrix.cc (Matrix::map (b_d_Mapper)): New function. |
|
2033 * CMatrix.cc (ComplexMatrix::map (b_c_Mapper)): New function. |
|
2034 * lo-mappers.cc (xisinf, xisnan, xfinite): Return bool, not double. |
|
2035 |
|
2036 * lo-mappers.cc (xmin, xmax): New functions to correctly handle NaNs. |
|
2037 |
3243
|
2038 Mon May 10 07:45:11 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2039 |
|
2040 * MArray-defs.h (DO_VV_OP2): Fix macro definition to use arg. |
|
2041 |
|
2042 Wed May 5 20:06:10 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2043 |
|
2044 * Array2-idx.h (Array2<T>index (idx_vector& idx)): Always return a |
|
2045 column vector for A(:), for compatibility with Matlab. |
|
2046 |
|
2047 Fri Apr 23 11:52:23 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2048 |
|
2049 * LSODE.cc (LSODE::do_integrate (double)): Don't forget to set |
|
2050 iopt when there are optional inputs in rwork or iwork. |
|
2051 |
3238
|
2052 Fri Mar 26 11:26:32 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2053 |
|
2054 * Makefile.in (libraries): Use the libfoo.a(objects) method of |
|
2055 creating static libs. |
|
2056 |
|
2057 Thu Mar 4 02:17:04 1999 James Macnicol <jamesm@evans.ee.adfa.oz.au> |
|
2058 |
|
2059 * data-conv.cc (oct_data_conv::string_to_data_type): Handle uint16 |
|
2060 and uint32 data types. |
|
2061 |
|
2062 Thu Mar 4 01:51:37 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2063 |
|
2064 * lo-ieee.cc (octave_ieee_init): Don't use __alpha__-specific code |
|
2065 for Linux. Remove old Linux-specific code. |
|
2066 |
3233
|
2067 Tue Jan 19 09:34:55 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2068 |
|
2069 * dMatrix.cc (operator * (const ColumnVector& v, const RowVector& a)): |
|
2070 Don't require lengths to be equal. |
|
2071 * CMatrix.cc (operator * (const ComplexColumnVector& v, const |
|
2072 ComplexRowVector& a)): Likewise |
|
2073 |
3225
|
2074 Tue Nov 24 23:38:19 1998 Eric Norum <eric@skatter.USask.Ca> |
|
2075 |
|
2076 * statdefs.h: Only define mode_t if not already defined. |
|
2077 |
|
2078 Tue Nov 24 17:24:52 1998 john <john@arrows.demon.co.uk> |
|
2079 |
|
2080 * lo-specfun.cc (airy, biry): Set imaginary part of result to zero |
|
2081 when appropriate. |
|
2082 |
|
2083 Mon Nov 23 09:57:05 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2084 |
|
2085 * cmd-edit.cc (gnu_readline::gnu_readline): Set terminal name |
|
2086 before calling rl_initialize. |
|
2087 |
3220
|
2088 Tue Nov 17 23:47:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2089 |
|
2090 * lo-specfun.cc (besselh, airy, biry): New functions. |
|
2091 Update Bessel function support to use library by D. E. Amos. |
|
2092 |
3219
|
2093 Thu Nov 12 17:44:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2094 |
|
2095 * cmd-edit.h (command_editor::readline): Add new variation that |
|
2096 allows EOF information to be passed back to caller. |
|
2097 |
|
2098 * dMatrix.cc (Matrix::read): Do the right thing for EOF when |
|
2099 amount of data to read is unspecified. |
|
2100 |
3215
|
2101 Tue Nov 10 07:53:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2102 |
3219
|
2103 * oct-alloc.h (DECLARE_OCTAVE_ALLOCATOR): New macro. |
|
2104 (DEFINE_OCTAVE_ALLOCATOR): Ditto. |
|
2105 |
3215
|
2106 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, swap_8_bytes): |
|
2107 Add volatile qualifier to void* arg. |
|
2108 Cast volatile void* arg to volatile char*. |
|
2109 |
|
2110 Mon Nov 9 08:28:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2111 |
|
2112 * cmd-edit.h (command_editor::do_set_event_hook): New function. |
|
2113 (command_editor::do_restore_event_hook): Ditto. |
|
2114 * cmd-edit.cc (command_editor::set_event_hook): Ditto. |
|
2115 (command_editor::restore_event_hook): Ditto. |
|
2116 (gnu_readline::do_set_event_hook): Ditto. |
|
2117 (gnu_readline::do_restore_event_hook): Ditto. |
|
2118 (gnu_readline::previous_event_hook): New data member. |
|
2119 (gnu_readline::gnu_readline): Initialize previous_event_hook. |
|
2120 |
3206
|
2121 Mon Nov 2 13:36:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2122 |
|
2123 * Makefile.in (BINDISTLIBS): Don't include .$(SHLEXT_VER) in name. |
|
2124 |
|
2125 * Makefile.in (stmp-pic): New target. |
|
2126 ($(PICOBJ)): Depend on stmp-pic, not pic. |
|
2127 (clean): Remove stmp-pic |
|
2128 |
|
2129 * Makefile.in: Undo previous change to avoid optmization when |
|
2130 compiling lo-ieee.cc. |
|
2131 |
|
2132 Sun Nov 1 10:10:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2133 |
|
2134 * lo-mappers.cc (xfinite): Define in terms of xfinite for real and |
|
2135 imaginary parts. |
|
2136 (xisinf): Define in terms of xisinf for real and imaginary parts. |
|
2137 |
3203
|
2138 Thu Oct 29 18:57:50 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2139 |
|
2140 * boolMatrix.cc (boolMatrix::operator !): New function. |
|
2141 |
3196
|
2142 Fri Oct 23 21:46:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2143 |
|
2144 * pathsearch.h (dir_path::default_path): New data member. |
|
2145 * pathsearch.cc (dir_path::init): Use it. |
|
2146 |
|
2147 * Makefile.in: Avoid optmization when compiling lo-ieee.cc. |
|
2148 |
3189
|
2149 Fri Oct 16 01:08:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2150 |
|
2151 * chMatrix.cc (charMatrix::extract): New function. |
|
2152 (charMatrix::charMatrix (char c)): New constructor. |
|
2153 |
|
2154 Tue Oct 13 22:11:08 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2155 |
|
2156 * cmd-edit.h: (command_editor::do_read_init_file): New function. |
|
2157 * cmd-edit.cc (command_editor::read_init_file): New function. |
|
2158 (gnu_readline::do_read_init_file): Likewise. |
|
2159 |
3185
|
2160 Fri Sep 25 14:26:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2161 |
|
2162 * oct-env.cc (octave_env::do_get_home_directory): |
|
2163 If HOME can't be found, set it to "/". |
|
2164 (octave_env::do_get_user_name) |
|
2165 If user name can't be found, set it to "unknown". |
|
2166 (octave_env::do_get_host_name) |
|
2167 If host name can't be found, set it to "unknown". |
|
2168 |
|
2169 * pathsearch.h (dir_path::rehash): New function. |
|
2170 * pathsearch.cc (dir_path::init): Clear kpathsea's internal |
|
2171 diretcory cache before doing initialization. |
|
2172 |
3180
|
2173 Thu Sep 24 13:23:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2174 |
3185
|
2175 * dMatrix.cc (Qzval): Delete. |
|
2176 (qzhes, qzit, qzval): Delete F77_FCN declarations. |
|
2177 * dMatrix.h (Qzval): Delete declaration. |
|
2178 |
|
2179 * dbleGEPBAL.h, dbleGEPBAL.cc: Delete. |
|
2180 * Makefile.in (MATRIX_INC, MATRIX_SRC): Delete them from the lists. |
|
2181 * mx-ext.h: Don't include dbleGEPBAL. |
|
2182 |
3180
|
2183 * lo-ieee.cc (octave_ieee_init): For now, use X_CAST instead of |
|
2184 static_cast. |
|
2185 |
|
2186 Fri Sep 4 10:58:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2187 |
|
2188 * dMatrix.cc (Matrix::read): Skip after reading, not before. |
|
2189 From: Dr.-Ing. Torsten Finke <fi@igh-essen.com>. |
|
2190 |
|
2191 Wed Sep 2 09:50:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2192 |
|
2193 * lo-ieee.cc (octave_ieee_init): For Linux on arm, don't rely on |
|
2194 HUGE_VAL and NAN. |
|
2195 |
|
2196 Wed Aug 26 15:04:57 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2197 |
|
2198 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
2199 Handle x(i) = scalar for do_fortran_indexing == 1. |
|
2200 |
|
2201 Thu Jul 30 00:34:10 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2202 |
|
2203 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const charMatrix&)): |
|
2204 Alloctate space before attempting to use it. |
|
2205 (ComplexMatrix::ComplexMatrix (const boolMatrix&)): Likewise. |
|
2206 |
3178
|
2207 Mon Jun 22 17:04:27 1998 Tomislav Goles <tom@ait-tech.com> |
|
2208 |
|
2209 * EIG.cc (EIG::init): Move invariant code outside loop. |
|
2210 |
|
2211 Thu Jun 18 11:08:23 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2212 |
|
2213 * MArray2.cc (MARRAY_A2A2_OP): If operands are empty, make result |
|
2214 have the same size as the operands. |
|
2215 |
|
2216 Thu May 28 10:41:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2217 |
|
2218 * DASSL.cc (DASSL::do_integrate): If an exception occurs in the |
|
2219 call to ddassl, set integration_error to 1 before calling the |
|
2220 error handler and returning. |
|
2221 * LSODE.cc (LSODE::do_integrate): Likewise. |
|
2222 |
3177
|
2223 Wed May 27 13:46:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2224 |
|
2225 * Array2-idx.h (assign): Allow A([],[]) = scalar and, if |
|
2226 do_fortran_indexing is set, A([]) = scalar. |
|
2227 * Array-idx.h (assign): Allow A([]) = scalar. |
|
2228 |
3176
|
2229 Thu May 14 11:50:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2230 |
|
2231 * mx-op-defs.h (MDM_MULTIPLY_OP): Compute result if dm_nc > 0, not |
|
2232 if dm_nc == 0. |
|
2233 |
3174
|
2234 Thu Apr 23 16:15:37 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2235 |
|
2236 * pathsearch.h (dir_path::p_orig): New field. |
|
2237 * pathsearch.cc (dir_path::init): Perform variable and tilde |
|
2238 expansion on the original path here. |
|
2239 (dir_path::find_all): Don't do anything if not initialized. |
|
2240 |
3164
|
2241 Tue Apr 14 14:41:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2242 |
|
2243 * Array2-idx.h (index): Allow x(:) even when do_fortran_indexing |
|
2244 is not set. |
|
2245 (index): Allow x = zeros (2, 0); x(1,:) to work. |
|
2246 |
|
2247 * lo-specfun.cc (gammainc): Use dgamit to compute |
|
2248 (\int_0^x exp(-t) t^(a-1) dt)/gamma(a), not just |
|
2249 \int_0^x exp(-t) t^(a-1) dt. |
|
2250 |
|
2251 Wed Apr 8 22:50:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2252 |
|
2253 * Array-C.cc, Array-b.cc, Array-ch.cc, Array-i.cc, Array-d.cc, |
|
2254 Array-s.cc: Change return types of all `assign' explicit |
|
2255 instantiations to be int, not void, to match the template decl in |
|
2256 Array.h. |
|
2257 |
3162
|
2258 Mon Apr 6 00:27:06 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2259 |
|
2260 * lo-specfun.cc (gammainc): Reorder args in call to xdgami. |
|
2261 |
3156
|
2262 Thu Feb 19 01:16:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2263 |
|
2264 * lo-specfun.cc (xgamma, xlgamma): Define here. |
|
2265 * lo-mappers.cc: Not here. |
|
2266 |
|
2267 * lo-specfun.h: Declare xgamma and xlgamma here. |
|
2268 * lo-mappers.h: Not here. |
|
2269 |
|
2270 * lo-specfun.h: Never declare gamma or lgamma. |
|
2271 |
3154
|
2272 Tue Feb 10 16:14:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2273 |
|
2274 * Array-idx.h (assign): Allow A([]) = X to succeed if X is an |
|
2275 empty matrix of any dimension. |
|
2276 |
3145
|
2277 Thu Feb 5 02:12:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2278 |
3147
|
2279 * oct-syscalls.cc (octave_syscalls::vfork): New function. |
|
2280 |
3146
|
2281 * lo-specfun.cc: Don't include dbleBessel.h. |
|
2282 |
|
2283 * Makefile.in (INCLUDES): Delete oct-math.h from the list. |
|
2284 |
3145
|
2285 * dir-ops.h (dir_entry::operator bool ()): Return bool, not void*. |
|
2286 * file-stat.h (file_stat::operator bool ()): Likewise. |
|
2287 * idx-vector.h (idx_vector::operator bool ()): Likewise. |
|
2288 * oct-group.h (octave_group::operator bool ()): Likewise. |
|
2289 * oct-passwd.h (octave_passwd::operator bool ()): Likewise. |
|
2290 |
|
2291 * data-conv.cc (IEEE_little_double_to_IEEE_big_double): |
|
2292 Don't cast arg in call to swap_8_bytes. |
|
2293 (IEEE_big_double_to_IEEE_little_double): Ditto |
|
2294 (IEEE_big_float_to_IEEE_little_float): Don't cast arg in call to |
|
2295 swap_4_bytes. |
|
2296 (IEEE_little_float_to_IEEE_big_float): Ditto |
|
2297 |
|
2298 * oct-alloc.cc (grow): Use X_CAST, not static_cast. |
|
2299 * prog-args.cc (prog_args::getopt): Likewise. |
|
2300 * dMatrix.cc (read_int, do_read, write_int, do_write): Likewise. |
|
2301 * cmd-edit.cc (gnu_readline::do_set_completion_function): Likewise. |
|
2302 * data-conv.cc (LS_DO_READ, LS_DO_WRITE, read_doubles, write_doubles): |
|
2303 Likewise. |
|
2304 |
|
2305 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, |
|
2306 swap_8_bytes): Declare ptr arg as void*, then use cast. |
|
2307 |
3141
|
2308 Mon Feb 2 01:42:56 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2309 |
|
2310 * Makefile.in (install, uninstall): Use $(octlibdir), not $(libdir). |
|
2311 Use $(mk-libdir-link). |
|
2312 |
|
2313 * file-stat.cc (file_stat::update_internal): Use stat and lstat, |
|
2314 not SAFE_STAT and SAFE_LSTAT. |
|
2315 (lstat): New function, defined if HAVE_LSTAT is not defined. |
|
2316 * safe-xstat.hin, safe-xstat.cin: Delete. |
|
2317 * Makefile.in: Delete rules for safe-stat.h, safe-stat.c, |
|
2318 safe-lstat.h, and safe-lstat.cc. |
|
2319 |
3136
|
2320 Fri Jan 30 23:48:43 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2321 |
|
2322 * chMatrix.cc (charMatrix::all, charMatrix::any): New functions. |
|
2323 |
3130
|
2324 Tue Jan 20 16:30:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2325 |
|
2326 * dMatrix.cc (Matrix::expm): Skip trace normalization step if the |
|
2327 trace is negative. |
|
2328 * CMatrix.cc (ComplexMatrix::expm): Skip trace normalization if |
|
2329 the real part of the trace is negative. |
|
2330 |
|
2331 Mon Jan 19 16:01:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2332 |
|
2333 * dMatrix.cc (Matrix::expm): Call xdlange instead of dlange. |
|
2334 * CMatrix.cc (ComplexMatrix::expm): Call xzlange instead of zlange. |
|
2335 |
|
2336 * Array2-idx.h (assign): Allow operations like a = 1; a(2:3) = [1;2] |
|
2337 to succeed. |
|
2338 |
3125
|
2339 Thu Dec 18 14:53:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2340 |
|
2341 * idx-vector.cc (IDX_VEC_REP::sort): Don't do anything unless len > 1. |
|
2342 (make_uniq): Likewise. |
|
2343 |
|
2344 Fri Dec 12 10:58:33 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2345 |
|
2346 * lo-ieee.cc (octave_ieee_init): Check for linux before __alpha__. |
|
2347 |
3119
|
2348 Sun Nov 30 14:59:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2349 |
3121
|
2350 * lo-mappers.cc: Include cmath and lo-specfun.h, not oct-math.h. |
|
2351 |
|
2352 * lo-specfun.h, lo-specfun.cc: New files. |
3119
|
2353 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
2354 |
3121
|
2355 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c, |
|
2356 oct-math.h: Delete. |
|
2357 * Makefile.in (SOURCES): Delete them from the list. |
|
2358 |
3112
|
2359 Wed Nov 26 20:02:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2360 |
|
2361 * lo-sysdep.cc (octave_getcwd): Prefer getcwd over getwd. |
|
2362 |
3107
|
2363 Wed Nov 19 02:30:04 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
2364 |
|
2365 Changes to make support egcs snapshots that implement explicit |
|
2366 specification of template functions according to CD2. |
|
2367 |
|
2368 * MArray.h: If NEED_TEMPLATE_FCN_SPECS is defined, add explicit |
|
2369 template function specs for template friends. |
|
2370 * MArray2.h: Likewise. |
|
2371 * MDiagArray2.h: Likewise. |
|
2372 |
3095
|
2373 Thu Nov 13 21:57:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2374 |
|
2375 * CMatrix.cc (sumsq): Compute equivalent of sum (x .* conj (x)) |
|
2376 |
3092
|
2377 Thu Oct 2 17:13:02 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
2378 |
|
2379 * CRowVector.cc (linspace): Removed attempt for implicit conversion |
|
2380 to complex<double>(int) instead of complex<double>(double). |
|
2381 |
|
2382 * lo-mappers.cc (atanh): Ditto. |
|
2383 |
3079
|
2384 Thu Jul 31 22:13:54 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2385 |
|
2386 * idx-vector.cc (IDX_VEC_REP::sort): New function. |
|
2387 * idx-vector.h (idx_vector::sort): Ditto. |
|
2388 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use it before |
|
2389 trying to delete elements specified by the index vectors. |
|
2390 |
3075
|
2391 Fri Jul 25 17:31:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2392 |
|
2393 * dMatrix.cc (Matrix::lssolve): Increase lwork by factor of 16. |
|
2394 * CMatrix.cc (ComplexMatrix::lssolve): Ditto. |
|
2395 |
3074
|
2396 Thu Jul 24 14:32:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2397 |
|
2398 * file-ops.cc (tilde_expand_word): Fix off-by-one error. |
|
2399 |
3069
|
2400 Wed Jul 9 19:40:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2401 |
|
2402 * lo-sysdep.cc (octave_getcwd): If getwd is available, use it. |
|
2403 Call error handler if we can't find the current directory. |
|
2404 |
3068
|
2405 Mon Jul 7 21:14:41 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2406 |
3069
|
2407 * lo-mappers.cc (xisnan (double)): Return only 1 or 0. |
|
2408 (xfinite (double)): Ditto. |
|
2409 |
3068
|
2410 * dbleQR.cc (QR::init): Don't forget to initialize Q when type is raw. |
|
2411 * CmplxQR.cc (ComplexQR::init): Ditto. |
|
2412 |
3056
|
2413 Sun Jun 15 21:06:37 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2414 |
|
2415 * lo-mappers.cc (acos (const Complex&)): Select branch that is |
|
2416 compatible with Matlab. |
|
2417 |
3050
|
2418 Tue Jun 10 10:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2419 |
|
2420 * Array2-idx.h: Correctly handle empty matrices indexed by a |
|
2421 single colon. |
|
2422 |
3040
|
2423 Fri Jun 6 04:27:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2424 |
3049
|
2425 * lo-mappers.cc (xlgamma): Use F77_XFCN function to call dlgams. |
|
2426 (xgamma): Likewise, for calling xdgamma. |
|
2427 |
3042
|
2428 * FSQP.h, NPSOL.h, QPSOL.h, FSQP.cc, NPSOL.cc, QPSOL.cc: Delete |
|
2429 * Makefile.in (INCLUDES, SOURCES): Remove them from the lists. |
|
2430 |
3040
|
2431 * file-ops.cc (file_ops::tilde_expand): Steal more code from bash |
|
2432 to do better job expanding tildes. |
|
2433 |
|
2434 * str-vec.cc (string_vector::string_vector (const char * const *): |
|
2435 Use temporary variable to compute length. |
|
2436 |
3029
|
2437 Thu Jun 5 01:44:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2438 |
3034
|
2439 * Makefile.in: Make building of static library optional. |
3036
|
2440 (liboctave.$(SHLEXT_VER)): Add $(SONAME_FLAGS) to command. |
3034
|
2441 |
3029
|
2442 * Makefile.in (stamp-picdir): Delete. |
|
2443 (pic): New target. Don't worry so much about creating pic |
|
2444 directory only when it is really needed. |
|
2445 (stamp-interp): Delete. |
|
2446 (libraries): New target. Depend on shared library directly. |
|
2447 |
3024
|
2448 Wed Jun 4 00:08:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2449 |
|
2450 * pathsearch.h, pathsearch.cc (dir_pat::set_program_name): |
|
2451 New static function. |
|
2452 |
3012
|
2453 Mon Jun 2 12:44:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2454 |
|
2455 * lo-mappers.cc (fix): Use floor and ceil instead of casting to int. |
|
2456 |
3004
|
2457 Thu May 22 16:20:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2458 |
|
2459 * cmd-edit.h, cmd-edit.cc: Rename set_paren_string_delimiters to |
|
2460 set_basic_quote_characters, to match new version of readline. |
|
2461 |
|
2462 * cmd-edit.cc (do_restore_terminal_state): Call readline function |
|
2463 for restoring terminal state through rl_deprep_term_function, now |
|
2464 declared in readline.h |
|
2465 (rl_deprep_terminal): Delete declaration. |
|
2466 |
2993
|
2467 Wed May 21 16:30:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2468 |
|
2469 * Makefile.in (install-in): Use new mk-includedir-link macro. |
|
2470 (install-lib): Install in $octlibdir. Use new mk-libdir-link macro. |
|
2471 |
2968
|
2472 Thu May 15 11:46:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2473 |
|
2474 * cmd-edit.cc (command_editor::increment_current_command_number): |
|
2475 New static function. |
|
2476 |
2964
|
2477 Mon May 12 02:14:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2478 |
2966
|
2479 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Make it work when |
|
2480 the vector is not sorted. |
|
2481 |
2964
|
2482 * CMatrix.cc (ComplexMatrix::operator !): Return boolMatrix. |
|
2483 * dMatrix.cc (Matrix::operator !): Likewise |
|
2484 |
2941
|
2485 Wed May 7 21:14:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2486 |
|
2487 * oct-syscalls.h, oct-syscalls.cc: New files. |
|
2488 |
|
2489 * cmd-edit.h, cmd-edit.cc: Handle completion function. |
|
2490 |
|
2491 * str-vec.h, str-vec.cc (string_vector::uniq): New function. |
|
2492 |
2938
|
2493 Tue May 6 00:52:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2494 |
2941
|
2495 * Makefile.in (INCLUDES_FOR_INSTALL): New variable. |
|
2496 (install-inc): Use it. |
|
2497 |
2938
|
2498 * file-ops.h, file-ops.cc (tempnam): Add DIR and PREFIX args. |
|
2499 Handle errors and missing functions consistently. |
|
2500 |
|
2501 * oct-group.h, oct-group.cc: New files. |
|
2502 |
|
2503 * oct-passwd.cc: Handle errors and missing functions consistently. |
|
2504 |
|
2505 * str-vec.h, str-vec.cc (c_str_vec, delete_c_str_vec): New functions. |
|
2506 |
2934
|
2507 Mon May 5 17:53:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2508 |
|
2509 * file-ops.cc: (file_ops::tilde_expand): Use new octave_passwd class. |
|
2510 * oct-env.cc (octave_env::do_get_user_name): Likewise. |
|
2511 |
|
2512 * oct-passwd.h, oct-passwd.cc: New files. |
|
2513 |
2926
|
2514 Sun May 4 22:17:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2515 |
|
2516 * statdefs.h: Only include sys/types.h if HAVE_SYS_STAT_H is defined. |
|
2517 |
|
2518 * mach-info.h, mach-info.cc: Add missing const qualifiers. |
|
2519 (instance_ok ()): New function. |
|
2520 |
|
2521 * glob-match.h, glob-match.cc: Rename from oct-glob.h, oct-glob.cc. |
|
2522 |
|
2523 * cmd-hist.h, cmd-hist.cc: Make it work without GNU readline. |
|
2524 |
|
2525 * lo-utils.h, lo-utils.cc (strsave, octave_putenv): Move here from |
|
2526 src/utils.h and src/utils.cc. |
|
2527 (octave_fgets): New function, extracted from src/input.cc. |
|
2528 |
|
2529 * cmd-edit.h, cmd-edit.cc: New files. Provide wrapper class for |
|
2530 GNU readline, and allow Octave to work without GNU readline. |
|
2531 |
|
2532 * lo-sysdep.h, lo-sysdep.cc: New files for miscellaneous |
|
2533 system-dependent functions. |
|
2534 |
|
2535 * oct-env.h, oct-env.cc: New files for process environment stuff. |
|
2536 |
|
2537 * file-stat.h, file-stat.cc: New files. Extract file_stat class |
|
2538 from file-ops.h and file-ops.cc and move here. |
|
2539 |
|
2540 * file-ops.h, file-ops.cc: Wrap functions in struct. Move |
|
2541 tilde_expand functions here from src/dirfns.cc. |
|
2542 |
|
2543 Fri May 2 19:50:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2544 |
|
2545 * pathlen.h: New file, from ../src. |
|
2546 |
2917
|
2547 Tue Apr 29 04:39:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2548 |
|
2549 * Array2-idx.h (Array2<T>::maybe_delete_elements): Prevent |
|
2550 out-of-bounds indexing of the index array. |
|
2551 * Array-idx.h (Array<T>::maybe_delete_elements): Likewise. |
|
2552 |
2850
|
2553 Fri Mar 28 15:37:09 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2554 |
|
2555 * LSODE.h (x_step_limit): New field. |
|
2556 (LSODE_options::init): Initialize it. |
|
2557 (LSODE_options::copy): Copy it. |
|
2558 (LSODE_options::set_step_limit, LSODE_options::step_limit): |
|
2559 New functions. |
|
2560 (LSODE::working_too_hard): Delete. |
|
2561 * LSODE.cc (LSODE::do_integrate): Handle step limit. |
|
2562 |
2844
|
2563 Wed Mar 26 15:31:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2564 |
|
2565 * MArray-b.cc: Delete. |
|
2566 * Makefile.in: Delete it from the lists. |
|
2567 |
|
2568 * boolMatrix.h (class bboolMatrix): Derive from Array2, not |
|
2569 MArray2, since most of the numeric ops don't really make sense. |
|
2570 |
2829
|
2571 Tue Mar 25 17:37:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2572 |
2832
|
2573 * boolMatrix.cc (boolMatrix::all, boolMatrix::any): New functions. |
|
2574 |
|
2575 * dMatrix.cc (Matrix::all, Matrix::any): Return boolMatrix. |
|
2576 * CMatrix.cc (ComplexMatrix::all, ComplexMatrix::any): Likewise. |
|
2577 |
2830
|
2578 * idx-vector.h (idx_vector::idx_vector_rep::freeze, |
|
2579 idx_vector::freeze): Delete prefer_zero_one arg. |
|
2580 * Array-idx.h, Array2-idx.h: Change all callers. |
|
2581 |
|
2582 * Array-flags.h, Array-flags.cc (liboctave_pzo_flag): Delete. |
|
2583 |
2829
|
2584 * mx-op-defs.h: New file for operator definitions. |
|
2585 * mx-cdm-cm.h, mx-cdm-cs.h, mx-cdm-dm.h, mx-cdm-m.h, mx-cdm-s.h, |
|
2586 mx-cm-cdm.h, mx-cm-dm.h, mx-cm-m.h, mx-cm-s.h, mx-cs-cdm.h, |
|
2587 mx-cs-dm.h, mx-cs-m.h, mx-dm-cdm.h, mx-dm-cm.h, mx-dm-cs.h, |
|
2588 mx-dm-m.h, mx-dm-s.h, mx-m-cdm.h, mx-m-cm.h, mx-m-cs.h, mx-m-dm.h, |
|
2589 mx-s-cdm.h, mx-s-cm.h, mx-s-dm.h, mx-cdm-cm.cc, mx-cdm-cs.cc, |
|
2590 mx-cdm-dm.cc, mx-cdm-m.cc, mx-cdm-s.cc, mx-cm-cdm.cc, mx-cm-dm.cc, |
|
2591 mx-cm-m.cc, mx-cm-s.cc, mx-cs-cdm.cc, mx-cs-dm.cc, mx-cs-m.cc, |
|
2592 mx-dm-cdm.cc, mx-dm-cm.cc, mx-dm-cs.cc, mx-dm-m.cc, mx-dm-s.cc, |
|
2593 mx-m-cdm.cc, mx-m-cm.cc, mx-m-cs.cc, mx-m-dm.cc, mx-s-cdm.cc, |
|
2594 mx-s-cm.cc, mx-s-dm.cc: |
|
2595 New files for mixed-type operations. |
|
2596 * Makefiles.in: Add them to the appropriate lists. |
|
2597 |
|
2598 * mx-inlines.cc: Add bool by bool EQ ops. |
|
2599 |
|
2600 * idx-vector.h, idx-vector.cc: Add constructors for bool and |
|
2601 boolMatrix types. |
|
2602 (idx_vector::maybe_convert_one_zero_to_idx, |
|
2603 idx_vector::idx_vector_rep::maybe_convert_one_zero_to_idx): |
|
2604 Delete second arg, prefer_zero_one. Change all callers. |
|
2605 |
|
2606 * boolMatrix.h, boolMatrix.cc: New files. |
|
2607 * mx-base.h: Include boolMatrix.h here. |
|
2608 * mx-defs.h: Provide forward declaration for boolMatrix here. |
|
2609 |
|
2610 * chMatrix.h, chMatrix.cc: Delete unused junk. |
|
2611 |
|
2612 * dMatrix.h, CMatrix.h: Delete friend declarations for operator+, |
|
2613 operator-, operator*, product, and quotient functions. |
|
2614 Add constructor for boolMatrix type. |
|
2615 * dMatrix.cc, CMatrix.cc: Delete operator+, operator-, operator*, |
|
2616 product, and quotient functions. |
|
2617 |
|
2618 * CDiagMatrix.h: Delete friend declarations for operator+, |
|
2619 operator-, and product functions. |
|
2620 * CDiagMatrix.h: Delete operator+, operator-, and product functions. |
|
2621 |
|
2622 * Array-b.cc: Also instantiate 2d and 2d diagonal arrays. |
|
2623 |
2815
|
2624 Fri Mar 14 00:29:46 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2625 |
|
2626 * EIG.cc (EIG::hermitian_init (const ComplexMatrix&)): New function. |
|
2627 (EIG::init (const ComplexMatrix&)): Call it if arg is hermitian. |
|
2628 (EIG::symmetric_init (const Matrix&)): New function. |
|
2629 (EIG::init (const Matrix&)): Call it if arg is symmetric. |
|
2630 |
|
2631 * CMatrix.cc (ComplexMatrix::is_hermitian): New function. |
|
2632 |
|
2633 Thu Mar 13 17:04:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2634 |
|
2635 * Array2.cc (is_symmetric): New function. |
|
2636 * Array2.h (is_square): New function. |
|
2637 |
2811
|
2638 Wed Mar 12 16:59:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2639 |
|
2640 * Makefile.in (install-strip): New target. |
|
2641 |
2804
|
2642 Mon Mar 10 22:34:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2643 |
|
2644 * CmplxCHOL.cc, CmplxHESS.cc, CmplxLU.cc, CmplxQR.cc, |
|
2645 CmplxQRP.cc, CmplxSCHUR.cc, CmplxSVD.cc, EIG.cc, dbleCHOL.cc, |
|
2646 dbleHESS.cc, dbleLU.cc, dbleQR.cc, dbleQRP.cc, dbleSCHUR.cc, |
|
2647 dbleSVD.cc: Don't include mx-inlines.cc. |
|
2648 |
|
2649 * mx-inlines.cc: Abuse the preprocessor to eliminate lots of |
|
2650 duplicate code. |
|
2651 |
2800
|
2652 Sun Mar 9 03:44:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2653 |
2804
|
2654 * dbleQR.h (QR): Delete extra comma at end of list. |
|
2655 |
|
2656 * prog-args.cc (prog_args::getopt): Add missing const in cast. |
|
2657 |
|
2658 * dbleSVD.h (SVD::type): Delete extra comma at end of list. |
|
2659 |
|
2660 * idx-vector.h (idx_vector): Delete unnecessary idx_vector:: and |
|
2661 idx_vecotr_rep:: qualifiers. |
|
2662 |
|
2663 * Array.h (class Array): Delete unnecessary Array<T>:: qualifiers. |
|
2664 |
|
2665 * data-conv.h (save_type): Delete extra comma at end of list. |
|
2666 |
2800
|
2667 * CMatrix.cc, FEGrid.cc, Range.cc, dMatrix.cc, data-conv.cc, |
|
2668 dir-ops.cc, file-ops.h, idx-vector.cc, idx-vector.h, lo-ieee.cc, |
|
2669 lo-mappers.cc, oct-alloc.cc: Use `static_cast<T> (val)' instead of |
|
2670 old C-style `(T) val' casts. |
|
2671 |
2795
|
2672 Thu Mar 6 20:20:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2673 |
|
2674 * dMatrix.cc (operator >>): Return if an error occurs instead of |
|
2675 just breaking out of the innermost loop. |
|
2676 * CMatrix.cc (operator >>): Likewise. |
|
2677 |
2779
|
2678 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775
|
2679 |
|
2680 * Version 2.0.5 released. |
|
2681 |
2767
|
2682 Fri Feb 28 20:11:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2683 |
|
2684 * CmplxQR.cc (ComplexQR::init): New function. |
|
2685 (ComplexQR::ComplexQR): Use it. Use initializer list too. |
|
2686 * CmplxQRP.cc (ComplexQRP::init): New function. |
|
2687 Get sizes right in all cases. |
|
2688 (ComplexQR::ComplexQRP): Use it. Use initializer list too. |
|
2689 |
|
2690 * dbleQR.cc (QR::init): New function. |
|
2691 (QR::QR): Use it. Use initializer list too. |
|
2692 * dbleQRP.cc (QRP::init): New function. |
|
2693 Get sizes right in all cases. |
|
2694 (QR::QRP): Use it. Use initializer list too. |
|
2695 |
2759
|
2696 Wed Feb 26 15:46:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2697 |
|
2698 * mach-info.cc (oct_mach_info::string_to_float_format): |
|
2699 Recognize "vaxg", not "vax_g". |
|
2700 |
2713
|
2701 Fri Feb 21 16:07:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2702 |
2714
|
2703 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use correct |
|
2704 dimension in check for colon equivalent index. |
|
2705 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): A single-element |
|
2706 index whose value is 0 is also colon eqivalent for n == 1. |
|
2707 |
2713
|
2708 * lo-ieee.cc (octave_ieee_init): Reorder #ifdef stuff to put |
|
2709 system-specific tests first. |
|
2710 |
2709
|
2711 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702
|
2712 |
|
2713 * Version 2.0.4 released. |
|
2714 |
|
2715 Wed Feb 19 09:42:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2716 |
|
2717 * lo-ieee.cc: D'oh, it's `extern "C"', not `#extern "C"'. |
|
2718 |
2693
|
2719 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690
|
2720 |
|
2721 * Version 2.0.3 released. |
|
2722 |
2686
|
2723 Fri Feb 14 16:23:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2724 |
|
2725 * Makefile.in (bin-dist): Don't write empty strings to LIBRARIES. |
|
2726 |
2673
|
2727 Thu Feb 13 14:35:19 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2728 |
2676
|
2729 * Makefile.in (stamp-prereq): Depend on stamp-picdir. |
|
2730 (all): Don't depend on stamp-prereq or stamp-picdir. |
|
2731 (liboctave.a, stamp-shared): Do depend on stamp-prereq. |
|
2732 (stamp-picdir): Silence noise about making pic. |
|
2733 (stamp-shared): Use $(SH_LD) $(SH_LDFLAGS) instead of $(CXX) -shared. |
|
2734 |
2673
|
2735 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
2736 Fix typo in last change. |
|
2737 |
|
2738 * CColVector.cc (ComplexColumnVector::map (d_c_mapper)): |
|
2739 Convert from friend (moved from dColVector.cc). |
|
2740 * CMatrix.cc (ComplexMatrix::map (d_c_mapper)): |
|
2741 Likewise (moved from dMatrix.cc). |
|
2742 * CRowVector.cc (ComplexRowVector::map (d_c_mapper)): |
|
2743 Likewise (moved from dRowVector.cc). |
|
2744 |
|
2745 * dColVector.cc (ColumnVector::map (d_d_mapper)): Convert from friend. |
|
2746 * dMatrix.cc (Matrix::map (d_d_mapper)): Likewise. |
|
2747 * dRowVector.cc (RowVector::map (d_d_mapper)): Likewise. |
|
2748 * CColVector.cc (ComplexColumnVector::map (c_c_mapper)): Likewise. |
|
2749 * CMatrix.cc (ComplexMatrix::map (c_c_mapper)): Likewise. |
|
2750 * CRowVector.cc (ComplexRowVector::map (c_c_mapper)): Likewise. |
|
2751 |
|
2752 * dColVector.cc (ColumnVector::apply): Rename from map, return *this. |
|
2753 * dMatrix.cc (Matrix::apply): Likewise. |
|
2754 * dRowVector.cc (RowVector::apply): Likewise. |
|
2755 * CColVector.cc (ComplexColumnVector::apply): Likewise. |
|
2756 * CMatrix.cc (ComplexMatrix::apply): Likewise. |
|
2757 * CRowVector.cc (ComplexRowVector::apply): Likewise. |
|
2758 |
2668
|
2759 Tue Feb 11 19:44:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2760 |
|
2761 * lo-ieee.cc: Declare quiet_nan() and infinity(). |
|
2762 |
|
2763 Mon Feb 10 01:17:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2764 |
|
2765 * file-ops.cc (oct_unlink (const string&, string&)): |
|
2766 New two-arg version. |
|
2767 (oct_rmdir (const string&, string&)): New two-arg version. |
|
2768 (oct_mkdir (const string&, mode_t, string&)): New three-arg version. |
|
2769 (oct_mkfifo (const string&, mode_t, string&)): New three-arg version. |
|
2770 (oct_rename (const string&, const string&, string&)): |
|
2771 New three-arg version. |
|
2772 |
2663
|
2773 Fri Feb 7 13:15:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2774 |
|
2775 * idx-vector.h (idx_vector::orig_empty): New function. |
|
2776 |
|
2777 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
2778 Don't always resize to [](0x0) if one of the indices is empty or |
|
2779 zero. |
|
2780 |
2658
|
2781 Sun Feb 2 22:33:44 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2782 |
|
2783 * cmd-hist.cc (command_history::read): New arg, must_exist. |
|
2784 Set line_in_file here too. |
|
2785 (command_history::read_range): New arg, must_exist. |
|
2786 |
2651
|
2787 Fri Jan 31 09:21:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2788 |
|
2789 * f2c-main.c: Change C++-style comments to C-style comments. |
|
2790 |
2638
|
2791 Tue Jan 28 10:46:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2792 |
|
2793 * Makefile.in (install-inc): Create a relative symbolic link. |
|
2794 |
2634
|
2795 Mon Jan 27 15:52:27 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2796 |
|
2797 * Version 2.0.2 released. |
|
2798 |
2624
|
2799 Sat Jan 25 22:36:21 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2800 |
|
2801 * Makefile.in (bin-dist): New target. |
|
2802 |
2621
|
2803 Wed Jan 22 16:18:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2804 |
|
2805 * dbleSVD.cc (SVD::init): Work around apparent dgesvd() bug. |
|
2806 * CmplxSVD.cc (ComplexSVD::init): Work around apparent zgesvd() bug. |
|
2807 |
2613
|
2808 Mon Jan 20 18:44:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2809 |
|
2810 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
2811 If the number of columns is zero, also set the number of rows to zero. |
|
2812 (charMatrix::charMatrix (const char *)): Likewise. |
|
2813 |
2602
|
2814 Tue Jan 7 00:16:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2815 |
|
2816 * Version 2.0.1 released. |
|
2817 |
2601
|
2818 Sun Jan 5 12:07:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2819 |
|
2820 * dMatrix.cc (Matrix::read): Correctly compute the number of |
|
2821 columns for resizing when the number of rows is specified but the |
|
2822 number of columns is not. |
|
2823 |
2598
|
2824 Wed Dec 18 16:18:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2825 |
2599
|
2826 * Range.cc (operator -): New function. |
|
2827 |
2598
|
2828 * lo-ieee.cc: Include <nan.h> on all systems that have it. |
|
2829 |
2589
|
2830 Fri Dec 13 02:01:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2831 |
|
2832 * Array2-idx.h (assign): Delay resizing left hand side until we |
|
2833 know if the assignment conforms. |
|
2834 |
2583
|
2835 Tue Dec 10 01:43:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2836 |
|
2837 * Version 2.0 released. |
|
2838 |
2570
|
2839 Fri Dec 6 14:41:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2840 |
2575
|
2841 * Array2-idx.h (assign): If index is a colon, set number of |
|
2842 elements to the lhs dimension if the lhs dimension is greater than |
|
2843 zero. Otherwise, set it to the rhs dimension. |
|
2844 |
|
2845 * Version 1.94. |
|
2846 |
2570
|
2847 * Array2-idx.h (assign): Test for rhs scalar case first. |
|
2848 If index is colon, set number of elements to lhs dimension, not |
|
2849 rhs dimension. |
|
2850 |
2563
|
2851 Thu Dec 5 13:05:18 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2852 |
2566
|
2853 * sun-utils.h: Don't declare MAIN_ or MAIN__ here. |
|
2854 * sun-utils.cc: Delete. |
|
2855 * f2c-main.c: New file |
|
2856 |
|
2857 * Makefile.in: Fix file name lists. |
|
2858 |
2563
|
2859 * CMatrix.cc (lssolve): Don't redeclare retval, resize it. |
|
2860 |
2561
|
2861 Wed Dec 4 12:24:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2862 |
|
2863 * dMatrix.cc (Qzval): Don't try to use same memory three times. |
|
2864 Create result using Complex constructor, not multiplication. |
|
2865 Order elements as they are returned from Eispack. |
|
2866 |
2559
|
2867 Mon Dec 2 00:26:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2868 |
2560
|
2869 * lo-ieee.cc (octave_ieee_init): Kluge for octave_Inf on SCO. |
|
2870 Only include nan.h if SCO is defined. Define _IEEE before |
|
2871 including it and undefine it afterward. |
|
2872 [SCO] (isnan): Don't mistake Inf as NaN. |
|
2873 |
2559
|
2874 * Array-idx.h (assign): Only resize if assignment conforms. |
|
2875 |
2551
|
2876 Wed Nov 20 01:00:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2877 |
|
2878 * Makefile.in (INCLUDES): Delete lo-error.h. |
|
2879 * lo-error.h: Delete (moved to libcruft/misc). |
|
2880 |
|
2881 * Version 1.93. |
|
2882 |
2546
|
2883 Tue Nov 19 23:07:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2884 |
2549
|
2885 * oct-glob.cc (glob_match::match): Don't expect our flag values to |
|
2886 be the same as they are in fnmatch.h. |
|
2887 |
2546
|
2888 * f77-fcn.c, f77-fcn.h: Move to libcruft/misc directory. |
|
2889 |
|
2890 * Makefile.in (INCLUDES): Delete f77-fcn.h. |
|
2891 (SOURCES): Delete f77-fcn.c. |
|
2892 |
2522
|
2893 Fri Nov 15 13:47:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2894 |
|
2895 * lo-ieee.h: [SCO]: Declare isinf and isnan. |
|
2896 |
2512
|
2897 Thu Nov 14 00:06:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2898 |
|
2899 * Version 1.92. |
|
2900 |
2508
|
2901 Wed Nov 13 11:19:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2902 |
2512
|
2903 * cmd-hist.cc (command_history::add): Ignore empty input lines, or |
|
2904 lines that have only carriage return or newline. |
|
2905 |
2508
|
2906 * lo-ieee.cc (isnan, isinf): Provide functions for SCO. |
|
2907 |
2500
|
2908 Tue Nov 12 11:11:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2909 |
|
2910 * idx-vector.cc (idx_is_inf_or_nan): New function. |
|
2911 (IDX_VEC_REP::idx_vector_rep): Use it. |
|
2912 |
2493
|
2913 Sun Nov 10 17:09:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2914 |
|
2915 * str-vec.h, str-vec.cc: Add constructors to make string vectors |
|
2916 from vectors of C strings. |
|
2917 |
|
2918 * oct-glob.h, oct-glob.cc (glob_match): Allow pat to be a string |
|
2919 vector. |
|
2920 (glob_match::match): Allow match string to be a string vector. |
|
2921 (glob_match::glob): New function. |
|
2922 |
|
2923 * chMatrix.cc (charMatrix::row_as_string): New arg, strip_ws. |
|
2924 |
|
2925 * Array-b.cc: New file. |
|
2926 * Makefile.in (TI_SRC): Add it to the list. |
|
2927 |
2492
|
2928 Fri Nov 8 18:09:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2929 |
|
2930 * file-ops.cc: Change #include "" to #include <> for safe-lstat.h |
|
2931 and safe-stat.h, to avoid getting them from $srcdir when we really |
|
2932 want the version from the build directory. (Maybe this should be |
|
2933 done for all the include files, not just those that are |
|
2934 auto-generated? Hmm.) |
|
2935 |
2481
|
2936 Thu Nov 7 10:45:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2937 |
2482
|
2938 * Version 1.91. |
|
2939 |
2481
|
2940 * Array3.cc (Array3<T>::resize): Make it work. |
|
2941 |
|
2942 Wed Nov 6 22:44:33 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2943 |
|
2944 * oct-alloc.h, oct-alloc.cc: New files. |
|
2945 * Makefile.in: Add them to the lists. |
|
2946 |
|
2947 Mon Nov 4 21:49:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2948 |
|
2949 * dbleQRP.cc (QRP::QRP): Don't pass tmp data to unsafe constructor. |
|
2950 * CmplxQRP.cc (ComplexQRP::ComplexQRP): Ditto. |
|
2951 |
2466
|
2952 Sun Nov 3 15:45:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2953 |
|
2954 * file-ops.cc (file_stat::is_blk, file_stat::is_chr, |
|
2955 file_stat::is_dir, file_stat::is_fifo, file_stat::is_lnk, |
|
2956 file_stat::is_reg, file_stat::is_sock): Just return false if the |
|
2957 underlying macro is not defined. |
|
2958 |
|
2959 * oct-math.h (lgamma, gamma): Delete declarations. |
|
2960 (asinh, acosh, atanh, erf, erfc): Declare arg types too. |
|
2961 Protect declarations with #ifdef HAVE_*. |
|
2962 |
2440
|
2963 Wed Oct 30 11:42:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2964 |
2452
|
2965 * Version 1.90. |
|
2966 |
|
2967 * Makefile.in (DISTFILES): Add ChangeLog. |
|
2968 |
2444
|
2969 * cmd-hist.cc: Only include fcntl.h if HAVE_FCNTL_H. |
|
2970 |
|
2971 * Matrix-ext.cc: Include <cfloat>, not <float.h>. |
|
2972 |
2443
|
2973 * CMatrix.cc, cmd-hist.cc, file-ops.cc, file-ops.h, filemode.c, |
2444
|
2974 mkdir.c, rename.c, rmdir.c, safe-xstat.cin, statdefs.h, sysdir.h, |
|
2975 tempname.c, utils.cc: Only include sys/types.h if HAVE_SYS_TYPES_H. |
2443
|
2976 |
2440
|
2977 * Array3.h (T Array3<T>::checkelem): Return T() for bogus value, |
|
2978 since that is now accepatble syntax, even for built-in types. |
|
2979 * Array2.h (T Array2<T>::checkelem): Likewise |
|
2980 |
2433
|
2981 Sat Oct 26 23:37:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2982 |
|
2983 * file-ops.cc (mkfifo) [! HAVE_MKFIFO]: Just print an error |
|
2984 message and return -1. |
|
2985 |
2428
|
2986 Fri Oct 25 01:24:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2987 |
2431
|
2988 * str-vec.h (str_vec_compare): Declare args as const void *, then |
|
2989 cast them to const string * in the body of the function. |
|
2990 |
|
2991 * file-ops.cc (file_stat::mode_as_string): Explicitly construct |
|
2992 string from buf. |
|
2993 |
2428
|
2994 * Array3.h (Array3::checkelem): Tag bogus return value with |
|
2995 GCC_ATTRIBUTE_UNUSED. |
|
2996 * Array2.h (Array2::checkelem): Likewise. |
|
2997 |
2424
|
2998 Thu Oct 24 19:40:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2999 |
|
3000 * Quad.h (Quad): Define virtual destructor. |
|
3001 |
2408
|
3002 Tue Oct 15 11:34:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3003 |
|
3004 * CMatrix.cc (ComplexMatrix::all_elements_are_real): new function. |
|
3005 |
2401
|
3006 Sun Oct 13 11:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3007 |
|
3008 * sun-utils.h: Conditionally declare MAIN__ too. Declare MAIN_ |
|
3009 and MAIN__ extern "C". |
|
3010 * sun-utils.cc: Include sun-utils.h here. Delete extern "C" stuff. |
|
3011 |
2391
|
3012 Sat Oct 12 12:40:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3013 |
|
3014 * MArray-misc.cc: New file. |
|
3015 * Makefile.in (MATRIX_SRC): Add it to the list. |
|
3016 |
|
3017 * mx-inlines.cc (equal): Return bool, not int. |
|
3018 |
|
3019 * idx-vector.h (idx_vector (double)): New constructor. |
|
3020 |
|
3021 * chMatrix.h, chMatrix.cc, CMatrix.h, CMatrix.cc, dMatrix.h, |
|
3022 dMatrix.cc, dDiagMatrix.h, dDiagMatrix.cc, dRowVector.h, |
|
3023 dRowVector.cc, dColVector.h, dColVector.cc, CColVector.h, |
|
3024 CColVector.cc, CDiagMatrix.h, CDiagMatrix.cc, CRowVector.h, |
|
3025 CRowVector.cc: Logical operators return bool, not int. |
|
3026 |
|
3027 * CMatrix.h, CMatrix.cc (ComplexMatrix::any_element_is_inf_or_nan): |
|
3028 New function. |
|
3029 |
|
3030 * dMatrix.h, dMatrix.cc (Matrix::any_element_is_negative, |
|
3031 Matrix::any_element_is_inf_or_nan, Matrix::abs, |
|
3032 Matrix::all_elements_are_inf_or_nan): New functions. |
|
3033 |
|
3034 * Range.h, Range.cc (Range::all_elements_are_ints): New function. |
|
3035 |
|
3036 * MArray.cc, MArray2.cc, MDiagArray2.cc: Call gripe_nonconformant |
|
3037 for errors. Simplify macros by converting FCN to string for error |
|
3038 messages. |
|
3039 |
|
3040 * Array-idx.h (Array<T>::index): New function. Don't call |
|
3041 clear_index() here. |
|
3042 (Array<T>::value): Call it, do call clear_index() here. |
|
3043 * Array2-idx.h (Array<T>::value, Array<T>::index): Likewise, for |
|
3044 one and two arg index functions. |
|
3045 |
|
3046 Tue Sep 17 21:21:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3047 |
|
3048 * DAEFunc.h: Delete #pragma interface since there is no longer a |
|
3049 separate implementation file. |
|
3050 |
2354
|
3051 Tue Aug 20 17:38:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3052 |
2358
|
3053 * Makefile.in (stamp-picdir): Only create a pic subdirectory if |
|
3054 SHARED_LIBS is true AND CPICFLAG or CXXPICFLAG is not empty. |
|
3055 |
2356
|
3056 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Rename arg sort to |
|
3057 sort_uniq. If sort_uniq is nonzero, sort the elements and make |
|
3058 them uniq. |
|
3059 |
2354
|
3060 * CMatrix.cc (ComplexMatrix::row_max, ComplexMatrix::row_min, |
|
3061 ComplexMatrix::column_max, ComplexMatrix::column_min): |
|
3062 Rewrite. Also return index as a reference arg. |
|
3063 (ComplexMatrix::row_max_loc, ComplexMatrix::row_min_loc, |
|
3064 ComplexMatrix::column_max_loc, ComplexMatrix::column_min_loc): |
|
3065 Delete. |
|
3066 |
|
3067 * dMatrix.cc (Matrix::row_max, Matrix::row_min, |
|
3068 Matrix::column_max, Matrix::column_min): |
|
3069 Rewrite. Also return index as a reference arg. |
|
3070 (Matrix::row_max_loc, Matrix::row_min_loc, |
|
3071 Matrix::column_max_loc, Matrix::column_min_loc): Delete. |
|
3072 |
|
3073 Fri Aug 9 05:01:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3074 |
|
3075 * dMatrix.cc (Matrix::row_min, Matrix::row_min_loc, |
|
3076 Matrix::row_max, Matrix::row_max_loc, Matrix::column_min, |
|
3077 Matrix::column_min_loc, Matrix::column_max, |
|
3078 Matrix::column_max_loc): Ignore leading NaNs. |
|
3079 * CMatrix.cc (ComplexMatrix::row_min, ComplexMatrix::row_min_loc, |
|
3080 ComplexMatrix::row_max, ComplexMatrix::row_max_loc, |
|
3081 ComplexMatrix::column_min, ComplexMatrix::column_min_loc, |
|
3082 ComplexMatrix::column_max, ComplexMatrix::column_max_loc): Ignore |
|
3083 leading NaNs. |
|
3084 |
2352
|
3085 Thu Aug 8 16:04:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3086 |
|
3087 * QPSOL.cc (QPSOL::do_minimize): Insert linear constraint bounds |
|
3088 starting at n, not 0. |
|
3089 |
2349
|
3090 Sat Jul 27 02:54:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3091 |
|
3092 * dMatrix.cc (Matrix::Matrix (const RowVector&), |
|
3093 Matrix::Matrix (const ColumnVector&)): New constructors. |
|
3094 |
|
3095 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const RowVector&), |
|
3096 ComplexMatrix::ComplexMatrix (const ColumnVector&), |
|
3097 ComplexMatrix::ComplexMatrix (const ComplexRowVector&), |
|
3098 ComplexMatrix::ComplexMatrix (const ComplexColumnVector&)): |
|
3099 New constructors. |
|
3100 |
|
3101 * chMatrix.cc (charMatrix::charMatrix (const string_vector&)): |
|
3102 New constructor. |
|
3103 |
2343
|
3104 Wed Jul 24 16:39:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3105 |
|
3106 * LSODE.cc (do_integrate): Check to make sure that the state and |
|
3107 derivative vectors are the same size. |
2344
|
3108 * DASSL.cc (do_integrate): Likewise. |
2343
|
3109 |
2330
|
3110 Sun Jul 14 17:30:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3111 |
|
3112 * dMatrix.cc (Matrix::read, Matrix::write): Convert to use |
|
3113 iostreams and handler data format conversions. Delete old methods |
|
3114 that used stdio. |
|
3115 |
|
3116 * data-conv.h, data-conv.cc (oct_data_conv): New class. |
|
3117 |
|
3118 Fri Jul 12 13:52:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3119 |
|
3120 * mach-info.h: Rename from float-fmt.h. |
|
3121 * mach-info.cc: Rename from float-fmt.cc. |
|
3122 Handle machine information using a singlton class. |
|
3123 * Makefile.in: Update appropriate lists. |
|
3124 |
|
3125 Tue Jul 9 11:49:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3126 |
|
3127 * Array-flags.cc: Provide definitions for the flags even if |
|
3128 OCTAVE_SOURCE is not defined. |
|
3129 |
|
3130 * Array.h, Array2.h, Array3.h: BOUNDS_CHECKING now affects |
|
3131 operator(), not elem(). |
|
3132 * Array3.h: Move indexing methods here from Array3.cc. |
|
3133 |
|
3134 Mon Jun 24 02:30:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3135 |
|
3136 * Array3.cc (checkelem): Fix typo in call to Array2<T>::elem(). |
|
3137 |
|
3138 * Makefile.in (install-lib): Use INSTALL_PROGRAM instead of |
|
3139 INSTALL_DATA for shared libs. |
|
3140 |
|
3141 Thu Jun 6 09:59:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3142 |
|
3143 * Quad.cc: Include lo-error.h here too. |
|
3144 |
|
3145 Mon May 27 12:41:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3146 |
|
3147 * file-ops.h: Include sys/types.h here. |
|
3148 |
|
3149 Wed May 22 00:20:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3150 |
|
3151 * chMatrix.cc (charMatrix::transpose): Provide definition. |
|
3152 |
|
3153 * Array-idx.h (maybe_delete_elements): Correctly compute number of |
|
3154 elements in result. |
|
3155 * Array2-idx.h (maybe_delete_elements): Likewise for number of |
|
3156 rows and columns in result. |
|
3157 |
|
3158 Tue May 21 23:46:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3159 |
|
3160 * dbleQR.cc (QR::QR): Don't create result from to-be-deleted data. |
|
3161 * CmplxQR.cc (ComplexQR::ComplexQR): Likewise. |
|
3162 |
|
3163 Fri May 17 03:06:02 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3164 |
|
3165 * Makefile.in (install-inc): Install in octincludedir, not includedir. |
|
3166 |
|
3167 Sun May 12 03:40:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3168 |
|
3169 * Makefile.in (uninstall): Also delete shared library. |
|
3170 Split install into install-libs and install-includes. |
|
3171 (install-inc): If linkdir is a directory, leave it alone. |
|
3172 |
|
3173 * sun-utils.cc (MAIN__): Define for Linux/ELF systems. |
|
3174 |
|
3175 Thu May 2 20:19:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3176 |
|
3177 * Array-idx.h (assign): Handle A(:) = X for A undefined or empty. |
|
3178 * Array2-idx.h (assign): Likewise. |
|
3179 |
|
3180 Tue Apr 30 05:43:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3181 |
|
3182 * Array2.cc (Array2<T>::range_error): New functions. |
|
3183 |
|
3184 * Array.h (class Array<T>): elem() and operator() are now |
|
3185 equivalent, and do bounds checking by default. |
|
3186 * Array2.cc (class Array2<T>): Likewise. |
|
3187 |
|
3188 Sat Apr 6 21:26:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3189 |
|
3190 * Makefile.in (maintainer-clean, distclean): Also delete |
|
3191 stamp-picdir, stamp-shared, and pic directory. |
|
3192 (stamp-prereq): New target. |
|
3193 |
|
3194 Fri Mar 29 13:44:13 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3195 |
|
3196 * NPSOL.h (NPSOL_options::set_option (const char *, int)): |
|
3197 New function. |
|
3198 |
|
3199 * Array.h, Array.cc (Array<T>::range_error ()): New functions. |
|
3200 * Array.h (Array<T>::checkelem): Use them. |
|
3201 |
|
3202 * base-lu.h, base-lu.cc: Parameterize based on types of matrix |
|
3203 elements too. |
|
3204 * dbleLU.h, dbleLU.cc, CmplxLU.h, CmplxLU.cc: Change to match. |
|
3205 |
|
3206 * MDiagArray2.h (MDiagArray2 (const MArray<T>& a)): Delete. |
|
3207 |
|
3208 * Makefile.in (distclean): Delete so_locations, which is created |
|
3209 on DEC Alpha systems. |
|
3210 |
|
3211 Sat Mar 23 04:02:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3212 |
|
3213 * Array.h (HEAVYWEIGHT_INDEXING): Do define this here if it is not |
|
3214 already defined. |
|
3215 |
|
3216 Fri Mar 22 23:53:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3217 |
|
3218 * pathsearch.cc: Include config.h. |
|
3219 |
|
3220 Wed Mar 20 04:54:03 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3221 |
|
3222 * Array2-idx.h (assign (Array2<LT>&, const Array2<RT>&)): Don't |
|
3223 allow M(I, J) = scalar if I or J is empty. |
|
3224 |
|
3225 * Array-idx.h: Delete Array2 and Array3 code (now in Array2-idx.h |
|
3226 and Array3-idx.h). |
|
3227 |
|
3228 Thu Mar 7 10:20:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3229 |
|
3230 * lo-error.h: Make comments C friendly. |
|
3231 |
|
3232 Sun Mar 3 14:04:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3233 |
|
3234 * Array2.h (make_unique): Move all indexing functions here. |
|
3235 * Array2.cc: From here. |
|
3236 |
|
3237 * Array.h, Array2.h (NO_BOUNDS_CHECKING): New macro to control |
|
3238 whether operator() calls elem or checkelem. |
|
3239 |
|
3240 * Array.h (make_unique): New private function. |
|
3241 Move all indexing functions here. |
|
3242 * Array.cc: From here. |
|
3243 |
|
3244 * pathsearch.cc (dir_path::find_all): Index tmp, don't dereference |
|
3245 it too. |
|
3246 |
|
3247 * Array-d.cc, Array-ch.cc, Array-C.cc, Array-s.cc, Array-str.cc, |
|
3248 Array-i.cc, MArray-i.cc, MArray-s.cc, MArray-d.cc, MArray-ch.cc, |
|
3249 MArray-C.cc: Include config.h. |
|
3250 |
|
3251 * Array.h, Array2.h, DiagArray2.h, Array3.h: |
|
3252 Don't define HEAVYWEIGHT_INDEXING here. |
|
3253 |
|
3254 Sat Mar 2 18:39:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3255 |
|
3256 * base-lu.h, base-lu.cc: New files. |
|
3257 * Makefile.in: Add them to the appropriate lists. |
|
3258 * dbleLU.h, dbleLU.cc, CmplxLU.h, Cmplx.cc: Derive from base_lu. |
|
3259 |
|
3260 Fri Mar 1 08:30:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3261 |
|
3262 * Array2.h, Array3.h, DiagArray2.h: New files, extracted from Array.h |
|
3263 * Array2-idx.h, Array3-idx.h: New files, extracted from Array-idx.h |
|
3264 * Array2.cc, Array3.cc, DiagArray2.cc: New files, from Array.cc. |
|
3265 * MArray2.h, MDiagArray2.h: New files, extracted from MArray.h. |
|
3266 * MArray2.cc, MDiagArray2.cc, MArray-defs.h: New files, from MArray.cc. |
|
3267 |
|
3268 * MArray.h (INSTANTIATE_MARRAY_FRIENDS): New macro. |
|
3269 (INSTANTIATE_MARRAY2_FRIENDS): Likewise. |
|
3270 (INSTANTIATE_MDIAGARRAY_FRIENDS): Likewise. |
|
3271 * MArray-C.cc, MArray-ch.cc, MArray-c.cc, MArray-i.cc, MArray-s.cc: |
|
3272 Simplify using new macros. |
|
3273 |
|
3274 Mon Feb 26 03:04:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3275 |
|
3276 * Makefile.in (install): If $(includedir) ends in version string, |
|
3277 make link to name that does not include version info. |
|
3278 |
|
3279 * lo-ieee.cc: Include <cmath> here. |
|
3280 |
|
3281 Fri Feb 16 20:52:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3282 |
|
3283 * lo-ieee.cc, lo-ieee.h: New files. |
|
3284 * lo-mappers.cc, lo-mappers.h: New files. |
|
3285 * lo-utils.cc, lo-utils.h: New files. |
|
3286 * Makefile.in: Add them to the appropriate lists. |
|
3287 |
|
3288 Thu Feb 15 22:02:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3289 |
|
3290 * dMatrix.cc (all_integers, too_large_for_float): New functions. |
|
3291 * CMatrix.cc (all_integers, too_large_for_float): New functions. |
|
3292 |
|
3293 * byte-swap.h, data-conv.h, data-conv.cc, float-fmt.h, |
|
3294 float-fmt.cc: New files. |
|
3295 * Makefile.in: Include them in the appropriate lists. |
|
3296 |
|
3297 Wed Feb 14 01:49:47 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3298 |
|
3299 * dMatrix.cc (Qzval): New function. |
|
3300 |
|
3301 Tue Feb 13 12:41:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3302 |
|
3303 * NPSOL.cc (NPSOL_options::set_option): Arg key is now string, not |
|
3304 char*. |
|
3305 |
|
3306 * DASSL.h, DASSL.cc: Do better management of temporary workspace. |
|
3307 Use F77_XFCN to call Fortran subroutine. |
|
3308 * dColVector.cc, CColVector.cc: Likewise. |
|
3309 * dRowVector.cc, CRowVector.cc: Likewise. |
|
3310 * NPSOL.h, NPSOL.cc: Likewise. |
|
3311 * CmplxCHOL.cc: Likewise. |
|
3312 * dbleCHOL.cc: Likewise. |
|
3313 * CMatrix.cc: Likewise. |
|
3314 * dMatrix.cc: Likewise. |
|
3315 * QPSOL.cc: Likewise. |
|
3316 * LSODE.cc: Likewise. |
|
3317 |
|
3318 Sun Feb 11 14:14:26 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3319 |
|
3320 * dbleHESS.cc (HESS::init): Dimension of tau is n-1, not n+1. |
|
3321 |
|
3322 * dbleSCHUR.h, dbleSCHUR.cc: Do better management of temporary |
|
3323 workspace. Use F77_XFCN to call Fortran subroutine. |
|
3324 * CmplxAEPBAL.h, CmplxAEPBAL.cc: Likewise. |
|
3325 * CmplxSCHUR.h, CmplxSCHUR.cc: Likewise. |
|
3326 * dbleGEPBAL.h, dbleGEPBAL.cc: Likewise. |
|
3327 * dbleAEPBAL.h, dbleAEPBAL.cc: Likewise. |
|
3328 * CmplxHESS.h, CmplxHESS.cc: Likewise. |
|
3329 * CmplxSVD.h, CmplxSVD.cc: Likewise. |
|
3330 * dbleHESS.h, dbleHESS.cc: Likewise. |
|
3331 * dbleSVD.h, dbleSVD.cc: Likewise. |
|
3332 * EIG.h, EIG.cc; Likewise. |
|
3333 * CollocWt.cc: Likewise. |
|
3334 * NLEqn.cc: Likewise. |
|
3335 * Quad.cc: Likewise. |
|
3336 |
|
3337 Sat Feb 10 12:14:59 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3338 |
|
3339 * dbleLU.h, dbleLU.cc: Do better management of temporary workspace. |
|
3340 Use F77_XFCN to call Fortran subroutine. |
|
3341 * CmplxLU.h, CmplxLU.cc: Ditto. |
|
3342 * dbleQR.h, dbleQR.cc: Ditto. |
|
3343 * CmplxQR.h, CmplxQR.cc: Ditto. |
|
3344 * dbleQRP.h, dbleQRP.cc: Ditto. |
|
3345 * CmplxQRP.h, CmplxQRP.cc: Ditto. |
|
3346 |
|
3347 * dir-ops.h (dir_entry::dir): Declare as void*, not DIR*. |
|
3348 (struct DIR): delete forward declaration. |
|
3349 (dir_entry::operator = (const dir_entry$)): Protect against |
|
3350 copying same object. |
|
3351 * dir-ops.cc: Cast dir appropriately. |
|
3352 |
|
3353 Fri Feb 9 16:12:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3354 |
|
3355 * lo-error.cc: Moved to libcruft/misc. |
|
3356 * Makefile.in: Delete it from the list. |
|
3357 |
|
3358 * f77-fcn.c (f77_context, f77_exception_encountered): Delete |
|
3359 definitions (they have been moved to libcruft/misc/f77-extern.cc). |
|
3360 |
|
3361 * Array-flags.h: New file. |
|
3362 * Array-idx.h: Include it here. |
|
3363 * Makefile.in (MATRIX_INC): Add it to the list. |
|
3364 |
|
3365 * Array-flags.cc: Renamed from Array-ext.cc. |
|
3366 (liboctave_dfi_flag): Renamed from dfi_flag. |
|
3367 (liboctave_pcv_flag): Renamed from pcv_flag. |
|
3368 (liboctave_pzo_flag): Renamed from pzo_flag. |
|
3369 (liboctave_rre_flag): Renamed from rre_flag. |
|
3370 * Array-idx.h: Change all uses of dfi_flag, etc. |
|
3371 * Makefile.in (MATRIX_SRC): Change file name here too. |
|
3372 |
|
3373 * Makefile.in (LIBOCTAVE_LFLAGS, LIBOCTAVE_LIBS): New variables. |
|
3374 (stamp-shared): Use them here. |
|
3375 |
|
3376 Tue Feb 6 09:53:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3377 |
|
3378 * cmd-hist.cc (command_history::ignore_entries): Delete default |
|
3379 argument value. |
|
3380 |
|
3381 Mon Feb 5 12:07:50 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3382 |
|
3383 * CmplxAEPBAL.h, CmplxCHOL.h, CmplxDET.h, CmplxHESS.h, CmplxLU.h, |
|
3384 CmplxQR.h, CmplxQRP.h, CmplxSCHUR.h, CmplxSVD.h, dbleAEPBAL.h, |
|
3385 dbleCHOL.h, dbleDET.h, dbleGEPBAL.h, dbleHESS.h, dbleLU.h, |
|
3386 dbleQR.h, dbleQRP.h, dbleSCHUR.h, dbleSVD.h: |
|
3387 Clean up constructors, assigment operator. |
|
3388 |
|
3389 Sun Feb 4 03:12:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3390 |
|
3391 * NPSOL.cc (do_minimize): Use F77_XFCN to call npsol. |
|
3392 Check f77_exception_encountered on return. |
|
3393 |
|
3394 * f77-fcn.c (f77_exception_encountered): New variable. |
|
3395 (F77_XFCN): Set it. |
|
3396 * f77-fcn.h: Provide declaration. |
|
3397 |
|
3398 * QPSOL.h (QPSOL_options::set_options): Renamed from copy(). |
|
3399 |
|
3400 * NPSOL.h (NPSOL_options::set_options): Renamed from copy(). |
|
3401 |
|
3402 * NLEqn.h (NLEqn_options::set_options): New function. |
|
3403 * Quad.h (Quad_options::set_options): Likewise. |
|
3404 |
|
3405 * LP.h (class LP): Add accessors for LP data. |
|
3406 |
|
3407 * NLEqn.h (NLEqn::n): Delete. |
|
3408 |
|
3409 * NLEqn.h (class NLEqn::n): Likewise. |
|
3410 |
|
3411 * NLP.h (class NLP): Add accessors for NLP data. |
|
3412 |
|
3413 * NPSOL.h (class NPSOL_options): Move constructors, set, and |
|
3414 access functions here. |
|
3415 * NPSOL.cc.cc: From here. |
|
3416 |
|
3417 * QLD.h (class QLD): Add destructor definition. |
|
3418 * Objective.h (class Objective): Likewise. |
|
3419 * ODEFunc.h (class ODEFunc): Likewise. |
|
3420 * NLFunc.h (class NLFunc): Likewise. |
|
3421 * NLEqn.h (class NLEqn): Likewise. |
|
3422 * NLConst.h (class NLConst): Likewise. |
|
3423 * LinConst.h (class LinConst): Likewise. |
|
3424 * LSODE.h (class LSODE_options): Likewise. |
|
3425 * CollocWt.h (class CollocWt): Likewise. |
|
3426 * Bounds.h (class Bounds): Likewise. |
|
3427 |
|
3428 * QLD.cc (QLD::set_default_options): Delete. |
|
3429 |
|
3430 * QP.h (QP): Add accessors for QP data. |
|
3431 Add copy constructor, operator =, and destructor definitions. |
|
3432 |
|
3433 * Range.h, Quad.h, QP.h, QLD.h, Objective.h, NLP.h, NLFunc.h, |
|
3434 NLConst.h, LinConst.h, LSODE.h, LP.h, FEGrid.h, EIG.h, DASSL.h, |
|
3435 DAEFunc.h, CollocWt.h, Bounds.h: |
|
3436 Clean up constructors, assigment operator. |
|
3437 |
|
3438 * dRowVector.cc (RowVector::transpose): Use magic of reference |
|
3439 counting to avoid duplicating the data immediately. |
|
3440 * dColVector.cc (ColumnVector::transpose): Likewise. |
|
3441 * CRowVector.cc (ComplexrowVector::transpose): Likewise. |
|
3442 * CColVector.cc (ComplexColumnVector::transpose): Likewise. |
|
3443 |
|
3444 Sat Feb 3 01:02:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3445 |
|
3446 * prog-args.h (prog_args::option_argument): New enum. |
|
3447 |
|
3448 * f77-fcn.h: Rename from f77-uscore.h. |
|
3449 (F77_XFCN_ERROR, F77_XFCN): New macros. |
|
3450 * f77-fcn.c: New file. |
|
3451 * Makefile.in (SOURCES): Add it to the list. |
|
3452 |
|
3453 * ODEFunc.h: Clean up. |
|
3454 |
|
3455 * DASSL.cc, DASSL.h: New files. |
|
3456 * Makefile.in: Add them to the appropriate lists. |
|
3457 |
|
3458 * LSODE.cc, LSODE.h: New files. |
|
3459 * Makefile.in: Add them to the appropriate lists. |
|
3460 |
|
3461 * ODE.cc: Delete. |
|
3462 * Makefile.in (SOURCES): Remove from list. |
|
3463 |
|
3464 * base-de.h, DAE.cc: New files. |
|
3465 * Makefile.in: Add them to the appropriate lists. |
|
3466 * ODE.h: Only define interface for ODE classes. |
|
3467 * DAE.h: Only define interface for ODE classes. |
|
3468 |
|
3469 * LPsolve.cc (do_minimize): Print sorry not implemented message. |
|
3470 (LPsolve::set_default_options)): Delete |
|
3471 * LPsolve.h (class LPsolve): Add operator =, copy constructor, and |
|
3472 destructor. |
|
3473 |
|
3474 * LP.h (class LP): Add operator =, copy constructor, and destructor. |
|
3475 |
|
3476 * QPSOL.h (QPSOL::QPSOL (const QPSOL&)): New constructor. |
|
3477 (QPSOL::operator =): Call base class operator = instead of assuming |
|
3478 we know what to copy. |
|
3479 |
|
3480 * base-min.h (size): New function. |
|
3481 |
|
3482 * NLP.h (NLP::size): Delete. |
|
3483 (NLP::NLP (const NLP&)): New constructor. |
|
3484 (NLP::operator =): Call base class operator = instead of assuming |
|
3485 we know what to copy. |
|
3486 |
|
3487 * NPSOL.h, NPSOL.cc (NPSOL::option): Delete. |
|
3488 (class NPSOL): Add operator = and destructor. |
|
3489 |
|
3490 * NPSOL.h: Add NPSOL_options() to list of constructor initalizers. |
|
3491 |
|
3492 Fri Feb 2 22:52:55 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3493 |
|
3494 * Makefile.in (liboctave.a): Depend on $(PICOBJ). |
|
3495 |
|
3496 Wed Jan 31 05:29:25 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3497 |
|
3498 * dMatrix.cc (Givens, Sylvester, Matrix::expm): New functions. |
|
3499 * CMatrix.cc (Givens, Sylvester, ComplexMatrix::expm): Ditto. |
|
3500 |
|
3501 Mon Jan 29 00:00:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3502 |
|
3503 * prog-args.h, prog-args.cc: New files. |
|
3504 * Makefile.in: Add them to lists. |
|
3505 |
|
3506 * getopt.h, getopt.c, getopt1.c: New files. |
|
3507 * Makefile.in: Add them to the lists. |
|
3508 |
|
3509 * oct-term.h, oct-term.cc: New files. |
|
3510 * Makefile.in: Add them to the lists. |
|
3511 |
|
3512 * str-vec.cc: New file. |
|
3513 * Makefile.in (SOURCES): Add it to the list. |
|
3514 |
|
3515 * file-ops.cc (oct_tmpnam): Move here from src/utils.cc. |
|
3516 |
|
3517 * tempname.c, tempnam.c: Move here from src directory. |
|
3518 * Makefile.in: Add to lists. |
|
3519 |
|
3520 Sun Jan 28 23:06:19 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3521 |
|
3522 * cmd-hist.h, cmd-hist.cc: New files. |
|
3523 * Makefile.in: Add them to lists. |
|
3524 |
|
3525 Thu Jan 25 20:36:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3526 |
|
3527 * oct-glob.h, oct-glob.cc: New files. |
|
3528 * Makefile.in: Add them to lists. |
|
3529 |
|
3530 Wed Jan 24 01:55:08 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3531 |
|
3532 * pathsearch.h, pathsearch.cc: New files. |
|
3533 * Makefile.in: Add them to lists. |
|
3534 |
|
3535 * dir-ops.h, dir-ops.cc: New files. |
|
3536 * sysdir.h: Move here from src directory. |
|
3537 * Makefile.in: Add them to lists. |
|
3538 |
|
3539 * Array.h (Array::qsort): Return *this, not void. |
|
3540 * str-vec.h (string_vector::qsort): Likewise. |
|
3541 |
|
3542 * chMatrix.cc (row_as_string): Resize result to eliminate |
|
3543 unnecessary NULs. |
|
3544 |
|
3545 Tue Jan 23 00:40:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3546 |
|
3547 * safe-xstat.hin, safe-xstat.cin, statdefs.h, file-ops.h, |
|
3548 file-ops.cc, filemode.c, mkdir.c, rmdir.c, rename.c: |
|
3549 Files moved here from src directory. |
|
3550 * Makefile.in: Add them to lists. Include appropriate rules. |
|
3551 |
|
3552 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
3553 Use pointers, not references (this is C code!). |
|
3554 |
|
3555 * oct-math.h: New file. |
|
3556 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
3557 Files moved here from src directory. |
|
3558 * Makefile.in: Add them to lists. |
|
3559 |
|
3560 Sun Jan 21 22:53:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3561 |
|
3562 * idx-vector.cc (make_uniq): Fix major brain-o. |
|
3563 |
|
3564 * CmplxSCHUR.h, CmplxSCHUR.cc, dbleSCHUR.h, dbleSCHUR.cc: |
|
3565 Convert to use string class instead of char*. |
|
3566 |
|
3567 * str-vec.h, Array-str.cc: New files. |
|
3568 |
|
3569 * Array.h (Array::qsort): New function. |
|
3570 |
|
3571 Fri Jan 12 01:45:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3572 |
|
3573 * Array.h: Nest ArrayRep class inside Array class. |
|
3574 Refer to ArrayRep, not ArrayRep<T>. |
|
3575 Move all ArrayRep functions inline. |
|
3576 Don't declare other Array classes as friends of ArrayRep. |
|
3577 * Array.cc: Delete ArrayRep functions. |
|
3578 * Array-idx.h: Refer to ArrayRep, not ArrayRep<T>. |
|
3579 |
|
3580 * Array-C.cc, Array-ch.cc, Array-d.cc, Array-i.cc, Array-s.cc: |
|
3581 Don't instantiate ArrayRep objects. |
|
3582 |
|
3583 Wed Jan 10 04:40:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3584 |
|
3585 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
3586 New constructor. |
|
3587 |
|
3588 Tue Jan 9 04:44:56 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3589 |
|
3590 * dbleGEPBAL.cc (GEPBALANCE::init): Use string instead of char* |
|
3591 for balance_job arg. |
|
3592 * dbleAEPBAL.cc (AEPBALANCE::init): Likewise. |
|
3593 * CmplxAEPBAL.cc (ComplexAEPBALANCE::init): Likewise. |
|
3594 |
|
3595 * chMatrix.cc (row_as_string): Return string, not const char*. |
|
3596 |
|
3597 Mon Jan 8 03:20:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3598 |
|
3599 * Makefile.in (clean): If $(SHARED_LIBS), also remove shared libs. |
|
3600 |
|
3601 * chMatrix.cc (row_as_string): Undo previous change. |
|
3602 |
|
3603 Sun Jan 7 19:50:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3604 |
|
3605 * chMatrix.cc (row_as_string): Do memory management here. Caller |
|
3606 is expected to save string if necessary. |
|
3607 |
|
3608 Sat Jan 6 19:28:20 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3609 |
|
3610 * Array.h (class DiagArray): Enable nested Proxy class for all |
|
3611 platforms. |
|
3612 |
|
3613 * Array.cc (Array<T>::operator = (const Array<T>&)): If rep == |
|
3614 a.rep, don't mess with count. |
|
3615 * Array.h (Array2<T>& operator = (const Array2<T>&)): Likewise, |
|
3616 don't do anything if reps are the same. |
|
3617 (Array3<T>& operator = (const Array3<T>&) |
|
3618 |
|
3619 * Array.h (ArrayRep<T>::operator = (const ArrayRep<T>&)): |
|
3620 Declare private with no definition to prevent misuse. |
|
3621 |
|
3622 * Array.cc (Array2<T>::insert (const Array2<T>&, int, int)): |
|
3623 Get range check right. |
|
3624 * dMatrix.cc (Matrix::insert (const RowVector&, int, int)): Ditto. |
|
3625 (Matrix::insert (const ColumnVector&, int, int)): Ditto. |
|
3626 (Matrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
3627 * CMatrix.cc (ComplexMatrix::insert (const Matrix&, int, int)): Ditto. |
|
3628 (ComplexMatrix::insert (const RowVector&, int, int)): Ditto. |
|
3629 (ComplexMatrix::insert (const ColumnVector&, int, int)): Ditto. |
|
3630 (ComplexMatrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
3631 (ComplexMatrix::insert (const ComplexRowVector&, int, int)): Ditto. |
|
3632 (ComplexMatrix::insert (const ComplexColumnVector&, int, int)): Ditto. |
|
3633 (ComplexMatrix::insert (const ComplexDiagMatrix&, int, int)): Ditto. |
|
3634 * dRowVector.cc (RowVector::insert (const RowVector&, int)): Ditto. |
|
3635 * dColVector.cc |
|
3636 (ColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
3637 * CRowVector.cc |
|
3638 (ComplexRowVector::insert (const RowVector&, int)): Ditto. |
|
3639 (ComplexRowVector::insert (const ComplexRowVector&, int)): Ditto. |
|
3640 * CColVector.cc |
|
3641 (ComplexColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
3642 (ComplexColumnVector::insert (const ComplexColumnVector&, int)): Ditto. |
|
3643 |
|
3644 * dMatrix.cc (Matrix::insert (const DiagMatrix&, int, int)): |
|
3645 Also fill in zeros, not just the diagonal. |
|
3646 |
|
3647 * CDiagMatrix.cc (ComplexDiagMatrix::fill (double, int, int)): |
|
3648 Use END parameter properly. |
|
3649 (ComplexDiagMatrix::fill (const Complex&, int, int)): Ditto. |
|
3650 * dDiagMatrix.cc (DiagMatrix::fill (double, int, int)): Ditto. |
|
3651 |
|
3652 * Array.h (ArrayRep<T>::ArrayRep (void)): Set count to 1 here. |
|
3653 (ArrayRep<T>::ArrayRep (T *, int)): Likewise. |
|
3654 * Array.cc (ArrayRep<T>::ArrayRep (const ArrayRep<T>&)): |
|
3655 Don't copy count. Set it to 1. |
|
3656 (ArrayRep<T>::ArrayRep (int)): Set count to 1 here. |
|
3657 |
|
3658 * Array.h (Array<T>::Array (T *, int)): After constructing rep, |
|
3659 don't set rep->count to 1 here (now handled by ArrayRep |
|
3660 constructors). |
|
3661 (Array<T>::Array (void)): Ditto. |
|
3662 (Array<T>::Array (int)): Ditto. |
|
3663 (Array<T>::T& elem (int)): Ditto. |
|
3664 * Array-idx.h (Array<T>::maybe_delete_elements (idx_vector&)): Ditto. |
|
3665 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): Ditto. |
|
3666 * Array.cc: (Array<T>::Array (int, const T&)): Ditto. |
|
3667 (Array<T>::resize (int)): Ditto. |
|
3668 (Array<T>::resize (int, const T&)) :Ditto. |
|
3669 (Array<T>::fortran_vec (void)): Ditto. |
|
3670 (Array2<T>::resize (int, int)): Ditto. |
|
3671 (Array2<T>::resize (int, int, const T&)): Ditto. |
|
3672 (DiagArray<T>::resize (int, int)): Ditto. |
|
3673 (DiagArray<T>::resize (int, int, const T&)): Ditto. |
|
3674 |
|
3675 Sun Dec 31 21:23:26 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3676 |
|
3677 * Array-ch.cc: Rename from Array-c.cc. |
|
3678 * MArray-ch.cc: Rename from MArray-c.cc. |
|
3679 * chMatrix.cc: Rename from cMatrix.cc. |
|
3680 * chMatrix.h: Rename from cMatrix.h. |
|
3681 * Makefile.in (TI_SRC): Use new names here. |
|
3682 * mx-base.h: Likewise. |
|
3683 |
|
3684 Fri Dec 29 21:45:00 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3685 |
|
3686 * Makefile.in: Handle shared libraries. |
|
3687 |
|
3688 Thu Dec 28 14:18:34 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3689 |
|
3690 * CRowVector.cc (operator * (ComplexRowVector, ComplexMatrix)): |
|
3691 Correctly compute length of return value. Correct rows and |
|
3692 columns in zgemv call. |
|
3693 * dRowVector.cc (operator * (RowVector, Matrix)): Likewise. |
|
3694 |
|
3695 Tue Dec 26 00:37:57 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3696 |
|
3697 * Makefile.in (stamp-picdir): New target. |
|
3698 (all): Depend on it. |
|
3699 |
|
3700 Sun Dec 24 03:10:41 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3701 |
|
3702 * Makefile.in (INCLUDES): Remove QLD.h. |
|
3703 (SOURCES): Remove QLD.cc. |
|
3704 |
|
3705 Wed Dec 20 00:43:46 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3706 |
|
3707 * dMatrix.cc (Matrix::inverse): New arg, force. |
|
3708 If force is nonzero, invert even if matrix is singular. |
|
3709 (ComplexMatrix::inverse): Likewise. |
|
3710 |
|
3711 * dRowVector.cc, mx-inlines.cc, dMatrix.cc, dDiagMatrix.cc, |
|
3712 dColVector.cc,MArray-C.cc, CmplxDET.cc, CRowVector.cc, CMatrix.cc, |
|
3713 CDiagMatrix.cc, CColVector.cc, Array-C.cc, CmplxDET.h, CMatrix.h: |
|
3714 Include "oct-cmplx.h" instead of <Complex.h>. |
|
3715 |
|
3716 * mx-defs.h: Include oct-cmplx.h in place of forward declaration |
|
3717 for class Complex. |
|
3718 |
|
3719 * oct-cmplx.h: New file. |
|
3720 * Makefile.in (INCLUDES): Add it to the list. |
|
3721 |
|
3722 * idx-vector.cc (IDX_VEC_REP::idx_vector_rep): Don't redeclare len. |
|
3723 (IDX_VEC_REP::maybe_convert_one_zero_to_idx): Don't redeclare count. |
|
3724 (IDX_VEC_REP::freeze): Don't redeclare max_val and min_val. |
|
3725 (intcmp, sort_data, make_uniq, copy_data, IDX_VEC_REP::print): |
|
3726 Avoid g++ bugs. |
|
3727 |
|
3728 Tue Nov 14 14:24:16 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3729 |
|
3730 * Array-idx.h (maybe_delete_elements): Give useful error message. |
|
3731 |
|
3732 * dbleSCHUR.cc, dbleSVD.cc: Include iostream.h. |
|
3733 |
|
3734 Mon Nov 13 08:35:07 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3735 |
|
3736 * CDiagMatrix.cc (inverse): Return retval, not *this. |
|
3737 * dDiagMatrix.cc (inverse): Use same method as for Complex case. |
|
3738 |
|
3739 Sat Nov 4 05:06:12 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3740 |
|
3741 * Array.h, Array.cc, Array-idx.h [HEAVYWEIGHT_INDEXING]: Keep |
|
3742 index vector object with Array, not ArrayRep. |
|
3743 |
|
3744 Fri Nov 3 06:52:38 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3745 |
|
3746 * Array-idx.h (assign (Array2<T>&, const Array2<T>&): Don't fail |
|
3747 if index is a colon and resizing is maybe needed. |
|
3748 |
|
3749 Tue Oct 31 17:40:01 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3750 |
|
3751 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Don't return true |
|
3752 if we have a vector of 1's. |
|
3753 |
|
3754 * Array-idx.h (assign (Array2<LT>&, Array2<RT>&): If lhs has no |
|
3755 current orientation, require index and rhs to conform unless |
|
3756 do_fortran_indexing flag is set. |
|
3757 |
|
3758 Sun Oct 15 23:32:08 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3759 |
|
3760 * Array-d.cc, Array-C.cc, mx-base.h, mx-inlines.cc, dDiagMatrix.h, |
|
3761 CDiagMatrix.h, CMatrix.cc, CMatrix.h, dMatrix.h, mx-defs.h, |
|
3762 cMatrix.h, MArray.cc, MArray.h, MArray-i.cc, MArray-c.cc, |
|
3763 MArray-s.cc, Array.h, Array.cc, Array-c.cc, Array-i.cc, |
|
3764 Array-s.cc, cMatrix.cc, Array-idx.h, dMatrix.cc: |
|
3765 Massive changes to support additional data types. Only charMatrix |
|
3766 is currently used in Octave. |
|
3767 |
|
3768 Thu Oct 12 02:22:36 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3769 |
|
3770 * Array.cc (Array2<T>::insert (Array2<T>&, int, int): New function. |
|
3771 * CMatrix.cc (ComplexMatrix::insert (ComplexMatrix&, int, int): |
|
3772 Simply call Array2<Complex> version. |
|
3773 * dMatrix.cc (Matrix::insert (Matrix&, int, int): Similarly, just |
|
3774 call Array2<double> version. |
|
3775 |
|
3776 * Array-C.cc, Array-d.cc: Instantiate new assign functions too. |
|
3777 |
|
3778 * Array.h, Array.cc: Massive overhaul to support new way of |
|
3779 handling indexing. |
|
3780 * idx-vector.h, idx-vector.cc: Likewise. |
|
3781 * Array-ext.cc, Array-idx.h: New files. |
|
3782 * Makefile.in: Add them to the appropriate lists. |
|
3783 |
|
3784 Wed Oct 11 00:49:58 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3785 |
|
3786 * Range.cc (nelem_internal): Use tfloor here, not round. |
|
3787 |
|
3788 Sun Oct 8 18:21:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3789 |
|
3790 * idx-vector.h, idx-vector.cc: New files, moved from ../src. |
|
3791 * Makefile.in (SOURCES, INCLUDES): Include them in the lists. |
|
3792 |
|
3793 Sat Oct 7 19:07:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3794 |
|
3795 * CMatrix.cc (pseudo_inverse): Avoid bogus g++ warning. |
|
3796 |
|
3797 * Array.h: Move simple member functions here. |
|
3798 * Array.cc: From here. |
|
3799 |
|
3800 Fri Oct 6 00:36:04 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3801 |
|
3802 * Range.cc (tfloor, tceil, round): New static functions. |
|
3803 (Range::nelem_internal): Rewrite to use better method. |
|
3804 |
|
3805 * dbleSVD.h (SVD::type): New item, sigma_only. |
|
3806 (type_computed): New var. |
|
3807 * dbleSVD.cc (left_singular_matrix, right_singular_matrix): |
|
3808 Handle possible error condition. |
|
3809 (init): Allow for SVD::sigma_only, save type computed. |
|
3810 * CmplxSVD.cc (left_singular_matrix, right_singular_matrix): |
|
3811 Handle possible error condition. |
|
3812 (init): Allow for SVD::sigma_only, save type computed. |
|
3813 |
|
3814 Wed Oct 4 15:33:35 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3815 |
|
3816 * Nearly all non-matrix .h and .cc files: |
|
3817 Move short function bodies into class declarations for inlining. |
|
3818 Generally clean up. |
|
3819 |
|
3820 * base-min.h: New file. |
|
3821 * LP.h (class LP): Derive from base_minimizer. |
|
3822 * QLP.h (class QLP): Derive from base_minimizer. |
|
3823 * NLP.h (class NLP): Derive from base_minimizer. |
|
3824 * Makefile.in (INCLUDES): Add base-min.h to the list. |
|
3825 |
|
3826 * Makefile.in (SOURCES): Delete DAEFunc.cc, LP.cc, NLConst.cc, |
|
3827 NLFunc.cc, Objective.cc and QP.cc from list. |
|
3828 |
|
3829 Tue Sep 26 04:14:23 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3830 |
|
3831 * dbleSCHUR.cc (select_ana): Remove name of unused parameter. |
|
3832 (SCHUR::SCHUR): Delete unused parameter ord. |
|
3833 * CmplxSCHUR.h (ComplexSCHUR::CmplxSCHUR): Likewise. |
|
3834 |
|
3835 * CRowVector.cc |
|
3836 (ComplexRowVector::operator+ (const Complex&, const RowVector&), |
|
3837 (ComplexRowVector::operator- (const Complex&, const RowVector&), |
|
3838 (ComplexRowVector::operator* (const Complex&, const RowVector&), |
|
3839 (ComplexRowVector::operator/ (const Complex&, const RowVector&)): |
|
3840 Actually do something. |
|
3841 |
|
3842 * dMatrix.cc (Matrix::lssolve (ComplexMatrix&)): Use dummy vars. |
|
3843 (Matrix::lssolve (ComplexMatrix&, int&)): Likewise. |
|
3844 (Matrix::lssolve (ComplexMatrix&, int&, int&)): Likewise. |
|
3845 |
|
3846 * Quad.cc (Quad_options::Quad_options (double, double)): New function. |
|
3847 * (Quad::Quad (integrand_fcn, double, double): Properly initialize |
|
3848 tolerances. |
|
3849 |
|
3850 * DAE.cc (ddassl_f, ddassl_j): Remove names of unused parameters. |
|
3851 * LPsolve.cc (LPsolve::minimize): Likewise. |
|
3852 * NPSOL.cc (NPSOL::option, npsol_confun, npsol_objfun): Likewise. |
|
3853 * ODE.cc (lsode_f, lsode_j): Likewise. |
|
3854 * QPSOL.cc (qphess): Likewise. |
|
3855 |
|
3856 Fri Sep 22 04:14:51 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3857 |
|
3858 * dMatrix.cc: Include <cstring>. |
|
3859 |
|
3860 * Array.cc: Try harder to avoid warnings from gcc in functions |
|
3861 that return bogus values after calling the error handler. |
|
3862 |
|
3863 Thu Sep 14 00:56:00 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3864 |
|
3865 * Makefile.in: Use `ifndef omit_deps', not `ifndef $(omit_deps)'. |
|
3866 |
|
3867 * Makefile.in (TEMPLATE_SRC): Add Array-i.cc to the list. |
|
3868 |
|
3869 Tue Aug 22 00:41:06 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3870 |
|
3871 * DAE.cc (dassl_f): Add UNUSED attribute for unused parameters. |
|
3872 (dassl_j): Likewise. |
|
3873 |
|
3874 * DAE.cc, NLEqn.cc, NPSOL.cc, ODE.cc, CColVector.cc, CMatrix.cc, |
|
3875 dColVector.cc, dMatrix.cc, CmplxLU.cc, dbleLU.cc, QPSOL.cc, |
|
3876 Array.cc, CollocWt.cc, FEGrid.h, LinConst.h: |
|
3877 Update for change in for loop variable scope for gcc 2.7.0. |
|
3878 |
|
3879 Mon Aug 21 19:34:53 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3880 |
|
3881 * Makefile.in: Only include dependency files if $(omit_deps) is |
|
3882 not set. |
|
3883 |
|
3884 Mon May 1 13:26:00 1995 John Eaton (jwe@bullwinkle.che.utexas.edu) |
|
3885 |
|
3886 * dbleSCHUR.h dbleSVD.h dbleQRP.h dbleQR.h dbleHESS.h dbleLU.h |
|
3887 dbleCHOL.h dbleGEPBAL.h dbleAEPBAL.h dbleDET.h dDiagMatrix.h |
|
3888 dColVector.h dMatrix.h dRowVector.h Quad.h Range.h QPSOL.h QLD.h |
|
3889 ODEFunc.h QP.h Objective.h NPSOL.h ODE.h NLEqn.h NLFunc.h |
|
3890 NLConst.h LinConst.h LPsolve.h LP.h FSQP.h FEGrid.h EIG.h |
|
3891 DAEFunc.h CollocWt.h DAE.h CmplxSVD.h CmplxQRP.h CmplxSCHUR.h |
|
3892 CmplxHESS.h CmplxDET.h CmplxLU.h CmplxQR.h CmplxCHOL.h |
|
3893 CmplxAEPBAL.h CRowVector.h CDiagMatrix.h Bounds.h CColVector.h |
|
3894 CMatrix.h dbleSCHUR.cc dbleSVD.cc dbleQRP.cc dbleQR.cc |
|
3895 dbleGEPBAL.cc dbleLU.cc dbleHESS.cc dbleDET.cc dbleCHOL.cc |
|
3896 dbleAEPBAL.cc dColVector.cc dRowVector.cc dMatrix.cc |
|
3897 dDiagMatrix.cc QPSOL.cc Range.cc Quad.cc QP.cc ODEFunc.cc QLD.cc |
|
3898 Objective.cc NLEqn.cc ODE.cc NPSOL.cc NLFunc.cc LPsolve.cc |
|
3899 NLConst.cc LinConst.cc FSQP.cc FEGrid.cc LP.cc DAE.cc EIG.cc |
|
3900 CollocWt.cc DAEFunc.cc CmplxSVD.cc CmplxSCHUR.cc CmplxQRP.cc |
|
3901 CmplxLU.cc CmplxQR.cc CmplxHESS.cc CmplxDET.cc CmplxCHOL.cc |
|
3902 CmplxAEPBAL.cc CRowVector.cc CColVector.cc CMatrix.cc |
|
3903 CDiagMatrix.cc Bounds.cc MArray.h MArray.cc Array.cc Array.h |
|
3904 NLP.h: Use pragma interface/implementation. Don't surround |
|
3905 contents in extern "C++". |
|
3906 * lo-error.h sun-utils.h: Don't surround contents in extern "C++". |
|
3907 |
|
3908 Tue Apr 11 10:59:24 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3909 |
|
3910 * f77-uscore.h (F77_FCN): Allow for possibility of uppercase |
|
3911 identifiers. |
|
3912 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
3913 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
3914 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
3915 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
3916 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
3917 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
3918 Quad.cc: Change usage of F77_FCN to match new definition |
|
3919 |
|
3920 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
3921 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
3922 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
3923 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
3924 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
3925 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
3926 Quad.cc: Where appropriate, declare Fortran subroutines to take |
|
3927 args by reference instead of pointer. Change all callers. |
|
3928 |
|
3929 Sun Apr 9 20:11:56 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3930 |
|
3931 * MArray.h (MArray2::~MArray2, MDiagArray::~MDiagArray): New |
|
3932 functions. Make += and -= operators friend functions. |
|
3933 |
|
3934 * Array.h (Array2::~Array2, Array3::~Array3, |
|
3935 DiagArray::~DiagArray): New functions. |
|
3936 |
|
3937 Wed Apr 5 21:21:13 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3938 |
|
3939 * Makefile.in (EXTRAS): Don't distribute mx-kludge.cc. |
|
3940 (MATRIX_INC): Don't distribute mx-kludge.h. |
|
3941 |
|
3942 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
3943 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
3944 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
3945 dRowVector.h dRowVector.cc: |
|
3946 Derive classes from MArray, MArray2, and MDiagArray, not Array, |
|
3947 Array2, and DiagArray2. |
|
3948 Don't use functions defined in mx-kludge.cc for arithmetic |
|
3949 like-type operations on arrays. |
|
3950 |
|
3951 * MArray.cc: Use the classes defined here like-type mathematical |
|
3952 operations on Array objects. Abuse CPP more. |
|
3953 * Makefile.in (TEMPLATE_SRC): Add it to the list. |
|
3954 (EXTRAS): Delete it from this list. |
|
3955 |
|
3956 * MArray-C.cc, MArray-d.cc: New files. |
|
3957 * Makefile.in (TI_SRC): Add them to the list. |
|
3958 |
|
3959 Tue Apr 4 14:13:46 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3960 |
|
3961 * mx-kludge.cc: Abuse CPP even more. |
|
3962 |
|
3963 Mon Apr 3 21:05:30 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3964 |
|
3965 * Objective.h (objective_function): Add missing const. |
|
3966 (gradient_function): Likewise. |
|
3967 |
|
3968 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
3969 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
3970 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
3971 dRowVector.h dRowVector.cc: |
|
3972 Reorganize to declare and define friends where they should be, |
|
3973 based on the use of private constructors. |
|
3974 |
|
3975 Fri Mar 31 10:09:40 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3976 |
|
3977 * CRowVector.h (linspace): Add declaration. |
|
3978 * dRowVector.h (linspace): Likewise. |
|
3979 |
|
3980 * dMatrix.cc (Matrix::inverse, Matrix::determinant, Matrix::solve): |
|
3981 Force result of rcond + 1.0 to be stored. |
|
3982 * CMatrix.cc (ComplexMatrix::inverse, ComplexMatrix::determinant, |
|
3983 ComplexMatrix::solve): Likewise. |
|
3984 |
|
3985 See ChangeLog.1 in the top level directory for earlier changes. |