Mercurial > hg > octave-lyh
changeset 2673:05efa2513472
[project @ 1997-02-13 21:03:56 by jwe]
author | jwe |
---|---|
date | Thu, 13 Feb 1997 21:03:57 +0000 |
parents | e93b4c32457b |
children | 5a9e08ddc093 |
files | liboctave/Array2-idx.h liboctave/ChangeLog |
diffstat | 2 files changed, 27 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/liboctave/Array2-idx.h +++ b/liboctave/Array2-idx.h @@ -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);
--- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,29 @@ +Thu Feb 13 14:35:19 1997 John W. Eaton <jwe@bevo.che.wisc.edu> + + * Array2-idx.h (Array2<T>::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 <jwe@bevo.che.wisc.edu> * lo-ieee.cc: Declare quiet_nan() and infinity().