Mercurial > hg > octave-lyh
diff src/ov.h @ 4587:7b957b442818
[project @ 2003-11-10 15:50:39 by jwe]
author | jwe |
---|---|
date | Mon, 10 Nov 2003 15:50:40 +0000 |
parents | fc30061d01da |
children | 77566be8b9e9 |
line wrap: on
line diff
--- a/src/ov.h +++ b/src/ov.h @@ -329,8 +329,8 @@ int numel (void) const; - virtual octave_value reshape (const dim_vector& dims) const - { return rep->reshape (dims); } + virtual octave_value reshape (const dim_vector& dv) const + { return rep->reshape (dv); } // Does this constant have a type? Both of these are provided since // it is sometimes more natural to write is_undefined() instead of @@ -363,6 +363,9 @@ virtual bool is_complex_matrix (void) const { return rep->is_complex_matrix (); } + virtual bool is_bool_matrix (void) const + { return rep->is_bool_matrix (); } + virtual bool is_char_matrix (void) const { return rep->is_char_matrix (); }