comparison liboctave/ChangeLog @ 5634:4b45b2bcda89

[project @ 2006-03-02 03:40:00 by jwe]
author jwe
date Thu, 02 Mar 2006 03:40:01 +0000
parents 6e9a14b3c299
children 69a4f320d95a
comparison
equal deleted inserted replaced
5633:92f8b2723c8c 5634:4b45b2bcda89
1 2006-03-01 John W. Eaton <jwe@octave.org>
2
3 * CMatrix.cc (ComplexMatrix::determinant):
4 Scale result by factors of 2, not 10.
5 * dMatrix.cc (Matrix::determinant): Likewise.
6
7 * dbleDET.h (DET::DET): Use initializer list.
8 (DET::coefficient2, DET::coefficient10, DET::exponent2,
9 DET::exponent10): New functions.
10 (DET::det): Delete.
11 (DET::c2, DET::c10, DET::e2, DET::e10, DET::base2): New data members.
12 Store value internally with double and int instead of 2-element
13 double vector.
14 (DET::initialize2, DET::initialize10): Provide decls.
15 * dbleDET.cc (DET::value_will_overflow, DET::value_will_underflow):
16 Return bool value, not int.
17 (DET::initialize2, DET::initialize10): New functions.
18
19 * CmplxDET.h (ComplexDET::ComplexDET): Use initializer list.
20 (ComplexDET::coefficient2, ComplexDET::coefficient10,
21 ComplexDET::exponent2, ComplexDET::exponent10): New functions.
22 (ComplexDET::det): Delete.
23 (ComplexDET::c2, ComplexDET::c10, ComplexDET::e2, ComplexDET::e10,
24 ComplexDET::base2): New data members.
25 Store value internally with Complex and int instead of 2-element
26 Complex vector.
27 (ComplexDET::initialize2, ComplexDET::initialize10): Provide decls.
28 * dbleComplexDET.cc (ComplexDET::value_will_overflow,
29 ComplexDET::value_will_underflow): Return bool value, not int.
30 (ComplexDET::initialize2, ComplexDET::initialize10): New functions.
31
1 2006-02-24 John W. Eaton <jwe@octave.org> 32 2006-02-24 John W. Eaton <jwe@octave.org>
2 33
3 * Array.cc (assignN): Clear index before reshaping. 34 * Array.cc (assignN): Clear index before reshaping.
4 35
5 * Array.h (Array<T>::operator =): Don't set idx to 0 if copying self. 36 * Array.h (Array<T>::operator =): Don't set idx to 0 if copying self.