Mercurial > hg > octave-nkf
diff src/ov-bool-mat.h @ 4569:01e4957409a4
[project @ 2003-10-30 05:48:17 by jwe]
author | jwe |
---|---|
date | Thu, 30 Oct 2003 05:48:17 +0000 |
parents | 69a9b22a72a2 |
children | cb1b4271643c |
line wrap: on
line diff
--- a/src/ov-bool-mat.h +++ b/src/ov-bool-mat.h @@ -96,11 +96,17 @@ Matrix matrix_value (bool = false) const { return Matrix (matrix.matrix_value ()); } + NDArray array_value (bool = false) const + { return NDArray (matrix.matrix_value ()); } + Complex complex_value (bool = false) const; ComplexMatrix complex_matrix_value (bool = false) const { return ComplexMatrix (matrix.matrix_value ( )); } + ComplexNDArray complex_array_value (bool = false) const + { return ComplexNDArray (matrix.matrix_value ()); } + boolMatrix bool_matrix_value (void) const { return matrix.matrix_value (); }