Mercurial > hg > octave-lyh
comparison liboctave/boolNDArray.cc @ 4532:01ee68d18069
[project @ 2003-10-10 00:49:54 by jwe]
author | jwe |
---|---|
date | Fri, 10 Oct 2003 00:49:55 +0000 |
parents | 8373b9b41eee |
children | 79df15d4470c |
comparison
equal
deleted
inserted
replaced
4531:b570d7825fb9 | 4532:01ee68d18069 |
---|---|
30 #endif | 30 #endif |
31 | 31 |
32 #include "CNDArray.h" | 32 #include "CNDArray.h" |
33 #include "mx-base.h" | 33 #include "mx-base.h" |
34 #include "lo-ieee.h" | 34 #include "lo-ieee.h" |
35 | |
36 #include "ArrayN-inline.h" | |
35 | 37 |
36 // XXX FIXME XXX -- this is not quite the right thing. | 38 // XXX FIXME XXX -- this is not quite the right thing. |
37 | 39 |
38 boolMatrix | 40 boolMatrix |
39 boolNDArray::all (int dim) const | 41 boolNDArray::all (int dim) const |
94 } | 96 } |
95 | 97 |
96 return retval; | 98 return retval; |
97 } | 99 } |
98 | 100 |
101 void | |
102 boolNDArray::increment_index (Array<int>& ra_idx, | |
103 const dim_vector& dimensions, | |
104 int start_dimension) | |
105 { | |
106 ::increment_index (ra_idx, dimensions, start_dimension); | |
107 } | |
108 | |
99 /* | 109 /* |
100 ;;; Local Variables: *** | 110 ;;; Local Variables: *** |
101 ;;; mode: C++ *** | 111 ;;; mode: C++ *** |
102 ;;; End: *** | 112 ;;; End: *** |
103 */ | 113 */ |