Mercurial > hg > octave-jordi
comparison src/ov-bool-mat.cc @ 4457:d7d9ca19960a
[project @ 2003-07-11 03:05:38 by jwe]
author | jwe |
---|---|
date | Fri, 11 Jul 2003 03:05:39 +0000 |
parents | abbf63293766 |
children | 508238e65af7 |
comparison
equal
deleted
inserted
replaced
4456:b0aff7648c2d | 4457:d7d9ca19960a |
---|---|
125 gripe_invalid_conversion ("bool matrix", "complex scalar"); | 125 gripe_invalid_conversion ("bool matrix", "complex scalar"); |
126 | 126 |
127 return retval; | 127 return retval; |
128 } | 128 } |
129 | 129 |
130 octave_value | |
131 octave_bool_matrix::convert_to_str_internal (bool pad, bool force) const | |
132 { | |
133 octave_value tmp = octave_value (matrix_value ()); | |
134 return tmp.convert_to_str (pad, force); | |
135 } | |
136 | |
130 /* | 137 /* |
131 ;;; Local Variables: *** | 138 ;;; Local Variables: *** |
132 ;;; mode: C++ *** | 139 ;;; mode: C++ *** |
133 ;;; End: *** | 140 ;;; End: *** |
134 */ | 141 */ |