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