# HG changeset patch # User jwe # Date 855867837 0 # Node ID 05efa25134725f7b51df1e26283b270a4b4b556a # Parent e93b4c32457b9c369933cc82f24c7abcce5caa57 [project @ 1997-02-13 21:03:56 by jwe] diff -r e93b4c32457b -r 05efa2513472 liboctave/Array2-idx.h --- a/liboctave/Array2-idx.h Thu Feb 13 20:34:48 1997 +0000 +++ b/liboctave/Array2-idx.h Thu Feb 13 21:03:57 1997 +0000 @@ -169,7 +169,7 @@ } else if (n == 0) { - if (m = 0) + if (m == 0) retval.resize (0, 0); else if (idx_j.is_colon_equiv (nc, 1)) retval.resize (0, nc); diff -r e93b4c32457b -r 05efa2513472 liboctave/ChangeLog --- a/liboctave/ChangeLog Thu Feb 13 20:34:48 1997 +0000 +++ b/liboctave/ChangeLog Thu Feb 13 21:03:57 1997 +0000 @@ -1,3 +1,29 @@ +Thu Feb 13 14:35:19 1997 John W. Eaton + + * Array2-idx.h (Array2::index (idx_vector&, idx_vector&)): + Fix typo in last change. + + * CColVector.cc (ComplexColumnVector::map (d_c_mapper)): + Convert from friend (moved from dColVector.cc). + * CMatrix.cc (ComplexMatrix::map (d_c_mapper)): + Likewise (moved from dMatrix.cc). + * CRowVector.cc (ComplexRowVector::map (d_c_mapper)): + Likewise (moved from dRowVector.cc). + + * dColVector.cc (ColumnVector::map (d_d_mapper)): Convert from friend. + * dMatrix.cc (Matrix::map (d_d_mapper)): Likewise. + * dRowVector.cc (RowVector::map (d_d_mapper)): Likewise. + * CColVector.cc (ComplexColumnVector::map (c_c_mapper)): Likewise. + * CMatrix.cc (ComplexMatrix::map (c_c_mapper)): Likewise. + * CRowVector.cc (ComplexRowVector::map (c_c_mapper)): Likewise. + + * dColVector.cc (ColumnVector::apply): Rename from map, return *this. + * dMatrix.cc (Matrix::apply): Likewise. + * dRowVector.cc (RowVector::apply): Likewise. + * CColVector.cc (ComplexColumnVector::apply): Likewise. + * CMatrix.cc (ComplexMatrix::apply): Likewise. + * CRowVector.cc (ComplexRowVector::apply): Likewise. + Tue Feb 11 19:44:28 1997 John W. Eaton * lo-ieee.cc: Declare quiet_nan() and infinity().