Mercurial > hg > octave-nkf
comparison 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 |
comparison
equal
deleted
inserted
replaced
4568:03c053808a7c | 4569:01e4957409a4 |
---|---|
94 { return double_value (frc_str_conv); } | 94 { return double_value (frc_str_conv); } |
95 | 95 |
96 Matrix matrix_value (bool = false) const | 96 Matrix matrix_value (bool = false) const |
97 { return Matrix (matrix.matrix_value ()); } | 97 { return Matrix (matrix.matrix_value ()); } |
98 | 98 |
99 NDArray array_value (bool = false) const | |
100 { return NDArray (matrix.matrix_value ()); } | |
101 | |
99 Complex complex_value (bool = false) const; | 102 Complex complex_value (bool = false) const; |
100 | 103 |
101 ComplexMatrix complex_matrix_value (bool = false) const | 104 ComplexMatrix complex_matrix_value (bool = false) const |
102 { return ComplexMatrix (matrix.matrix_value ( )); } | 105 { return ComplexMatrix (matrix.matrix_value ( )); } |
106 | |
107 ComplexNDArray complex_array_value (bool = false) const | |
108 { return ComplexNDArray (matrix.matrix_value ()); } | |
103 | 109 |
104 boolMatrix bool_matrix_value (void) const | 110 boolMatrix bool_matrix_value (void) const |
105 { return matrix.matrix_value (); } | 111 { return matrix.matrix_value (); } |
106 | 112 |
107 boolNDArray bool_array_value (bool = false) const | 113 boolNDArray bool_array_value (bool = false) const |