Mercurial > hg > octave-lyh
changeset 7799:199181592240
ChangeLog fixes
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 21 May 2008 14:12:16 -0400 |
parents | 42c42c640108 |
children | 5861b95e9879 |
files | liboctave/ChangeLog src/ChangeLog |
diffstat | 2 files changed, 19 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,17 @@ +2008-05-21 Jaroslav Hajek <highegg@gmail.com> + + * MatrixType.cc (matrix_real_probe, matrix_complex_probe): + New template functions. + (MatrixType::MatrixType (const Matrix&), + MatrixType::MatrixType (const FloatMatrix&)): + just call matrix_real_probe. + (MatrixType::MatrixType (const ComplexMatrix&), + MatrixType::MatrixType (const FloatComplexMatrix&)): + just call matrix_complex_probe. + + * MatrixType.cc (MatrixType::MatrixType (matrix_type, bool)): + add missing test for Unknown. + 2008-05-21 David Bateman <dbateman@free.fr> * fCMatrix.cc (float rcond): Replace with float rcon everywhere @@ -66,20 +80,6 @@ FloatHESS, FloatComplexHESS, FloatQR, FloatComplexQR, QRP, ComplexQRP, FloatQRP, FloatComplexQRP): Declare classes. -2008-05-21 Jaroslav Hajek <highegg@gmail.com> - - * MatrixType.cc (matrix_real_probe, matrix_complex_probe): - New template functions. - (MatrixType::MatrixType (const Matrix&), - MatrixType::MatrixType (const FloatMatrix&)): - just call matrix_real_probe. - (MatrixType::MatrixType (const ComplexMatrix&), - MatrixType::MatrixType (const FloatComplexMatrix&)): - just call matrix_complex_probe. - - * MatrixType.cc (MatrixType::MatrixType (matrix_type, bool)): - add missing test for Unknown. - 2008-05-20 David Bateman <dbateman@free.fr> * Array.cc (Array<T> Array<T>::transpose () const): Modify for tiled
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-05-21 Jaroslav Hajek <highegg@gmail.com> + + * DLD-FUNCTIONS/matrix_type.cc: Fix tests relying on the + older more optimistic hermitian check. + 2008-05-21 David Bateman <dbateman@free.fr> * DLD-FUNCTIONS/rcond.cc (Frcond): Add support for single precision. @@ -12,11 +17,6 @@ (Feps): Modify behavior for a single numerical argument to give difference to next largest value in the class of the type passed. -2008-05-21 Jaroslav Hajek <highegg@gmail.com> - - * DLD-FUNCTIONS/matrix_type.cc: Fix tests relying on the - older more optimistic hermitian check. - 2008-05-21 John W. Eaton <jwe@octave.org> * pt-idx.h (tree_index_expression::tree_index_expression (int, int)):