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