comparison src/ov-base.h @ 4505:e944fbe3fff2

[project @ 2003-09-09 19:14:06 by jwe]
author jwe
date Tue, 09 Sep 2003 19:14:06 +0000
parents d7d9ca19960a
children 65f47f8a92a2
comparison
equal deleted inserted replaced
4504:f6a61399bc5c 4505:e944fbe3fff2
104 104
105 bool is_real_scalar (void) const { return false; } 105 bool is_real_scalar (void) const { return false; }
106 106
107 bool is_real_matrix (void) const { return false; } 107 bool is_real_matrix (void) const { return false; }
108 108
109 bool is_real_nd_array (void) const { return false; }
110
109 bool is_complex_scalar (void) const { return false; } 111 bool is_complex_scalar (void) const { return false; }
110 112
111 bool is_complex_matrix (void) const { return false; } 113 bool is_complex_matrix (void) const { return false; }
112 114
113 bool is_char_matrix (void) const { return false; } 115 bool is_char_matrix (void) const { return false; }
186 { return double_value (frc_str_conv); } 188 { return double_value (frc_str_conv); }
187 189
188 Cell cell_value (void) const; 190 Cell cell_value (void) const;
189 191
190 Matrix matrix_value (bool = false) const; 192 Matrix matrix_value (bool = false) const;
193
194 ArrayN<double> double_nd_array_value (bool frc_str_conv = false) const;
191 195
192 Complex complex_value (bool = false) const; 196 Complex complex_value (bool = false) const;
193 197
194 ComplexMatrix complex_matrix_value (bool = false) const; 198 ComplexMatrix complex_matrix_value (bool = false) const;
195 199