Mercurial > hg > octave-max
diff src/ov-base.cc @ 5785:6b9cec830d72
[project @ 2006-05-03 19:32:46 by dbateman]
author | dbateman |
---|---|
date | Wed, 03 May 2006 19:32:48 +0000 |
parents | faafc2d98b8d |
children | 1138ced03f14 |
line wrap: on
line diff
--- a/src/ov-base.cc +++ b/src/ov-base.cc @@ -250,6 +250,20 @@ return octave_value (); } +MatrixType +octave_base_value::matrix_type (void) const +{ + gripe_wrong_type_arg ("octave_base_value::matrix_type ()", type_name ()); + return MatrixType (); +} + +MatrixType +octave_base_value::matrix_type (const MatrixType&) const +{ + gripe_wrong_type_arg ("octave_base_value::matrix_type ()", type_name ()); + return MatrixType (); +} + octave_value octave_base_value::all (int) const {