Mercurial > hg > octave-max
diff src/ov-base.cc @ 5164:57077d0ddc8e
[project @ 2005-02-25 19:55:24 by jwe]
author | jwe |
---|---|
date | Fri, 25 Feb 2005 19:55:28 +0000 |
parents | e35b034d3523 |
children | bd32f770c09a |
line wrap: on
line diff
--- a/src/ov-base.cc +++ b/src/ov-base.cc @@ -413,6 +413,30 @@ return retval; } +SparseMatrix +octave_base_value::sparse_matrix_value (bool) const +{ + SparseMatrix retval; + gripe_wrong_type_arg ("octave_base_value::sparse_matrix_value()", type_name ()); + return retval; +} + +SparseComplexMatrix +octave_base_value::sparse_complex_matrix_value (bool) const +{ + SparseComplexMatrix retval; + gripe_wrong_type_arg ("octave_base_value::sparse_complex_matrix_value()", type_name ()); + return retval; +} + +SparseBoolMatrix +octave_base_value::sparse_bool_matrix_value (bool) const +{ + SparseBoolMatrix retval; + gripe_wrong_type_arg ("octave_base_value::sparse_bool_matrix_value()", type_name ()); + return retval; +} + octave_int8 octave_base_value::int8_scalar_value (void) const {