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