comparison src/ChangeLog @ 5956:cdef72fcd206

[project @ 2006-08-22 20:36:56 by jwe]
author jwe
date Tue, 22 Aug 2006 20:36:57 +0000
parents 250e062c3393
children 85c7dc4afe6b
comparison
equal deleted inserted replaced
5955:fc46f9c99028 5956:cdef72fcd206
1 2006-08-22 John W. Eaton <jwe@octave.org> 1 2006-08-22 John W. Eaton <jwe@octave.org>
2
3 * ov.h (octave_value::save_ascii): strip_nan_and_inf is now int,
4 not bool.
5 * ov-base.h, ov-base.cc (octave_base_value::save_ascii): Likewise.
6 * ov-base-int.h, ov-base-int.cc (octave_base_int_matrix<T>::save_ascii,
7 octave_base_int_scalar<T>::save_ascii, ): Likewise.
8 * ov-base-sparse.cc, ov-base-sparse.h
9 (octave_base_sparse<T>::save_ascii): Likewise.
10 * ov-bool-mat.cc, ov-bool-mat.h (octave_bool_matrix::save_ascii):
11 Likewise.
12 * ov-bool.cc, ov-bool.h (octave_bool::save_ascii): Likewise.
13 * ov-cell.cc, ov-cell.h (octave_cell::save_ascii): Likewise.
14 * ov-complex.cc, ov-complex.h (octave_complex::save_ascii): Likewise.
15 * ov-fcn-handle.cc, ov-fcn-handle.h (octave_fcn_handle::save_ascii):
16 Likewise.
17 * ov-fcn-inline.cc, ov-fcn-inline.h (octave_fcn_inline::save_ascii):
18 Likewise.
19 * ov-list.cc, ov-list.h (octave_list::save_ascii): Likewise.
20 * ov-range.cc, ov-range.h (octave_range::save_ascii): Likewise.
21 * ov-scalar.cc, ov-scalar.h (octave_scalar::save_ascii): Likewise.
22 * ov-str-mat.cc, ov-str-mat.h (octave_char_matrix_str::save_ascii):
23 Likewise.
24 * ov-struct.cc, ov-struct.h (octave_struct::save_ascii): Likewise.
25 * ov-re-mat.cc, ov-re-mat.cc (octave_matrix::save_ascii): Likewise.
26 * ov-cx-mat.cc, ov-cx-mat.cc (octave_complex_matrix::save_ascii): Likewise.
27
28 * ov-cx-mat.cc, ov-cx-mat.cc (octave_complex_matrix::save_ascii):
29 Don't strip Inf and NaN here. Call ComplexMatrix::save_ascii to
30 do the real work.
31 * ov-re-mat.cc, ov-re-mat.cc (octave_matrix::save_ascii):
32 Don't strip Inf and NaN here. Call Matrix::save_ascii to do the
33 real work.
34
35 * ov-re-mat.cc, ov-cx-mat.cc (strip_infnan): Delete.
36 * ls-oct-ascii.cc, ls-oct-ascii.h (save_ascii_data):
37 strip_nan_and_inf is now int, not bool.
38 (strip_infnan): Delete.
39 (save_ascii_data_for_plotting): Call save_ascii_data with
40 strip_nan_and_inf = 2.
2 41
3 * Makefile.in (INCLUDES): Remove matrix.h from the list. 42 * Makefile.in (INCLUDES): Remove matrix.h from the list.
4 43
5 2006-08-22 David Bateman <dbateman@free.fr> 44 2006-08-22 David Bateman <dbateman@free.fr>
6 45