Mercurial > hg > octave-lyh
diff src/ov.h @ 4015:6476dd85a65f
[project @ 2002-08-02 07:59:19 by jwe]
author | jwe |
---|---|
date | Fri, 02 Aug 2002 07:59:20 +0000 |
parents | 95663a3a2682 |
children | a8621d87fbf5 |
line wrap: on
line diff
--- a/src/ov.h +++ b/src/ov.h @@ -350,11 +350,11 @@ // Are any or all of the elements in this constant nonzero? - virtual octave_value all (void) const - { return rep->all (); } + virtual octave_value all (int dim = 0) const + { return rep->all (dim); } - virtual octave_value any (void) const - { return rep->any (); } + virtual octave_value any (int dim = 0) const + { return rep->any (dim); } // Other type stuff.