# HG changeset patch # User John W. Eaton # Date 1211393536 14400 # Node ID 199181592240840343d8350b6cdaa49d999a0616 # Parent 42c42c640108ac4b8cb9bbbea5d4c59ee6743c55 ChangeLog fixes diff --git a/liboctave/ChangeLog b/liboctave/ChangeLog --- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,17 @@ +2008-05-21 Jaroslav Hajek + + * 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 * 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 - - * 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 * Array.cc (Array Array::transpose () const): Modify for tiled diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-05-21 Jaroslav Hajek + + * DLD-FUNCTIONS/matrix_type.cc: Fix tests relying on the + older more optimistic hermitian check. + 2008-05-21 David Bateman * 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 - - * DLD-FUNCTIONS/matrix_type.cc: Fix tests relying on the - older more optimistic hermitian check. - 2008-05-21 John W. Eaton * pt-idx.h (tree_index_expression::tree_index_expression (int, int)):