comparison src/ov.h @ 4532:01ee68d18069

[project @ 2003-10-10 00:49:54 by jwe]
author jwe
date Fri, 10 Oct 2003 00:49:55 +0000
parents 508238e65af7
children 69a9b22a72a2
comparison
equal deleted inserted replaced
4531:b570d7825fb9 4532:01ee68d18069
180 octave_value (unsigned long long int i); 180 octave_value (unsigned long long int i);
181 #endif 181 #endif
182 182
183 octave_value (octave_time t); 183 octave_value (octave_time t);
184 octave_value (double d); 184 octave_value (double d);
185 octave_value (const Cell& m, bool is_cs_list = false); 185 octave_value (const ArrayN<octave_value>& a, bool is_cs_list = false);
186 octave_value (const Cell& c, bool is_cs_list = false);
186 octave_value (const Matrix& m); 187 octave_value (const Matrix& m);
187 octave_value (const NDArray& nda); 188 octave_value (const NDArray& nda);
188 octave_value (const DiagMatrix& d); 189 octave_value (const DiagMatrix& d);
189 octave_value (const RowVector& v); 190 octave_value (const RowVector& v);
190 octave_value (const ColumnVector& v); 191 octave_value (const ColumnVector& v);
267 virtual type_conv_fcn numeric_conversion_function (void) const 268 virtual type_conv_fcn numeric_conversion_function (void) const
268 { return rep->numeric_conversion_function (); } 269 { return rep->numeric_conversion_function (); }
269 270
270 void maybe_mutate (void); 271 void maybe_mutate (void);
271 272
273 virtual octave_value squeeze (void) const
274 { return rep->squeeze (); }
275
272 virtual octave_value *try_narrowing_conversion (void) 276 virtual octave_value *try_narrowing_conversion (void)
273 { return rep->try_narrowing_conversion (); } 277 { return rep->try_narrowing_conversion (); }
274 278
275 octave_value single_subsref (const std::string& type, 279 octave_value single_subsref (const std::string& type,
276 const octave_value_list& idx); 280 const octave_value_list& idx);