Mercurial > hg > octave-lyh
comparison liboctave/boolMatrix.h @ 3225:7aae2c3636a7
[project @ 1998-12-04 23:20:12 by jwe]
author | jwe |
---|---|
date | Fri, 04 Dec 1998 23:20:26 +0000 |
parents | bc61b0e8d60e |
children | 5eef8a2294bd |
comparison
equal
deleted
inserted
replaced
3224:1e7532b9173b | 3225:7aae2c3636a7 |
---|---|
49 } | 49 } |
50 | 50 |
51 bool operator == (const boolMatrix& a) const; | 51 bool operator == (const boolMatrix& a) const; |
52 bool operator != (const boolMatrix& a) const; | 52 bool operator != (const boolMatrix& a) const; |
53 | 53 |
54 boolMatrix transpose (void) const { return Array2<bool>::transpose (); } | |
55 | |
54 // destructive insert/delete/reorder operations | 56 // destructive insert/delete/reorder operations |
55 | 57 |
56 boolMatrix& insert (const boolMatrix& a, int r, int c); | 58 boolMatrix& insert (const boolMatrix& a, int r, int c); |
57 | |
58 boolMatrix transpose (void) const; | |
59 | 59 |
60 // unary operations | 60 // unary operations |
61 | 61 |
62 boolMatrix operator ! (void) const; | 62 boolMatrix operator ! (void) const; |
63 | 63 |