Mercurial > hg > octave-lyh
comparison liboctave/dRowVector.h @ 2386:4fc9fd1424a9
[project @ 1996-10-12 18:31:34 by jwe]
author | jwe |
---|---|
date | Sat, 12 Oct 1996 18:38:10 +0000 |
parents | 1b57120c997b |
children | a5a300c61159 |
comparison
equal
deleted
inserted
replaced
2385:170053c0f75e | 2386:4fc9fd1424a9 |
---|---|
47 { | 47 { |
48 MArray<double>::operator = (a); | 48 MArray<double>::operator = (a); |
49 return *this; | 49 return *this; |
50 } | 50 } |
51 | 51 |
52 int operator == (const RowVector& a) const; | 52 bool operator == (const RowVector& a) const; |
53 int operator != (const RowVector& a) const; | 53 bool operator != (const RowVector& a) const; |
54 | 54 |
55 // destructive insert/delete/reorder operations | 55 // destructive insert/delete/reorder operations |
56 | 56 |
57 RowVector& insert (const RowVector& a, int c); | 57 RowVector& insert (const RowVector& a, int c); |
58 | 58 |