Mercurial > hg > octave-nkf
diff liboctave/dRowVector.h @ 1359:a6994c934a50
[project @ 1995-09-05 21:30:26 by jwe]
author | jwe |
---|---|
date | Tue, 05 Sep 1995 21:30:26 +0000 |
parents | 611d403c7f3d |
children | 1281a23a34dd |
line wrap: on
line diff
--- a/liboctave/dRowVector.h +++ b/liboctave/dRowVector.h @@ -53,7 +53,7 @@ int operator == (const RowVector& a) const; int operator != (const RowVector& a) const; -// destructive insert/delete/reorder operations + // destructive insert/delete/reorder operations RowVector& insert (const RowVector& a, int c); @@ -67,20 +67,20 @@ friend RowVector real (const ComplexRowVector& a); friend RowVector imag (const ComplexRowVector& a); -// resize is the destructive equivalent for this one + // resize is the destructive equivalent for this one RowVector extract (int c1, int c2) const; -// row vector by row vector -> row vector operations + // row vector by row vector -> row vector operations RowVector& operator += (const RowVector& a); RowVector& operator -= (const RowVector& a); -// row vector by matrix -> row vector + // row vector by matrix -> row vector friend RowVector operator * (const RowVector& a, const Matrix& b); -// other operations + // other operations friend RowVector map (d_d_Mapper f, const RowVector& a); friend RowVector map (d_c_Mapper f, const ComplexRowVector& a); @@ -89,7 +89,7 @@ double min (void) const; double max (void) const; -// i/o + // i/o friend ostream& operator << (ostream& os, const RowVector& a); friend istream& operator >> (istream& is, RowVector& a);