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