Mercurial > hg > octave-lyh
comparison src/ov-bool-mat.h @ 3145:0d640dc625c7
[project @ 1998-02-05 08:44:59 by jwe]
author | jwe |
---|---|
date | Thu, 05 Feb 1998 08:45:07 +0000 |
parents | ebbc34ff7f66 |
children | 7a5a5da64756 |
comparison
equal
deleted
inserted
replaced
3144:fb9924282a3e | 3145:0d640dc625c7 |
---|---|
105 | 105 |
106 bool is_true (void) const; | 106 bool is_true (void) const; |
107 | 107 |
108 double double_value (bool = false) const; | 108 double double_value (bool = false) const; |
109 | 109 |
110 double scalar_value (bool = false) const { return double_value (); } | 110 double scalar_value (bool frc_str_conv = false) const |
111 { return double_value (frc_str_conv); } | |
111 | 112 |
112 Matrix matrix_value (bool = false) const { return matrix; } | 113 Matrix matrix_value (bool = false) const { return matrix; } |
113 | 114 |
114 Complex complex_value (bool = false) const; | 115 Complex complex_value (bool = false) const; |
115 | 116 |
116 ComplexMatrix complex_matrix_value (bool = false) const { return matrix; } | 117 ComplexMatrix complex_matrix_value (bool = false) const |
118 { return matrix; } | |
117 | 119 |
118 boolMatrix bool_matrix_value (bool = false) const { return matrix; } | 120 boolMatrix bool_matrix_value (bool = false) const |
121 { return matrix; } | |
119 | 122 |
120 octave_value convert_to_str (void) const | 123 octave_value convert_to_str (void) const |
121 { return octave_value (matrix); } | 124 { return octave_value (matrix); } |
122 | 125 |
123 octave_value transpose (void) const | 126 octave_value transpose (void) const |